diff --git a/LICENSE b/LICENSE
index 9fbd22dcb..e21e5d5f3 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright 2010-2021 Branimir Karadzic
+Copyright 2010-2022 Branimir Karadzic
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
diff --git a/README.md b/README.md
index 9acdf367b..8c288d249 100644
--- a/README.md
+++ b/README.md
@@ -495,7 +495,7 @@ https://www.guildwars2.com/
- Copyright 2010-2021 Branimir Karadzic
+ Copyright 2010-2022 Branimir Karadzic
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
diff --git a/examples/00-helloworld/helloworld.cpp b/examples/00-helloworld/helloworld.cpp
index 7ecee4aca..a3109dd23 100644
--- a/examples/00-helloworld/helloworld.cpp
+++ b/examples/00-helloworld/helloworld.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/01-cubes/cubes.cpp b/examples/01-cubes/cubes.cpp
index 62724303a..5ab97d5bc 100644
--- a/examples/01-cubes/cubes.cpp
+++ b/examples/01-cubes/cubes.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/01-cubes/fs_cubes.sc b/examples/01-cubes/fs_cubes.sc
index d79294478..8ea959c83 100644
--- a/examples/01-cubes/fs_cubes.sc
+++ b/examples/01-cubes/fs_cubes.sc
@@ -1,8 +1,8 @@
$input v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/01-cubes/makefile b/examples/01-cubes/makefile
index a88986ef6..19c81e436 100644
--- a/examples/01-cubes/makefile
+++ b/examples/01-cubes/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/01-cubes/vs_cubes.sc b/examples/01-cubes/vs_cubes.sc
index 49a73940f..d80005d46 100644
--- a/examples/01-cubes/vs_cubes.sc
+++ b/examples/01-cubes/vs_cubes.sc
@@ -2,8 +2,8 @@ $input a_position, a_color0
$output v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/02-metaballs/fs_metaballs.sc b/examples/02-metaballs/fs_metaballs.sc
index e2988521e..9173da91f 100644
--- a/examples/02-metaballs/fs_metaballs.sc
+++ b/examples/02-metaballs/fs_metaballs.sc
@@ -1,8 +1,8 @@
$input v_normal, v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/02-metaballs/makefile b/examples/02-metaballs/makefile
index bfec49616..efdae05bf 100644
--- a/examples/02-metaballs/makefile
+++ b/examples/02-metaballs/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
include ../../scripts/shader-embeded.mk
diff --git a/examples/02-metaballs/metaballs.cpp b/examples/02-metaballs/metaballs.cpp
index 913704ed1..79d8e339d 100644
--- a/examples/02-metaballs/metaballs.cpp
+++ b/examples/02-metaballs/metaballs.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/02-metaballs/vs_metaballs.sc b/examples/02-metaballs/vs_metaballs.sc
index 29d3580d3..1470977f1 100644
--- a/examples/02-metaballs/vs_metaballs.sc
+++ b/examples/02-metaballs/vs_metaballs.sc
@@ -2,8 +2,8 @@ $input a_position, a_normal, a_color0
$output v_normal, v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/03-raymarch/fs_raymarching.sc b/examples/03-raymarch/fs_raymarching.sc
index 1559671b1..39a0972fe 100644
--- a/examples/03-raymarch/fs_raymarching.sc
+++ b/examples/03-raymarch/fs_raymarching.sc
@@ -1,8 +1,8 @@
$input v_color0, v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
// References:
diff --git a/examples/03-raymarch/makefile b/examples/03-raymarch/makefile
index a88986ef6..19c81e436 100644
--- a/examples/03-raymarch/makefile
+++ b/examples/03-raymarch/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/03-raymarch/raymarch.cpp b/examples/03-raymarch/raymarch.cpp
index fcb581e14..fb26059d6 100644
--- a/examples/03-raymarch/raymarch.cpp
+++ b/examples/03-raymarch/raymarch.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/03-raymarch/vs_raymarching.sc b/examples/03-raymarch/vs_raymarching.sc
index b79593a43..ab32d2a2f 100644
--- a/examples/03-raymarch/vs_raymarching.sc
+++ b/examples/03-raymarch/vs_raymarching.sc
@@ -2,8 +2,8 @@ $input a_position, a_color0, a_texcoord0
$output v_color0, v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/04-mesh/fs_mesh.sc b/examples/04-mesh/fs_mesh.sc
index 4fd35e112..93991561e 100644
--- a/examples/04-mesh/fs_mesh.sc
+++ b/examples/04-mesh/fs_mesh.sc
@@ -1,8 +1,8 @@
$input v_pos, v_view, v_normal, v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/04-mesh/makefile b/examples/04-mesh/makefile
index a88986ef6..19c81e436 100644
--- a/examples/04-mesh/makefile
+++ b/examples/04-mesh/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/04-mesh/mesh.cpp b/examples/04-mesh/mesh.cpp
index 4f032a3e7..7af05f185 100644
--- a/examples/04-mesh/mesh.cpp
+++ b/examples/04-mesh/mesh.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/04-mesh/vs_mesh.sc b/examples/04-mesh/vs_mesh.sc
index cc505ee97..8ca8dbf55 100644
--- a/examples/04-mesh/vs_mesh.sc
+++ b/examples/04-mesh/vs_mesh.sc
@@ -2,8 +2,8 @@ $input a_position, a_normal
$output v_pos, v_view, v_normal, v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/05-instancing/fs_instancing.sc b/examples/05-instancing/fs_instancing.sc
index d79294478..8ea959c83 100644
--- a/examples/05-instancing/fs_instancing.sc
+++ b/examples/05-instancing/fs_instancing.sc
@@ -1,8 +1,8 @@
$input v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/05-instancing/instancing.cpp b/examples/05-instancing/instancing.cpp
index 6d3bd541c..042cb29c0 100644
--- a/examples/05-instancing/instancing.cpp
+++ b/examples/05-instancing/instancing.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/05-instancing/makefile b/examples/05-instancing/makefile
index a88986ef6..19c81e436 100644
--- a/examples/05-instancing/makefile
+++ b/examples/05-instancing/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/05-instancing/vs_instancing.sc b/examples/05-instancing/vs_instancing.sc
index 767aa03bf..5d952e65c 100644
--- a/examples/05-instancing/vs_instancing.sc
+++ b/examples/05-instancing/vs_instancing.sc
@@ -2,8 +2,8 @@ $input a_position, a_color0, i_data0, i_data1, i_data2, i_data3, i_data4
$output v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/06-bump/bump.cpp b/examples/06-bump/bump.cpp
index 31afa7200..0b1e2a052 100644
--- a/examples/06-bump/bump.cpp
+++ b/examples/06-bump/bump.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/06-bump/fs_bump.sc b/examples/06-bump/fs_bump.sc
index a68b38a5a..7d56dbd0f 100644
--- a/examples/06-bump/fs_bump.sc
+++ b/examples/06-bump/fs_bump.sc
@@ -1,8 +1,8 @@
$input v_wpos, v_view, v_normal, v_tangent, v_bitangent, v_texcoord0// in...
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/06-bump/makefile b/examples/06-bump/makefile
index a88986ef6..19c81e436 100644
--- a/examples/06-bump/makefile
+++ b/examples/06-bump/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/06-bump/vs_bump.sc b/examples/06-bump/vs_bump.sc
index 8818c5d65..325c98710 100644
--- a/examples/06-bump/vs_bump.sc
+++ b/examples/06-bump/vs_bump.sc
@@ -2,8 +2,8 @@ $input a_position, a_normal, a_tangent, a_texcoord0
$output v_wpos, v_view, v_normal, v_tangent, v_bitangent, v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/06-bump/vs_bump_instanced.sc b/examples/06-bump/vs_bump_instanced.sc
index edec77554..7e45b313a 100644
--- a/examples/06-bump/vs_bump_instanced.sc
+++ b/examples/06-bump/vs_bump_instanced.sc
@@ -2,8 +2,8 @@ $input a_position, a_normal, a_tangent, a_texcoord0, i_data0, i_data1, i_data2,
$output v_wpos, v_view, v_normal, v_tangent, v_bitangent, v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/07-callback/callback.cpp b/examples/07-callback/callback.cpp
index 54c24ff2d..52cc283df 100644
--- a/examples/07-callback/callback.cpp
+++ b/examples/07-callback/callback.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/07-callback/fs_callback.sc b/examples/07-callback/fs_callback.sc
index 64aba2d8a..3e8f850e3 100644
--- a/examples/07-callback/fs_callback.sc
+++ b/examples/07-callback/fs_callback.sc
@@ -1,8 +1,8 @@
$input v_world, v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/07-callback/makefile b/examples/07-callback/makefile
index a88986ef6..19c81e436 100644
--- a/examples/07-callback/makefile
+++ b/examples/07-callback/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/07-callback/vs_callback.sc b/examples/07-callback/vs_callback.sc
index f897c686d..aba775fd4 100644
--- a/examples/07-callback/vs_callback.sc
+++ b/examples/07-callback/vs_callback.sc
@@ -2,8 +2,8 @@ $input a_position, a_color0
$output v_world, v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/08-update/cs_update.sc b/examples/08-update/cs_update.sc
index f31283741..54566d834 100644
--- a/examples/08-update/cs_update.sc
+++ b/examples/08-update/cs_update.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2014 Stanlo Slasinski. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_compute.sh"
diff --git a/examples/08-update/fs_update.sc b/examples/08-update/fs_update.sc
index 461b24116..41e24ed1f 100644
--- a/examples/08-update/fs_update.sc
+++ b/examples/08-update/fs_update.sc
@@ -1,8 +1,8 @@
$input v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/08-update/fs_update_3d.sc b/examples/08-update/fs_update_3d.sc
index 58771d4fa..8986846d5 100644
--- a/examples/08-update/fs_update_3d.sc
+++ b/examples/08-update/fs_update_3d.sc
@@ -1,8 +1,8 @@
$input v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/08-update/fs_update_cmp.sc b/examples/08-update/fs_update_cmp.sc
index 2778ebf65..076d8965e 100644
--- a/examples/08-update/fs_update_cmp.sc
+++ b/examples/08-update/fs_update_cmp.sc
@@ -1,8 +1,8 @@
$input v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/08-update/makefile b/examples/08-update/makefile
index a88986ef6..19c81e436 100644
--- a/examples/08-update/makefile
+++ b/examples/08-update/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/08-update/update.cpp b/examples/08-update/update.cpp
index 9bfebea80..bd4047589 100644
--- a/examples/08-update/update.cpp
+++ b/examples/08-update/update.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/08-update/vs_update.sc b/examples/08-update/vs_update.sc
index 946194572..545369275 100644
--- a/examples/08-update/vs_update.sc
+++ b/examples/08-update/vs_update.sc
@@ -2,8 +2,8 @@ $input a_position, a_texcoord0
$output v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/09-hdr/common.sh b/examples/09-hdr/common.sh
index 5b3663f39..056d9d608 100644
--- a/examples/09-hdr/common.sh
+++ b/examples/09-hdr/common.sh
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/09-hdr/fs_hdr_blur.sc b/examples/09-hdr/fs_hdr_blur.sc
index 85737cbe7..d6130d77d 100644
--- a/examples/09-hdr/fs_hdr_blur.sc
+++ b/examples/09-hdr/fs_hdr_blur.sc
@@ -1,8 +1,8 @@
$input v_texcoord0, v_texcoord1, v_texcoord2, v_texcoord3, v_texcoord4
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.sh"
diff --git a/examples/09-hdr/fs_hdr_bright.sc b/examples/09-hdr/fs_hdr_bright.sc
index ca97b26fb..b86ba6d61 100644
--- a/examples/09-hdr/fs_hdr_bright.sc
+++ b/examples/09-hdr/fs_hdr_bright.sc
@@ -1,8 +1,8 @@
$input v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.sh"
diff --git a/examples/09-hdr/fs_hdr_lum.sc b/examples/09-hdr/fs_hdr_lum.sc
index b859aa20d..392ab7483 100644
--- a/examples/09-hdr/fs_hdr_lum.sc
+++ b/examples/09-hdr/fs_hdr_lum.sc
@@ -1,8 +1,8 @@
$input v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.sh"
diff --git a/examples/09-hdr/fs_hdr_lumavg.sc b/examples/09-hdr/fs_hdr_lumavg.sc
index 80047c922..4c682a98c 100644
--- a/examples/09-hdr/fs_hdr_lumavg.sc
+++ b/examples/09-hdr/fs_hdr_lumavg.sc
@@ -1,8 +1,8 @@
$input v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.sh"
diff --git a/examples/09-hdr/fs_hdr_mesh.sc b/examples/09-hdr/fs_hdr_mesh.sc
index e42fec0c5..760a0928d 100644
--- a/examples/09-hdr/fs_hdr_mesh.sc
+++ b/examples/09-hdr/fs_hdr_mesh.sc
@@ -1,8 +1,8 @@
$input v_pos, v_view, v_normal
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.sh"
diff --git a/examples/09-hdr/fs_hdr_skybox.sc b/examples/09-hdr/fs_hdr_skybox.sc
index ba37a542d..c2880f57c 100644
--- a/examples/09-hdr/fs_hdr_skybox.sc
+++ b/examples/09-hdr/fs_hdr_skybox.sc
@@ -1,8 +1,8 @@
$input v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.sh"
diff --git a/examples/09-hdr/fs_hdr_tonemap.sc b/examples/09-hdr/fs_hdr_tonemap.sc
index 40fd4d17f..b2e257568 100644
--- a/examples/09-hdr/fs_hdr_tonemap.sc
+++ b/examples/09-hdr/fs_hdr_tonemap.sc
@@ -1,8 +1,8 @@
$input v_texcoord0, v_texcoord1, v_texcoord2, v_texcoord3, v_texcoord4
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.sh"
diff --git a/examples/09-hdr/hdr.cpp b/examples/09-hdr/hdr.cpp
index f73edeb1b..2854d419f 100644
--- a/examples/09-hdr/hdr.cpp
+++ b/examples/09-hdr/hdr.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/09-hdr/makefile b/examples/09-hdr/makefile
index a88986ef6..19c81e436 100644
--- a/examples/09-hdr/makefile
+++ b/examples/09-hdr/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/09-hdr/vs_hdr_blur.sc b/examples/09-hdr/vs_hdr_blur.sc
index 48002a186..e4dad0170 100644
--- a/examples/09-hdr/vs_hdr_blur.sc
+++ b/examples/09-hdr/vs_hdr_blur.sc
@@ -2,8 +2,8 @@ $input a_position, a_texcoord0
$output v_texcoord0, v_texcoord1, v_texcoord2, v_texcoord3, v_texcoord4
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/09-hdr/vs_hdr_bright.sc b/examples/09-hdr/vs_hdr_bright.sc
index 946194572..545369275 100644
--- a/examples/09-hdr/vs_hdr_bright.sc
+++ b/examples/09-hdr/vs_hdr_bright.sc
@@ -2,8 +2,8 @@ $input a_position, a_texcoord0
$output v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/09-hdr/vs_hdr_lum.sc b/examples/09-hdr/vs_hdr_lum.sc
index 946194572..545369275 100644
--- a/examples/09-hdr/vs_hdr_lum.sc
+++ b/examples/09-hdr/vs_hdr_lum.sc
@@ -2,8 +2,8 @@ $input a_position, a_texcoord0
$output v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/09-hdr/vs_hdr_lumavg.sc b/examples/09-hdr/vs_hdr_lumavg.sc
index 946194572..545369275 100644
--- a/examples/09-hdr/vs_hdr_lumavg.sc
+++ b/examples/09-hdr/vs_hdr_lumavg.sc
@@ -2,8 +2,8 @@ $input a_position, a_texcoord0
$output v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/09-hdr/vs_hdr_mesh.sc b/examples/09-hdr/vs_hdr_mesh.sc
index 0a60d0725..a10d55992 100644
--- a/examples/09-hdr/vs_hdr_mesh.sc
+++ b/examples/09-hdr/vs_hdr_mesh.sc
@@ -2,8 +2,8 @@ $input a_position, a_normal
$output v_pos, v_view, v_normal
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/09-hdr/vs_hdr_skybox.sc b/examples/09-hdr/vs_hdr_skybox.sc
index 946194572..545369275 100644
--- a/examples/09-hdr/vs_hdr_skybox.sc
+++ b/examples/09-hdr/vs_hdr_skybox.sc
@@ -2,8 +2,8 @@ $input a_position, a_texcoord0
$output v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/09-hdr/vs_hdr_tonemap.sc b/examples/09-hdr/vs_hdr_tonemap.sc
index 12dd52ba9..e7fea0c3e 100644
--- a/examples/09-hdr/vs_hdr_tonemap.sc
+++ b/examples/09-hdr/vs_hdr_tonemap.sc
@@ -2,8 +2,8 @@ $input a_position, a_texcoord0
$output v_texcoord0, v_texcoord1, v_texcoord2, v_texcoord3, v_texcoord4
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/10-font/font.cpp b/examples/10-font/font.cpp
index 368f3f429..0814ec4a4 100644
--- a/examples/10-font/font.cpp
+++ b/examples/10-font/font.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2013 Jeremie Roy. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/11-fontsdf/fontsdf.cpp b/examples/11-fontsdf/fontsdf.cpp
index 83ba8231c..2452f8ae6 100644
--- a/examples/11-fontsdf/fontsdf.cpp
+++ b/examples/11-fontsdf/fontsdf.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2013 Jeremie Roy. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/12-lod/fs_tree.sc b/examples/12-lod/fs_tree.sc
index 72649c5f6..b9392d2df 100644
--- a/examples/12-lod/fs_tree.sc
+++ b/examples/12-lod/fs_tree.sc
@@ -2,7 +2,7 @@ $input v_pos, v_view, v_normal, v_texcoord0
/*
* Copyright 2013 Milos Tosic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/12-lod/lod.cpp b/examples/12-lod/lod.cpp
index 37bd4dd6c..e1a53197b 100644
--- a/examples/12-lod/lod.cpp
+++ b/examples/12-lod/lod.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2013 Milos Tosic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/12-lod/makefile b/examples/12-lod/makefile
index a88986ef6..19c81e436 100644
--- a/examples/12-lod/makefile
+++ b/examples/12-lod/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/12-lod/vs_tree.sc b/examples/12-lod/vs_tree.sc
index 3ec3f6680..9cd06412c 100644
--- a/examples/12-lod/vs_tree.sc
+++ b/examples/12-lod/vs_tree.sc
@@ -3,7 +3,7 @@ $output v_pos, v_view, v_normal, v_texcoord0
/*
* Copyright 2013 Milos Tosic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/13-stencil/fs_stencil_color_black.sc b/examples/13-stencil/fs_stencil_color_black.sc
index 975df704e..d754dccfd 100644
--- a/examples/13-stencil/fs_stencil_color_black.sc
+++ b/examples/13-stencil/fs_stencil_color_black.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/13-stencil/fs_stencil_color_lighting.sc b/examples/13-stencil/fs_stencil_color_lighting.sc
index ae11cd4ca..d28d92c16 100644
--- a/examples/13-stencil/fs_stencil_color_lighting.sc
+++ b/examples/13-stencil/fs_stencil_color_lighting.sc
@@ -2,7 +2,7 @@ $input v_normal, v_view
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/13-stencil/fs_stencil_color_texture.sc b/examples/13-stencil/fs_stencil_color_texture.sc
index 1971de51a..3fa64965b 100644
--- a/examples/13-stencil/fs_stencil_color_texture.sc
+++ b/examples/13-stencil/fs_stencil_color_texture.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/13-stencil/fs_stencil_texture.sc b/examples/13-stencil/fs_stencil_texture.sc
index 098fa5b9d..054a7d93d 100644
--- a/examples/13-stencil/fs_stencil_texture.sc
+++ b/examples/13-stencil/fs_stencil_texture.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/13-stencil/fs_stencil_texture_lighting.sc b/examples/13-stencil/fs_stencil_texture_lighting.sc
index e0dbcbd14..314620442 100644
--- a/examples/13-stencil/fs_stencil_texture_lighting.sc
+++ b/examples/13-stencil/fs_stencil_texture_lighting.sc
@@ -2,7 +2,7 @@ $input v_normal, v_view, v_texcoord0
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/13-stencil/makefile b/examples/13-stencil/makefile
index a88986ef6..19c81e436 100644
--- a/examples/13-stencil/makefile
+++ b/examples/13-stencil/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/13-stencil/stencil.cpp b/examples/13-stencil/stencil.cpp
index beb6d0cfd..f8208942b 100644
--- a/examples/13-stencil/stencil.cpp
+++ b/examples/13-stencil/stencil.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/13-stencil/vs_stencil_color.sc b/examples/13-stencil/vs_stencil_color.sc
index f67ee538a..16a73acbd 100644
--- a/examples/13-stencil/vs_stencil_color.sc
+++ b/examples/13-stencil/vs_stencil_color.sc
@@ -2,7 +2,7 @@ $input a_position
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/13-stencil/vs_stencil_color_lighting.sc b/examples/13-stencil/vs_stencil_color_lighting.sc
index 90fdb8072..b06531782 100644
--- a/examples/13-stencil/vs_stencil_color_lighting.sc
+++ b/examples/13-stencil/vs_stencil_color_lighting.sc
@@ -3,7 +3,7 @@ $output v_normal, v_view
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/13-stencil/vs_stencil_color_texture.sc b/examples/13-stencil/vs_stencil_color_texture.sc
index a1a666244..3b9d1a061 100644
--- a/examples/13-stencil/vs_stencil_color_texture.sc
+++ b/examples/13-stencil/vs_stencil_color_texture.sc
@@ -3,7 +3,7 @@ $output v_texcoord0
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/13-stencil/vs_stencil_texture.sc b/examples/13-stencil/vs_stencil_texture.sc
index a1a666244..3b9d1a061 100644
--- a/examples/13-stencil/vs_stencil_texture.sc
+++ b/examples/13-stencil/vs_stencil_texture.sc
@@ -3,7 +3,7 @@ $output v_texcoord0
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/13-stencil/vs_stencil_texture_lighting.sc b/examples/13-stencil/vs_stencil_texture_lighting.sc
index 67c4aa19d..34aa4e1f1 100644
--- a/examples/13-stencil/vs_stencil_texture_lighting.sc
+++ b/examples/13-stencil/vs_stencil_texture_lighting.sc
@@ -3,7 +3,7 @@ $output v_normal, v_view, v_texcoord0
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/14-shadowvolumes/fs_shadowvolume_color_lighting.sc b/examples/14-shadowvolumes/fs_shadowvolume_color_lighting.sc
index f99fd3d1b..9022fc6a3 100644
--- a/examples/14-shadowvolumes/fs_shadowvolume_color_lighting.sc
+++ b/examples/14-shadowvolumes/fs_shadowvolume_color_lighting.sc
@@ -2,7 +2,7 @@ $input v_normal, v_view
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/14-shadowvolumes/fs_shadowvolume_color_texture.sc b/examples/14-shadowvolumes/fs_shadowvolume_color_texture.sc
index 59ac7d32f..a2fc3a34b 100644
--- a/examples/14-shadowvolumes/fs_shadowvolume_color_texture.sc
+++ b/examples/14-shadowvolumes/fs_shadowvolume_color_texture.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/14-shadowvolumes/fs_shadowvolume_svbackblank.sc b/examples/14-shadowvolumes/fs_shadowvolume_svbackblank.sc
index 900a815ed..0953b9117 100644
--- a/examples/14-shadowvolumes/fs_shadowvolume_svbackblank.sc
+++ b/examples/14-shadowvolumes/fs_shadowvolume_svbackblank.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/14-shadowvolumes/fs_shadowvolume_svbackcolor.sc b/examples/14-shadowvolumes/fs_shadowvolume_svbackcolor.sc
index f63a607c4..25042bd69 100644
--- a/examples/14-shadowvolumes/fs_shadowvolume_svbackcolor.sc
+++ b/examples/14-shadowvolumes/fs_shadowvolume_svbackcolor.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/14-shadowvolumes/fs_shadowvolume_svbacktex1.sc b/examples/14-shadowvolumes/fs_shadowvolume_svbacktex1.sc
index a9aa7df62..949cc128e 100644
--- a/examples/14-shadowvolumes/fs_shadowvolume_svbacktex1.sc
+++ b/examples/14-shadowvolumes/fs_shadowvolume_svbacktex1.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/14-shadowvolumes/fs_shadowvolume_svbacktex2.sc b/examples/14-shadowvolumes/fs_shadowvolume_svbacktex2.sc
index 26d51bf51..4721ee0db 100644
--- a/examples/14-shadowvolumes/fs_shadowvolume_svbacktex2.sc
+++ b/examples/14-shadowvolumes/fs_shadowvolume_svbacktex2.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/14-shadowvolumes/fs_shadowvolume_svfrontblank.sc b/examples/14-shadowvolumes/fs_shadowvolume_svfrontblank.sc
index 9e751e059..24992bce7 100644
--- a/examples/14-shadowvolumes/fs_shadowvolume_svfrontblank.sc
+++ b/examples/14-shadowvolumes/fs_shadowvolume_svfrontblank.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/14-shadowvolumes/fs_shadowvolume_svfrontcolor.sc b/examples/14-shadowvolumes/fs_shadowvolume_svfrontcolor.sc
index 2a953a219..b26ca27fe 100644
--- a/examples/14-shadowvolumes/fs_shadowvolume_svfrontcolor.sc
+++ b/examples/14-shadowvolumes/fs_shadowvolume_svfrontcolor.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/14-shadowvolumes/fs_shadowvolume_svfronttex1.sc b/examples/14-shadowvolumes/fs_shadowvolume_svfronttex1.sc
index 8440c4016..bd681b726 100644
--- a/examples/14-shadowvolumes/fs_shadowvolume_svfronttex1.sc
+++ b/examples/14-shadowvolumes/fs_shadowvolume_svfronttex1.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/14-shadowvolumes/fs_shadowvolume_svfronttex2.sc b/examples/14-shadowvolumes/fs_shadowvolume_svfronttex2.sc
index fff06ef15..d6b436c22 100644
--- a/examples/14-shadowvolumes/fs_shadowvolume_svfronttex2.sc
+++ b/examples/14-shadowvolumes/fs_shadowvolume_svfronttex2.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/14-shadowvolumes/fs_shadowvolume_svside.sc b/examples/14-shadowvolumes/fs_shadowvolume_svside.sc
index fa82df3af..699b30c69 100644
--- a/examples/14-shadowvolumes/fs_shadowvolume_svside.sc
+++ b/examples/14-shadowvolumes/fs_shadowvolume_svside.sc
@@ -2,7 +2,7 @@ $input v_k
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/14-shadowvolumes/fs_shadowvolume_svsideblank.sc b/examples/14-shadowvolumes/fs_shadowvolume_svsideblank.sc
index 6026aad53..4d3eb7581 100644
--- a/examples/14-shadowvolumes/fs_shadowvolume_svsideblank.sc
+++ b/examples/14-shadowvolumes/fs_shadowvolume_svsideblank.sc
@@ -2,7 +2,7 @@ $input v_k
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/14-shadowvolumes/fs_shadowvolume_svsidecolor.sc b/examples/14-shadowvolumes/fs_shadowvolume_svsidecolor.sc
index 1832106e4..705be6336 100644
--- a/examples/14-shadowvolumes/fs_shadowvolume_svsidecolor.sc
+++ b/examples/14-shadowvolumes/fs_shadowvolume_svsidecolor.sc
@@ -2,7 +2,7 @@ $input v_k
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/14-shadowvolumes/fs_shadowvolume_svsidetex.sc b/examples/14-shadowvolumes/fs_shadowvolume_svsidetex.sc
index ddc639dc3..6b881deca 100644
--- a/examples/14-shadowvolumes/fs_shadowvolume_svsidetex.sc
+++ b/examples/14-shadowvolumes/fs_shadowvolume_svsidetex.sc
@@ -2,7 +2,7 @@ $input v_k
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/14-shadowvolumes/fs_shadowvolume_texture.sc b/examples/14-shadowvolumes/fs_shadowvolume_texture.sc
index 098fa5b9d..054a7d93d 100644
--- a/examples/14-shadowvolumes/fs_shadowvolume_texture.sc
+++ b/examples/14-shadowvolumes/fs_shadowvolume_texture.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/14-shadowvolumes/fs_shadowvolume_texture_lighting.sc b/examples/14-shadowvolumes/fs_shadowvolume_texture_lighting.sc
index 839386e71..1800d2ff1 100644
--- a/examples/14-shadowvolumes/fs_shadowvolume_texture_lighting.sc
+++ b/examples/14-shadowvolumes/fs_shadowvolume_texture_lighting.sc
@@ -2,7 +2,7 @@ $input v_normal, v_view, v_texcoord0
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/14-shadowvolumes/makefile b/examples/14-shadowvolumes/makefile
index a88986ef6..19c81e436 100644
--- a/examples/14-shadowvolumes/makefile
+++ b/examples/14-shadowvolumes/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/14-shadowvolumes/shadowvolumes.cpp b/examples/14-shadowvolumes/shadowvolumes.cpp
index 115b2b521..573f629ba 100644
--- a/examples/14-shadowvolumes/shadowvolumes.cpp
+++ b/examples/14-shadowvolumes/shadowvolumes.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/14-shadowvolumes/vs_shadowvolume_color_lighting.sc b/examples/14-shadowvolumes/vs_shadowvolume_color_lighting.sc
index a3d9e13fb..f316b4515 100644
--- a/examples/14-shadowvolumes/vs_shadowvolume_color_lighting.sc
+++ b/examples/14-shadowvolumes/vs_shadowvolume_color_lighting.sc
@@ -3,7 +3,7 @@ $output v_normal, v_view
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/14-shadowvolumes/vs_shadowvolume_color_texture.sc b/examples/14-shadowvolumes/vs_shadowvolume_color_texture.sc
index 8eff5b40d..8c7389354 100644
--- a/examples/14-shadowvolumes/vs_shadowvolume_color_texture.sc
+++ b/examples/14-shadowvolumes/vs_shadowvolume_color_texture.sc
@@ -3,7 +3,7 @@ $output v_texcoord0
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/14-shadowvolumes/vs_shadowvolume_svback.sc b/examples/14-shadowvolumes/vs_shadowvolume_svback.sc
index 4c14bf02c..7e8ee9a7f 100644
--- a/examples/14-shadowvolumes/vs_shadowvolume_svback.sc
+++ b/examples/14-shadowvolumes/vs_shadowvolume_svback.sc
@@ -2,7 +2,7 @@ $input a_position
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/14-shadowvolumes/vs_shadowvolume_svfront.sc b/examples/14-shadowvolumes/vs_shadowvolume_svfront.sc
index b7e0d2a17..973453d20 100644
--- a/examples/14-shadowvolumes/vs_shadowvolume_svfront.sc
+++ b/examples/14-shadowvolumes/vs_shadowvolume_svfront.sc
@@ -2,7 +2,7 @@ $input a_position
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/14-shadowvolumes/vs_shadowvolume_svside.sc b/examples/14-shadowvolumes/vs_shadowvolume_svside.sc
index 8c20a9e71..d892ec922 100644
--- a/examples/14-shadowvolumes/vs_shadowvolume_svside.sc
+++ b/examples/14-shadowvolumes/vs_shadowvolume_svside.sc
@@ -3,7 +3,7 @@ $output v_k
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/14-shadowvolumes/vs_shadowvolume_texture.sc b/examples/14-shadowvolumes/vs_shadowvolume_texture.sc
index 770341440..6f2477d4e 100644
--- a/examples/14-shadowvolumes/vs_shadowvolume_texture.sc
+++ b/examples/14-shadowvolumes/vs_shadowvolume_texture.sc
@@ -3,7 +3,7 @@ $output v_texcoord0
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/14-shadowvolumes/vs_shadowvolume_texture_lighting.sc b/examples/14-shadowvolumes/vs_shadowvolume_texture_lighting.sc
index f7538d40e..acb1ede17 100644
--- a/examples/14-shadowvolumes/vs_shadowvolume_texture_lighting.sc
+++ b/examples/14-shadowvolumes/vs_shadowvolume_texture_lighting.sc
@@ -3,7 +3,7 @@ $output v_normal, v_view, v_texcoord0
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/15-shadowmaps-simple/fs_sms_mesh.sc b/examples/15-shadowmaps-simple/fs_sms_mesh.sc
index 9b95176bb..0dde60254 100644
--- a/examples/15-shadowmaps-simple/fs_sms_mesh.sc
+++ b/examples/15-shadowmaps-simple/fs_sms_mesh.sc
@@ -2,7 +2,7 @@ $input v_view, v_normal, v_shadowcoord
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/15-shadowmaps-simple/fs_sms_mesh_pd.sc b/examples/15-shadowmaps-simple/fs_sms_mesh_pd.sc
index 67729e525..bf570e2c3 100644
--- a/examples/15-shadowmaps-simple/fs_sms_mesh_pd.sc
+++ b/examples/15-shadowmaps-simple/fs_sms_mesh_pd.sc
@@ -2,7 +2,7 @@ $input v_view, v_normal, v_shadowcoord
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/15-shadowmaps-simple/fs_sms_shadow.sc b/examples/15-shadowmaps-simple/fs_sms_shadow.sc
index 3cdf1973f..ad2ccf5ec 100644
--- a/examples/15-shadowmaps-simple/fs_sms_shadow.sc
+++ b/examples/15-shadowmaps-simple/fs_sms_shadow.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/15-shadowmaps-simple/fs_sms_shadow.sh b/examples/15-shadowmaps-simple/fs_sms_shadow.sh
index 979ff7c1e..24e5c3701 100644
--- a/examples/15-shadowmaps-simple/fs_sms_shadow.sh
+++ b/examples/15-shadowmaps-simple/fs_sms_shadow.sh
@@ -1,6 +1,6 @@
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/15-shadowmaps-simple/fs_sms_shadow_pd.sc b/examples/15-shadowmaps-simple/fs_sms_shadow_pd.sc
index 2a046f731..3e8c635c1 100644
--- a/examples/15-shadowmaps-simple/fs_sms_shadow_pd.sc
+++ b/examples/15-shadowmaps-simple/fs_sms_shadow_pd.sc
@@ -2,7 +2,7 @@ $input v_position
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/15-shadowmaps-simple/makefile b/examples/15-shadowmaps-simple/makefile
index a88986ef6..19c81e436 100644
--- a/examples/15-shadowmaps-simple/makefile
+++ b/examples/15-shadowmaps-simple/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/15-shadowmaps-simple/shadowmaps_simple.cpp b/examples/15-shadowmaps-simple/shadowmaps_simple.cpp
index 15e08dd14..746a5caf5 100644
--- a/examples/15-shadowmaps-simple/shadowmaps_simple.cpp
+++ b/examples/15-shadowmaps-simple/shadowmaps_simple.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/15-shadowmaps-simple/vs_sms_mesh.sc b/examples/15-shadowmaps-simple/vs_sms_mesh.sc
index 0f28baa30..5b78f8440 100644
--- a/examples/15-shadowmaps-simple/vs_sms_mesh.sc
+++ b/examples/15-shadowmaps-simple/vs_sms_mesh.sc
@@ -3,7 +3,7 @@ $output v_view, v_normal, v_shadowcoord
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/15-shadowmaps-simple/vs_sms_shadow.sc b/examples/15-shadowmaps-simple/vs_sms_shadow.sc
index a606797f0..a303feb13 100644
--- a/examples/15-shadowmaps-simple/vs_sms_shadow.sc
+++ b/examples/15-shadowmaps-simple/vs_sms_shadow.sc
@@ -2,7 +2,7 @@ $input a_position
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/15-shadowmaps-simple/vs_sms_shadow_pd.sc b/examples/15-shadowmaps-simple/vs_sms_shadow_pd.sc
index 8d55a99f2..fa041ba1f 100644
--- a/examples/15-shadowmaps-simple/vs_sms_shadow_pd.sc
+++ b/examples/15-shadowmaps-simple/vs_sms_shadow_pd.sc
@@ -3,7 +3,7 @@ $output v_position
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/common.sh b/examples/16-shadowmaps/common.sh
index b10ae6b23..50244a711 100644
--- a/examples/16-shadowmaps/common.sh
+++ b/examples/16-shadowmaps/common.sh
@@ -1,6 +1,6 @@
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_black.sc b/examples/16-shadowmaps/fs_shadowmaps_color_black.sc
index 975df704e..d754dccfd 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_black.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_black.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting.sh b/examples/16-shadowmaps/fs_shadowmaps_color_lighting.sh
index c35180484..b0da55ba8 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting.sh
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting.sh
@@ -1,6 +1,6 @@
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.sh"
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_esm.sc b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_esm.sc
index ef77eb9e9..df310cabc 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_esm.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_esm.sc
@@ -2,7 +2,7 @@ $input v_normal, v_view, v_shadowcoord
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define SM_ESM 1
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_esm_csm.sc b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_esm_csm.sc
index 8e76e9547..c80fa2043 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_esm_csm.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_esm_csm.sc
@@ -2,7 +2,7 @@ $input v_position, v_normal, v_view, v_texcoord1, v_texcoord2, v_texcoord3, v_te
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define SM_ESM 1
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_esm_linear.sc b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_esm_linear.sc
index fb2aa8a1b..c01989d7a 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_esm_linear.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_esm_linear.sc
@@ -2,7 +2,7 @@ $input v_normal, v_view, v_shadowcoord
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define SM_ESM 1
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_esm_linear_csm.sc b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_esm_linear_csm.sc
index 151df7e92..5e7fa74c3 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_esm_linear_csm.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_esm_linear_csm.sc
@@ -2,7 +2,7 @@ $input v_position, v_normal, v_view, v_texcoord1, v_texcoord2, v_texcoord3, v_te
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define SM_ESM 1
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_esm_linear_omni.sc b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_esm_linear_omni.sc
index 5783899b2..af9b96029 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_esm_linear_omni.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_esm_linear_omni.sc
@@ -2,7 +2,7 @@ $input v_position, v_normal, v_view, v_texcoord1, v_texcoord2, v_texcoord3, v_te
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define SM_ESM 1
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_esm_omni.sc b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_esm_omni.sc
index 290073ca9..5481bb62d 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_esm_omni.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_esm_omni.sc
@@ -2,7 +2,7 @@ $input v_position, v_normal, v_view, v_texcoord1, v_texcoord2, v_texcoord3, v_te
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define SM_ESM 1
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_hard.sc b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_hard.sc
index 24416afeb..0c9151fff 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_hard.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_hard.sc
@@ -2,7 +2,7 @@ $input v_normal, v_view, v_shadowcoord
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define SM_HARD 1
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_hard_csm.sc b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_hard_csm.sc
index e0f9a42f0..1746772a7 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_hard_csm.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_hard_csm.sc
@@ -2,7 +2,7 @@ $input v_position, v_normal, v_view, v_texcoord1, v_texcoord2, v_texcoord3, v_te
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define SM_HARD 1
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_hard_linear.sc b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_hard_linear.sc
index a10a029e9..f575157e0 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_hard_linear.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_hard_linear.sc
@@ -2,7 +2,7 @@ $input v_normal, v_view, v_shadowcoord
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define SM_HARD 1
#define SM_LINEAR 1
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_hard_linear_csm.sc b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_hard_linear_csm.sc
index 8953a8467..97e0b4803 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_hard_linear_csm.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_hard_linear_csm.sc
@@ -2,7 +2,7 @@ $input v_position, v_normal, v_view, v_texcoord1, v_texcoord2, v_texcoord3, v_te
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define SM_HARD 1
#define SM_LINEAR 1
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_hard_linear_omni.sc b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_hard_linear_omni.sc
index bc0bf100b..5998a67e7 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_hard_linear_omni.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_hard_linear_omni.sc
@@ -2,7 +2,7 @@ $input v_position, v_normal, v_view, v_texcoord1, v_texcoord2, v_texcoord3, v_te
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define SM_HARD 1
#define SM_LINEAR 1
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_hard_omni.sc b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_hard_omni.sc
index ecd616760..9aa699107 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_hard_omni.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_hard_omni.sc
@@ -2,7 +2,7 @@ $input v_position, v_normal, v_view, v_texcoord1, v_texcoord2, v_texcoord3, v_te
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define SM_HARD 1
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_pcf.sc b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_pcf.sc
index 0321b878e..1bea3bfc8 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_pcf.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_pcf.sc
@@ -2,7 +2,7 @@ $input v_normal, v_view, v_shadowcoord
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define SM_PCF 1
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_pcf_csm.sc b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_pcf_csm.sc
index 4a5529171..4b58b0ced 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_pcf_csm.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_pcf_csm.sc
@@ -2,7 +2,7 @@ $input v_position, v_normal, v_view, v_texcoord1, v_texcoord2, v_texcoord3, v_te
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define SM_PCF 1
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_pcf_linear.sc b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_pcf_linear.sc
index c56dc7c19..f78d7e0a5 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_pcf_linear.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_pcf_linear.sc
@@ -2,7 +2,7 @@ $input v_normal, v_view, v_shadowcoord
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define SM_PCF 1
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_pcf_linear_csm.sc b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_pcf_linear_csm.sc
index 55b52aca4..85448d139 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_pcf_linear_csm.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_pcf_linear_csm.sc
@@ -2,7 +2,7 @@ $input v_position, v_normal, v_view, v_texcoord1, v_texcoord2, v_texcoord3, v_te
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define SM_PCF 1
#define SM_LINEAR 1
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_pcf_linear_omni.sc b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_pcf_linear_omni.sc
index f3ac095fe..e9b38f2dd 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_pcf_linear_omni.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_pcf_linear_omni.sc
@@ -2,7 +2,7 @@ $input v_position, v_normal, v_view, v_texcoord1, v_texcoord2, v_texcoord3, v_te
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define SM_PCF 1
#define SM_LINEAR 1
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_pcf_omni.sc b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_pcf_omni.sc
index 533b36c7e..21db24a79 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_pcf_omni.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_pcf_omni.sc
@@ -2,7 +2,7 @@ $input v_position, v_normal, v_view, v_texcoord1, v_texcoord2, v_texcoord3, v_te
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define SM_PCF 1
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_vsm.sc b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_vsm.sc
index 5a6237bf8..611cd3cf2 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_vsm.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_vsm.sc
@@ -2,7 +2,7 @@ $input v_normal, v_view, v_shadowcoord
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define SM_VSM 1
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_vsm_csm.sc b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_vsm_csm.sc
index 7b0ff7744..dce977bad 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_vsm_csm.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_vsm_csm.sc
@@ -2,7 +2,7 @@ $input v_position, v_normal, v_view, v_texcoord1, v_texcoord2, v_texcoord3, v_te
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define SM_VSM 1
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_vsm_linear.sc b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_vsm_linear.sc
index a20ba6011..0b430b615 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_vsm_linear.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_vsm_linear.sc
@@ -2,7 +2,7 @@ $input v_normal, v_view, v_shadowcoord
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define SM_VSM 1
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_vsm_linear_csm.sc b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_vsm_linear_csm.sc
index 3bfd00e7e..3e98273aa 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_vsm_linear_csm.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_vsm_linear_csm.sc
@@ -2,7 +2,7 @@ $input v_position, v_normal, v_view, v_texcoord1, v_texcoord2, v_texcoord3, v_te
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define SM_VSM 1
#define SM_LINEAR 1
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_vsm_linear_omni.sc b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_vsm_linear_omni.sc
index d416655b1..15eff7b81 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_vsm_linear_omni.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_vsm_linear_omni.sc
@@ -2,7 +2,7 @@ $input v_position, v_normal, v_view, v_texcoord1, v_texcoord2, v_texcoord3, v_te
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define SM_VSM 1
#define SM_LINEAR 1
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_vsm_omni.sc b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_vsm_omni.sc
index db60831e7..fcb7f4ad7 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_lighting_vsm_omni.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_lighting_vsm_omni.sc
@@ -2,7 +2,7 @@ $input v_position, v_normal, v_view, v_texcoord1, v_texcoord2, v_texcoord3, v_te
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define SM_VSM 1
diff --git a/examples/16-shadowmaps/fs_shadowmaps_color_texture.sc b/examples/16-shadowmaps/fs_shadowmaps_color_texture.sc
index c53591a8f..b05d59d25 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_color_texture.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_color_texture.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/fs_shadowmaps_hblur.sc b/examples/16-shadowmaps/fs_shadowmaps_hblur.sc
index 7b40dd2fa..82495a7a0 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_hblur.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_hblur.sc
@@ -2,7 +2,7 @@ $input v_texcoord0, v_texcoord1, v_texcoord2, v_texcoord3, v_texcoord4
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.sh"
diff --git a/examples/16-shadowmaps/fs_shadowmaps_hblur_vsm.sc b/examples/16-shadowmaps/fs_shadowmaps_hblur_vsm.sc
index e06c17dd0..aa10a96c0 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_hblur_vsm.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_hblur_vsm.sc
@@ -2,7 +2,7 @@ $input v_texcoord0, v_texcoord1, v_texcoord2, v_texcoord3, v_texcoord4
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.sh"
diff --git a/examples/16-shadowmaps/fs_shadowmaps_packdepth.sc b/examples/16-shadowmaps/fs_shadowmaps_packdepth.sc
index 04d5896c8..daab62b23 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_packdepth.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_packdepth.sc
@@ -2,7 +2,7 @@ $input v_position
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/fs_shadowmaps_packdepth_linear.sc b/examples/16-shadowmaps/fs_shadowmaps_packdepth_linear.sc
index f049736d0..19b63b1b9 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_packdepth_linear.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_packdepth_linear.sc
@@ -2,7 +2,7 @@ $input v_depth
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/fs_shadowmaps_packdepth_vsm.sc b/examples/16-shadowmaps/fs_shadowmaps_packdepth_vsm.sc
index 2b0906c65..975bbfbed 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_packdepth_vsm.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_packdepth_vsm.sc
@@ -2,7 +2,7 @@ $input v_position
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/fs_shadowmaps_packdepth_vsm_linear.sc b/examples/16-shadowmaps/fs_shadowmaps_packdepth_vsm_linear.sc
index 9a25941e3..375dbefc8 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_packdepth_vsm_linear.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_packdepth_vsm_linear.sc
@@ -2,7 +2,7 @@ $input v_depth
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/fs_shadowmaps_texture.sc b/examples/16-shadowmaps/fs_shadowmaps_texture.sc
index 098fa5b9d..054a7d93d 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_texture.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_texture.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/fs_shadowmaps_unpackdepth.sc b/examples/16-shadowmaps/fs_shadowmaps_unpackdepth.sc
index de62bdf36..5c9ca592b 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_unpackdepth.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_unpackdepth.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/fs_shadowmaps_unpackdepth_vsm.sc b/examples/16-shadowmaps/fs_shadowmaps_unpackdepth_vsm.sc
index 8c2051012..03addc40a 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_unpackdepth_vsm.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_unpackdepth_vsm.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/fs_shadowmaps_vblur.sc b/examples/16-shadowmaps/fs_shadowmaps_vblur.sc
index 7b40dd2fa..82495a7a0 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_vblur.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_vblur.sc
@@ -2,7 +2,7 @@ $input v_texcoord0, v_texcoord1, v_texcoord2, v_texcoord3, v_texcoord4
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.sh"
diff --git a/examples/16-shadowmaps/fs_shadowmaps_vblur_vsm.sc b/examples/16-shadowmaps/fs_shadowmaps_vblur_vsm.sc
index e06c17dd0..aa10a96c0 100644
--- a/examples/16-shadowmaps/fs_shadowmaps_vblur_vsm.sc
+++ b/examples/16-shadowmaps/fs_shadowmaps_vblur_vsm.sc
@@ -2,7 +2,7 @@ $input v_texcoord0, v_texcoord1, v_texcoord2, v_texcoord3, v_texcoord4
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.sh"
diff --git a/examples/16-shadowmaps/makefile b/examples/16-shadowmaps/makefile
index a88986ef6..19c81e436 100644
--- a/examples/16-shadowmaps/makefile
+++ b/examples/16-shadowmaps/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/16-shadowmaps/shadowmaps.cpp b/examples/16-shadowmaps/shadowmaps.cpp
index e4e28d8ff..2c642fc8d 100644
--- a/examples/16-shadowmaps/shadowmaps.cpp
+++ b/examples/16-shadowmaps/shadowmaps.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/16-shadowmaps/vs_shadowmaps_color.sc b/examples/16-shadowmaps/vs_shadowmaps_color.sc
index a606797f0..a303feb13 100644
--- a/examples/16-shadowmaps/vs_shadowmaps_color.sc
+++ b/examples/16-shadowmaps/vs_shadowmaps_color.sc
@@ -2,7 +2,7 @@ $input a_position
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/vs_shadowmaps_color_lighting.sc b/examples/16-shadowmaps/vs_shadowmaps_color_lighting.sc
index b92e665a6..92dcd85c4 100644
--- a/examples/16-shadowmaps/vs_shadowmaps_color_lighting.sc
+++ b/examples/16-shadowmaps/vs_shadowmaps_color_lighting.sc
@@ -3,7 +3,7 @@ $output v_normal, v_view, v_shadowcoord
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/vs_shadowmaps_color_lighting_csm.sc b/examples/16-shadowmaps/vs_shadowmaps_color_lighting_csm.sc
index 680447b33..ab1c6784b 100644
--- a/examples/16-shadowmaps/vs_shadowmaps_color_lighting_csm.sc
+++ b/examples/16-shadowmaps/vs_shadowmaps_color_lighting_csm.sc
@@ -3,7 +3,7 @@ $output v_position, v_normal, v_view, v_texcoord1, v_texcoord2, v_texcoord3, v_t
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/vs_shadowmaps_color_lighting_linear.sc b/examples/16-shadowmaps/vs_shadowmaps_color_lighting_linear.sc
index 9906dbf6d..e9a7cbb35 100644
--- a/examples/16-shadowmaps/vs_shadowmaps_color_lighting_linear.sc
+++ b/examples/16-shadowmaps/vs_shadowmaps_color_lighting_linear.sc
@@ -3,7 +3,7 @@ $output v_normal, v_view, v_shadowcoord
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/vs_shadowmaps_color_lighting_linear_csm.sc b/examples/16-shadowmaps/vs_shadowmaps_color_lighting_linear_csm.sc
index 2e228f6dc..6cdfb6009 100644
--- a/examples/16-shadowmaps/vs_shadowmaps_color_lighting_linear_csm.sc
+++ b/examples/16-shadowmaps/vs_shadowmaps_color_lighting_linear_csm.sc
@@ -3,7 +3,7 @@ $output v_position, v_normal, v_view, v_texcoord1, v_texcoord2, v_texcoord3, v_t
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/vs_shadowmaps_color_lighting_linear_omni.sc b/examples/16-shadowmaps/vs_shadowmaps_color_lighting_linear_omni.sc
index 5048181d7..765c1a5fe 100644
--- a/examples/16-shadowmaps/vs_shadowmaps_color_lighting_linear_omni.sc
+++ b/examples/16-shadowmaps/vs_shadowmaps_color_lighting_linear_omni.sc
@@ -3,7 +3,7 @@ $output v_position, v_normal, v_view, v_texcoord1, v_texcoord2, v_texcoord3, v_t
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/vs_shadowmaps_color_lighting_omni.sc b/examples/16-shadowmaps/vs_shadowmaps_color_lighting_omni.sc
index 45800caf7..a05575842 100644
--- a/examples/16-shadowmaps/vs_shadowmaps_color_lighting_omni.sc
+++ b/examples/16-shadowmaps/vs_shadowmaps_color_lighting_omni.sc
@@ -3,7 +3,7 @@ $output v_position, v_normal, v_view, v_texcoord1, v_texcoord2, v_texcoord3, v_t
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/vs_shadowmaps_color_texture.sc b/examples/16-shadowmaps/vs_shadowmaps_color_texture.sc
index 239f4185c..d2585e1a8 100644
--- a/examples/16-shadowmaps/vs_shadowmaps_color_texture.sc
+++ b/examples/16-shadowmaps/vs_shadowmaps_color_texture.sc
@@ -3,7 +3,7 @@ $output v_texcoord0
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/vs_shadowmaps_depth.sc b/examples/16-shadowmaps/vs_shadowmaps_depth.sc
index b7e0d2a17..973453d20 100644
--- a/examples/16-shadowmaps/vs_shadowmaps_depth.sc
+++ b/examples/16-shadowmaps/vs_shadowmaps_depth.sc
@@ -2,7 +2,7 @@ $input a_position
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/vs_shadowmaps_hblur.sc b/examples/16-shadowmaps/vs_shadowmaps_hblur.sc
index d2494ac8a..99ddaf2c5 100644
--- a/examples/16-shadowmaps/vs_shadowmaps_hblur.sc
+++ b/examples/16-shadowmaps/vs_shadowmaps_hblur.sc
@@ -2,8 +2,8 @@ $input a_position, a_texcoord0
$output v_texcoord0, v_texcoord1, v_texcoord2, v_texcoord3, v_texcoord4
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/vs_shadowmaps_packdepth.sc b/examples/16-shadowmaps/vs_shadowmaps_packdepth.sc
index 8d55a99f2..fa041ba1f 100644
--- a/examples/16-shadowmaps/vs_shadowmaps_packdepth.sc
+++ b/examples/16-shadowmaps/vs_shadowmaps_packdepth.sc
@@ -3,7 +3,7 @@ $output v_position
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/vs_shadowmaps_packdepth_linear.sc b/examples/16-shadowmaps/vs_shadowmaps_packdepth_linear.sc
index 20e235915..ae8e98106 100644
--- a/examples/16-shadowmaps/vs_shadowmaps_packdepth_linear.sc
+++ b/examples/16-shadowmaps/vs_shadowmaps_packdepth_linear.sc
@@ -3,7 +3,7 @@ $output v_depth
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/vs_shadowmaps_texture.sc b/examples/16-shadowmaps/vs_shadowmaps_texture.sc
index 239f4185c..d2585e1a8 100644
--- a/examples/16-shadowmaps/vs_shadowmaps_texture.sc
+++ b/examples/16-shadowmaps/vs_shadowmaps_texture.sc
@@ -3,7 +3,7 @@ $output v_texcoord0
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/vs_shadowmaps_texture_lighting.sc b/examples/16-shadowmaps/vs_shadowmaps_texture_lighting.sc
index da8270422..4d1f63346 100644
--- a/examples/16-shadowmaps/vs_shadowmaps_texture_lighting.sc
+++ b/examples/16-shadowmaps/vs_shadowmaps_texture_lighting.sc
@@ -3,7 +3,7 @@ $output v_normal, v_view, v_texcoord0
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/vs_shadowmaps_unpackdepth.sc b/examples/16-shadowmaps/vs_shadowmaps_unpackdepth.sc
index 239f4185c..d2585e1a8 100644
--- a/examples/16-shadowmaps/vs_shadowmaps_unpackdepth.sc
+++ b/examples/16-shadowmaps/vs_shadowmaps_unpackdepth.sc
@@ -3,7 +3,7 @@ $output v_texcoord0
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/16-shadowmaps/vs_shadowmaps_vblur.sc b/examples/16-shadowmaps/vs_shadowmaps_vblur.sc
index e9cd5c62e..8527d54c3 100644
--- a/examples/16-shadowmaps/vs_shadowmaps_vblur.sc
+++ b/examples/16-shadowmaps/vs_shadowmaps_vblur.sc
@@ -3,7 +3,7 @@ $output v_texcoord0, v_texcoord1, v_texcoord2, v_texcoord3, v_texcoord4
/*
* Copyright 2013-2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/17-drawstress/drawstress.cpp b/examples/17-drawstress/drawstress.cpp
index 3559c235c..ad25c4340 100644
--- a/examples/17-drawstress/drawstress.cpp
+++ b/examples/17-drawstress/drawstress.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/17-drawstress/fs_drawstress.sc b/examples/17-drawstress/fs_drawstress.sc
index d79294478..8ea959c83 100644
--- a/examples/17-drawstress/fs_drawstress.sc
+++ b/examples/17-drawstress/fs_drawstress.sc
@@ -1,8 +1,8 @@
$input v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/17-drawstress/makefile b/examples/17-drawstress/makefile
index bfec49616..efdae05bf 100644
--- a/examples/17-drawstress/makefile
+++ b/examples/17-drawstress/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
include ../../scripts/shader-embeded.mk
diff --git a/examples/17-drawstress/vs_drawstress.sc b/examples/17-drawstress/vs_drawstress.sc
index 49a73940f..d80005d46 100644
--- a/examples/17-drawstress/vs_drawstress.sc
+++ b/examples/17-drawstress/vs_drawstress.sc
@@ -2,8 +2,8 @@ $input a_position, a_color0
$output v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/18-ibl/fs_ibl_mesh.sc b/examples/18-ibl/fs_ibl_mesh.sc
index 836400b9e..07f8e9a9a 100644
--- a/examples/18-ibl/fs_ibl_mesh.sc
+++ b/examples/18-ibl/fs_ibl_mesh.sc
@@ -2,7 +2,7 @@ $input v_view, v_normal
/*
* Copyright 2014-2016 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/18-ibl/fs_ibl_skybox.sc b/examples/18-ibl/fs_ibl_skybox.sc
index d895037b2..9800dc812 100644
--- a/examples/18-ibl/fs_ibl_skybox.sc
+++ b/examples/18-ibl/fs_ibl_skybox.sc
@@ -2,7 +2,7 @@ $input v_dir
/*
* Copyright 2014-2016 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/18-ibl/ibl.cpp b/examples/18-ibl/ibl.cpp
index 3e2ab6a90..ee7d7b5ef 100644
--- a/examples/18-ibl/ibl.cpp
+++ b/examples/18-ibl/ibl.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2014-2016 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/18-ibl/makefile b/examples/18-ibl/makefile
index a88986ef6..19c81e436 100644
--- a/examples/18-ibl/makefile
+++ b/examples/18-ibl/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/18-ibl/uniforms.sh b/examples/18-ibl/uniforms.sh
index 61354fc87..8cb0d5e3e 100644
--- a/examples/18-ibl/uniforms.sh
+++ b/examples/18-ibl/uniforms.sh
@@ -1,6 +1,6 @@
/*
* Copyright 2016 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
uniform vec4 u_params[12];
diff --git a/examples/18-ibl/vs_ibl_mesh.sc b/examples/18-ibl/vs_ibl_mesh.sc
index ad8813628..2d8b07e5e 100644
--- a/examples/18-ibl/vs_ibl_mesh.sc
+++ b/examples/18-ibl/vs_ibl_mesh.sc
@@ -3,7 +3,7 @@ $output v_view, v_normal
/*
* Copyright 2014-2016 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/18-ibl/vs_ibl_skybox.sc b/examples/18-ibl/vs_ibl_skybox.sc
index f3a15e0c7..845f21404 100644
--- a/examples/18-ibl/vs_ibl_skybox.sc
+++ b/examples/18-ibl/vs_ibl_skybox.sc
@@ -3,7 +3,7 @@ $output v_dir
/*
* Copyright 2014-2016 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/19-oit/fs_oit.sc b/examples/19-oit/fs_oit.sc
index 065a6602d..a087e5f3a 100644
--- a/examples/19-oit/fs_oit.sc
+++ b/examples/19-oit/fs_oit.sc
@@ -1,8 +1,8 @@
$input v_pos
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/19-oit/fs_oit_wb.sc b/examples/19-oit/fs_oit_wb.sc
index 6b41f7eef..9cb69a52e 100644
--- a/examples/19-oit/fs_oit_wb.sc
+++ b/examples/19-oit/fs_oit_wb.sc
@@ -1,8 +1,8 @@
$input v_pos
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/19-oit/fs_oit_wb_blit.sc b/examples/19-oit/fs_oit_wb_blit.sc
index 5998d80aa..f6f45c820 100644
--- a/examples/19-oit/fs_oit_wb_blit.sc
+++ b/examples/19-oit/fs_oit_wb_blit.sc
@@ -1,8 +1,8 @@
$input v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/19-oit/fs_oit_wb_separate.sc b/examples/19-oit/fs_oit_wb_separate.sc
index f2d0b09ee..3e4c6d8ce 100644
--- a/examples/19-oit/fs_oit_wb_separate.sc
+++ b/examples/19-oit/fs_oit_wb_separate.sc
@@ -1,8 +1,8 @@
$input v_pos
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/19-oit/fs_oit_wb_separate_blit.sc b/examples/19-oit/fs_oit_wb_separate_blit.sc
index 3a7cdedcf..58c888aaa 100644
--- a/examples/19-oit/fs_oit_wb_separate_blit.sc
+++ b/examples/19-oit/fs_oit_wb_separate_blit.sc
@@ -1,8 +1,8 @@
$input v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/19-oit/makefile b/examples/19-oit/makefile
index a88986ef6..19c81e436 100644
--- a/examples/19-oit/makefile
+++ b/examples/19-oit/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/19-oit/oit.cpp b/examples/19-oit/oit.cpp
index cd5cf9260..f721851b3 100644
--- a/examples/19-oit/oit.cpp
+++ b/examples/19-oit/oit.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/19-oit/vs_oit.sc b/examples/19-oit/vs_oit.sc
index d274360fc..b38d28fda 100644
--- a/examples/19-oit/vs_oit.sc
+++ b/examples/19-oit/vs_oit.sc
@@ -2,8 +2,8 @@ $input a_position
$output v_pos
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/19-oit/vs_oit_blit.sc b/examples/19-oit/vs_oit_blit.sc
index 946194572..545369275 100644
--- a/examples/19-oit/vs_oit_blit.sc
+++ b/examples/19-oit/vs_oit_blit.sc
@@ -2,8 +2,8 @@ $input a_position, a_texcoord0
$output v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/20-nanovg/nanovg.cpp b/examples/20-nanovg/nanovg.cpp
index 246c13021..e5edce67b 100644
--- a/examples/20-nanovg/nanovg.cpp
+++ b/examples/20-nanovg/nanovg.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
//
diff --git a/examples/21-deferred/common.sh b/examples/21-deferred/common.sh
index 5889912a1..14dd727bb 100644
--- a/examples/21-deferred/common.sh
+++ b/examples/21-deferred/common.sh
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/21-deferred/deferred.cpp b/examples/21-deferred/deferred.cpp
index e235db308..dbd94dd73 100644
--- a/examples/21-deferred/deferred.cpp
+++ b/examples/21-deferred/deferred.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/21-deferred/fs_deferred_clear_uav.sc b/examples/21-deferred/fs_deferred_clear_uav.sc
index c9053dbfe..bf355703e 100644
--- a/examples/21-deferred/fs_deferred_clear_uav.sc
+++ b/examples/21-deferred/fs_deferred_clear_uav.sc
@@ -1,8 +1,8 @@
$input v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/21-deferred/fs_deferred_combine.sc b/examples/21-deferred/fs_deferred_combine.sc
index f9ce5ea6b..31318e331 100644
--- a/examples/21-deferred/fs_deferred_combine.sc
+++ b/examples/21-deferred/fs_deferred_combine.sc
@@ -1,8 +1,8 @@
$input v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/21-deferred/fs_deferred_combine_ta.sc b/examples/21-deferred/fs_deferred_combine_ta.sc
index 1a0e1cee4..ce18dcc1e 100644
--- a/examples/21-deferred/fs_deferred_combine_ta.sc
+++ b/examples/21-deferred/fs_deferred_combine_ta.sc
@@ -1,8 +1,8 @@
$input v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/21-deferred/fs_deferred_debug.sc b/examples/21-deferred/fs_deferred_debug.sc
index 62a7d88c8..1d3b0951a 100644
--- a/examples/21-deferred/fs_deferred_debug.sc
+++ b/examples/21-deferred/fs_deferred_debug.sc
@@ -1,8 +1,8 @@
$input v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/21-deferred/fs_deferred_debug_line.sc b/examples/21-deferred/fs_deferred_debug_line.sc
index d79294478..8ea959c83 100644
--- a/examples/21-deferred/fs_deferred_debug_line.sc
+++ b/examples/21-deferred/fs_deferred_debug_line.sc
@@ -1,8 +1,8 @@
$input v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/21-deferred/fs_deferred_debug_ta.sc b/examples/21-deferred/fs_deferred_debug_ta.sc
index 9240dc597..e69f2fcda 100644
--- a/examples/21-deferred/fs_deferred_debug_ta.sc
+++ b/examples/21-deferred/fs_deferred_debug_ta.sc
@@ -1,8 +1,8 @@
$input v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/21-deferred/fs_deferred_geom.sc b/examples/21-deferred/fs_deferred_geom.sc
index 88214cde5..0466d720a 100644
--- a/examples/21-deferred/fs_deferred_geom.sc
+++ b/examples/21-deferred/fs_deferred_geom.sc
@@ -1,8 +1,8 @@
$input v_wpos, v_view, v_normal, v_tangent, v_bitangent, v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/21-deferred/fs_deferred_light.sc b/examples/21-deferred/fs_deferred_light.sc
index c0b6e42fc..680b5a8e0 100644
--- a/examples/21-deferred/fs_deferred_light.sc
+++ b/examples/21-deferred/fs_deferred_light.sc
@@ -1,8 +1,8 @@
$input v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.sh"
diff --git a/examples/21-deferred/fs_deferred_light_ta.sc b/examples/21-deferred/fs_deferred_light_ta.sc
index ec9d33070..19102eff0 100644
--- a/examples/21-deferred/fs_deferred_light_ta.sc
+++ b/examples/21-deferred/fs_deferred_light_ta.sc
@@ -1,8 +1,8 @@
$input v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.sh"
diff --git a/examples/21-deferred/fs_deferred_light_uav.sc b/examples/21-deferred/fs_deferred_light_uav.sc
index dd395a831..084423338 100644
--- a/examples/21-deferred/fs_deferred_light_uav.sc
+++ b/examples/21-deferred/fs_deferred_light_uav.sc
@@ -1,8 +1,8 @@
$input v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.sh"
diff --git a/examples/21-deferred/makefile b/examples/21-deferred/makefile
index a88986ef6..19c81e436 100644
--- a/examples/21-deferred/makefile
+++ b/examples/21-deferred/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/21-deferred/vs_deferred_combine.sc b/examples/21-deferred/vs_deferred_combine.sc
index 946194572..545369275 100644
--- a/examples/21-deferred/vs_deferred_combine.sc
+++ b/examples/21-deferred/vs_deferred_combine.sc
@@ -2,8 +2,8 @@ $input a_position, a_texcoord0
$output v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/21-deferred/vs_deferred_debug.sc b/examples/21-deferred/vs_deferred_debug.sc
index 946194572..545369275 100644
--- a/examples/21-deferred/vs_deferred_debug.sc
+++ b/examples/21-deferred/vs_deferred_debug.sc
@@ -2,8 +2,8 @@ $input a_position, a_texcoord0
$output v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/21-deferred/vs_deferred_debug_line.sc b/examples/21-deferred/vs_deferred_debug_line.sc
index 49a73940f..d80005d46 100644
--- a/examples/21-deferred/vs_deferred_debug_line.sc
+++ b/examples/21-deferred/vs_deferred_debug_line.sc
@@ -2,8 +2,8 @@ $input a_position, a_color0
$output v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/21-deferred/vs_deferred_geom.sc b/examples/21-deferred/vs_deferred_geom.sc
index 877860d28..5c4e5bf3f 100644
--- a/examples/21-deferred/vs_deferred_geom.sc
+++ b/examples/21-deferred/vs_deferred_geom.sc
@@ -2,8 +2,8 @@ $input a_position, a_normal, a_tangent, a_texcoord0
$output v_wpos, v_view, v_normal, v_tangent, v_bitangent, v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/21-deferred/vs_deferred_light.sc b/examples/21-deferred/vs_deferred_light.sc
index 946194572..545369275 100644
--- a/examples/21-deferred/vs_deferred_light.sc
+++ b/examples/21-deferred/vs_deferred_light.sc
@@ -2,8 +2,8 @@ $input a_position, a_texcoord0
$output v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/22-windows/windows.cpp b/examples/22-windows/windows.cpp
index 2f944fd12..c7ef8d4fc 100644
--- a/examples/22-windows/windows.cpp
+++ b/examples/22-windows/windows.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/23-vectordisplay/main.cpp b/examples/23-vectordisplay/main.cpp
index cb72564d1..f3765873d 100644
--- a/examples/23-vectordisplay/main.cpp
+++ b/examples/23-vectordisplay/main.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2014 Kai Jourdan. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*
*/
diff --git a/examples/23-vectordisplay/makefile b/examples/23-vectordisplay/makefile
index a88986ef6..19c81e436 100644
--- a/examples/23-vectordisplay/makefile
+++ b/examples/23-vectordisplay/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/23-vectordisplay/vectordisplay.cpp b/examples/23-vectordisplay/vectordisplay.cpp
index aae6ac0df..719556a89 100644
--- a/examples/23-vectordisplay/vectordisplay.cpp
+++ b/examples/23-vectordisplay/vectordisplay.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2014 Kai Jourdan. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
// Reference(s):
diff --git a/examples/23-vectordisplay/vectordisplay.h b/examples/23-vectordisplay/vectordisplay.h
index 3b208b019..edadfd72e 100644
--- a/examples/23-vectordisplay/vectordisplay.h
+++ b/examples/23-vectordisplay/vectordisplay.h
@@ -1,6 +1,6 @@
/*
* Copyright 2014 Kai Jourdan. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef __VECTORDISPLAY_H__
diff --git a/examples/24-nbody/cs_indirect.sc b/examples/24-nbody/cs_indirect.sc
index 87b6b1859..e06802f4f 100644
--- a/examples/24-nbody/cs_indirect.sc
+++ b/examples/24-nbody/cs_indirect.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2014 Stanlo Slasinski. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_compute.sh"
diff --git a/examples/24-nbody/cs_init_instances.sc b/examples/24-nbody/cs_init_instances.sc
index cc824b193..0844979d1 100644
--- a/examples/24-nbody/cs_init_instances.sc
+++ b/examples/24-nbody/cs_init_instances.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2014 Stanlo Slasinski. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_compute.sh"
diff --git a/examples/24-nbody/cs_update_instances.sc b/examples/24-nbody/cs_update_instances.sc
index 612a7b953..7031cb572 100644
--- a/examples/24-nbody/cs_update_instances.sc
+++ b/examples/24-nbody/cs_update_instances.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2014 Stanlo Slasinski. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_compute.sh"
diff --git a/examples/24-nbody/fs_particle.sc b/examples/24-nbody/fs_particle.sc
index 6dfca6d38..2f4bb4f81 100644
--- a/examples/24-nbody/fs_particle.sc
+++ b/examples/24-nbody/fs_particle.sc
@@ -2,7 +2,7 @@ $input v_texCoord
/*
* Copyright 2014 Stanlo Slasinski. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/24-nbody/makefile b/examples/24-nbody/makefile
index a88986ef6..19c81e436 100644
--- a/examples/24-nbody/makefile
+++ b/examples/24-nbody/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/24-nbody/nbody.cpp b/examples/24-nbody/nbody.cpp
index c271074ee..d902c6fbe 100644
--- a/examples/24-nbody/nbody.cpp
+++ b/examples/24-nbody/nbody.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2014 Stanlo Slasinski. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/24-nbody/uniforms.sh b/examples/24-nbody/uniforms.sh
index a27545fba..cdecc49d6 100644
--- a/examples/24-nbody/uniforms.sh
+++ b/examples/24-nbody/uniforms.sh
@@ -1,6 +1,6 @@
/*
* Copyright 2014 Stanlo Slasinski. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
uniform vec4 u_params[3];
diff --git a/examples/24-nbody/vs_particle.sc b/examples/24-nbody/vs_particle.sc
index f6bf524a4..2d3a2e8aa 100644
--- a/examples/24-nbody/vs_particle.sc
+++ b/examples/24-nbody/vs_particle.sc
@@ -3,7 +3,7 @@ $output v_texCoord
/*
* Copyright 2014 Stanlo Slasinski. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/26-occlusion/occlusion.cpp b/examples/26-occlusion/occlusion.cpp
index c1aea5b23..e133b28d3 100644
--- a/examples/26-occlusion/occlusion.cpp
+++ b/examples/26-occlusion/occlusion.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/27-terrain/fs_terrain.sc b/examples/27-terrain/fs_terrain.sc
index 0b5aa8255..aff04bea0 100644
--- a/examples/27-terrain/fs_terrain.sc
+++ b/examples/27-terrain/fs_terrain.sc
@@ -2,7 +2,7 @@ $input v_position, v_texcoord0
/*
* Copyright 2015 Andrew Mac. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/27-terrain/makefile b/examples/27-terrain/makefile
index a88986ef6..19c81e436 100644
--- a/examples/27-terrain/makefile
+++ b/examples/27-terrain/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/27-terrain/terrain.cpp b/examples/27-terrain/terrain.cpp
index 819415488..1819d7277 100644
--- a/examples/27-terrain/terrain.cpp
+++ b/examples/27-terrain/terrain.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2015 Andrew Mac. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/27-terrain/vs_terrain.sc b/examples/27-terrain/vs_terrain.sc
index 4cea23e2d..6fde83db3 100644
--- a/examples/27-terrain/vs_terrain.sc
+++ b/examples/27-terrain/vs_terrain.sc
@@ -3,7 +3,7 @@ $output v_position, v_texcoord0
/*
* Copyright 2015 Andrew Mac. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/27-terrain/vs_terrain_height_texture.sc b/examples/27-terrain/vs_terrain_height_texture.sc
index f3451aa03..c15a35776 100644
--- a/examples/27-terrain/vs_terrain_height_texture.sc
+++ b/examples/27-terrain/vs_terrain_height_texture.sc
@@ -3,7 +3,7 @@ $output v_position, v_texcoord0
/*
* Copyright 2015 Andrew Mac. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/28-wireframe/fs_wf_mesh.sc b/examples/28-wireframe/fs_wf_mesh.sc
index 4a68b1472..c5f8e4587 100644
--- a/examples/28-wireframe/fs_wf_mesh.sc
+++ b/examples/28-wireframe/fs_wf_mesh.sc
@@ -2,7 +2,7 @@ $input v_view, v_bc, v_normal
/*
* Copyright 2016 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/28-wireframe/fs_wf_wireframe.sc b/examples/28-wireframe/fs_wf_wireframe.sc
index e2ff14200..c60b7246d 100644
--- a/examples/28-wireframe/fs_wf_wireframe.sc
+++ b/examples/28-wireframe/fs_wf_wireframe.sc
@@ -2,7 +2,7 @@ $input v_view, v_bc
/*
* Copyright 2016 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/28-wireframe/makefile b/examples/28-wireframe/makefile
index a88986ef6..19c81e436 100644
--- a/examples/28-wireframe/makefile
+++ b/examples/28-wireframe/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/28-wireframe/uniforms.sh b/examples/28-wireframe/uniforms.sh
index 330555ee5..934c41c6a 100644
--- a/examples/28-wireframe/uniforms.sh
+++ b/examples/28-wireframe/uniforms.sh
@@ -1,6 +1,6 @@
/*
* Copyright 2016 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
uniform vec4 u_params[3];
diff --git a/examples/28-wireframe/vs_wf_mesh.sc b/examples/28-wireframe/vs_wf_mesh.sc
index 3f51abc59..77d4f60be 100644
--- a/examples/28-wireframe/vs_wf_mesh.sc
+++ b/examples/28-wireframe/vs_wf_mesh.sc
@@ -3,7 +3,7 @@ $output v_view, v_bc, v_normal
/*
* Copyright 2016 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/28-wireframe/vs_wf_wireframe.sc b/examples/28-wireframe/vs_wf_wireframe.sc
index 1956b0d64..2a63a30a3 100644
--- a/examples/28-wireframe/vs_wf_wireframe.sc
+++ b/examples/28-wireframe/vs_wf_wireframe.sc
@@ -3,7 +3,7 @@ $output v_view, v_bc
/*
* Copyright 2016 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/28-wireframe/wireframe.cpp b/examples/28-wireframe/wireframe.cpp
index 5529b2c24..c689db042 100644
--- a/examples/28-wireframe/wireframe.cpp
+++ b/examples/28-wireframe/wireframe.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2016 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/29-debugdraw/debugdraw.cpp b/examples/29-debugdraw/debugdraw.cpp
index 488b545d2..05a03b95f 100644
--- a/examples/29-debugdraw/debugdraw.cpp
+++ b/examples/29-debugdraw/debugdraw.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/30-picking/fs_picking_id.sc b/examples/30-picking/fs_picking_id.sc
index 0531be95b..8a2293100 100644
--- a/examples/30-picking/fs_picking_id.sc
+++ b/examples/30-picking/fs_picking_id.sc
@@ -1,8 +1,8 @@
$input v_pos, v_view, v_normal, v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/30-picking/fs_picking_shaded.sc b/examples/30-picking/fs_picking_shaded.sc
index 8298be712..05c873e96 100644
--- a/examples/30-picking/fs_picking_shaded.sc
+++ b/examples/30-picking/fs_picking_shaded.sc
@@ -1,8 +1,8 @@
$input v_pos, v_view, v_normal, v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/30-picking/makefile b/examples/30-picking/makefile
index a88986ef6..19c81e436 100644
--- a/examples/30-picking/makefile
+++ b/examples/30-picking/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/30-picking/picking.cpp b/examples/30-picking/picking.cpp
index 52a51a3c4..df9318d2f 100644
--- a/examples/30-picking/picking.cpp
+++ b/examples/30-picking/picking.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2016 Joseph Cherlin. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/30-picking/vs_picking_shaded.sc b/examples/30-picking/vs_picking_shaded.sc
index a31c9e55d..f4ba4f35f 100644
--- a/examples/30-picking/vs_picking_shaded.sc
+++ b/examples/30-picking/vs_picking_shaded.sc
@@ -2,8 +2,8 @@ $input a_position, a_normal
$output v_pos, v_view, v_normal, v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/31-rsm/fs_rsm_combine.sc b/examples/31-rsm/fs_rsm_combine.sc
index ac3fd2805..6640c0945 100644
--- a/examples/31-rsm/fs_rsm_combine.sc
+++ b/examples/31-rsm/fs_rsm_combine.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2016 Joseph Cherlin. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/31-rsm/fs_rsm_gbuffer.sc b/examples/31-rsm/fs_rsm_gbuffer.sc
index a220ecf9d..c17b87615 100644
--- a/examples/31-rsm/fs_rsm_gbuffer.sc
+++ b/examples/31-rsm/fs_rsm_gbuffer.sc
@@ -2,7 +2,7 @@ $input v_normal
/*
* Copyright 2016 Joseph Cherlin. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/31-rsm/fs_rsm_lbuffer.sc b/examples/31-rsm/fs_rsm_lbuffer.sc
index 7db4734b1..cef4c4861 100644
--- a/examples/31-rsm/fs_rsm_lbuffer.sc
+++ b/examples/31-rsm/fs_rsm_lbuffer.sc
@@ -2,7 +2,7 @@ $input v_lightCenterScale, v_color0
/*
* Copyright 2016 Joseph Cherlin. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/31-rsm/fs_rsm_shadow.sc b/examples/31-rsm/fs_rsm_shadow.sc
index 44298411d..a63655b93 100644
--- a/examples/31-rsm/fs_rsm_shadow.sc
+++ b/examples/31-rsm/fs_rsm_shadow.sc
@@ -2,7 +2,7 @@ $input v_normal
/*
* Copyright 2016 Joseph Cherlin. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/31-rsm/makefile b/examples/31-rsm/makefile
index a88986ef6..19c81e436 100644
--- a/examples/31-rsm/makefile
+++ b/examples/31-rsm/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/31-rsm/reflectiveshadowmap.cpp b/examples/31-rsm/reflectiveshadowmap.cpp
index 113cb59bf..5cc7d5254 100644
--- a/examples/31-rsm/reflectiveshadowmap.cpp
+++ b/examples/31-rsm/reflectiveshadowmap.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2016 Joseph Cherlin. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/31-rsm/vs_rsm_combine.sc b/examples/31-rsm/vs_rsm_combine.sc
index be7032c2b..9df859780 100644
--- a/examples/31-rsm/vs_rsm_combine.sc
+++ b/examples/31-rsm/vs_rsm_combine.sc
@@ -3,7 +3,7 @@ $output v_texcoord0
/*
* Copyright 2016 Joseph Cherlin. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/31-rsm/vs_rsm_gbuffer.sc b/examples/31-rsm/vs_rsm_gbuffer.sc
index 123e4fbf4..a7ac4108a 100644
--- a/examples/31-rsm/vs_rsm_gbuffer.sc
+++ b/examples/31-rsm/vs_rsm_gbuffer.sc
@@ -3,7 +3,7 @@ $output v_normal
/*
* Copyright 2016 Joseph Cherlin. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
diff --git a/examples/31-rsm/vs_rsm_lbuffer.sc b/examples/31-rsm/vs_rsm_lbuffer.sc
index 2dd65c037..7cdea3c34 100644
--- a/examples/31-rsm/vs_rsm_lbuffer.sc
+++ b/examples/31-rsm/vs_rsm_lbuffer.sc
@@ -3,7 +3,7 @@ $output v_lightCenterScale, v_color0
/*
* Copyright 2016 Joseph Cherlin. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/31-rsm/vs_rsm_shadow.sc b/examples/31-rsm/vs_rsm_shadow.sc
index 41bf8ab11..942e1c3e3 100644
--- a/examples/31-rsm/vs_rsm_shadow.sc
+++ b/examples/31-rsm/vs_rsm_shadow.sc
@@ -3,7 +3,7 @@ $output v_normal // RSM shadow
/*
* Copyright 2016 Joseph Cherlin. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/32-particles/particles.cpp b/examples/32-particles/particles.cpp
index 3bd22e4ab..a556ff3f9 100644
--- a/examples/32-particles/particles.cpp
+++ b/examples/32-particles/particles.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/33-pom/makefile b/examples/33-pom/makefile
index a88986ef6..19c81e436 100644
--- a/examples/33-pom/makefile
+++ b/examples/33-pom/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/33-pom/pom.cpp b/examples/33-pom/pom.cpp
index a4fa0649a..0965bc07d 100644
--- a/examples/33-pom/pom.cpp
+++ b/examples/33-pom/pom.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/34-mvs/mvs.cpp b/examples/34-mvs/mvs.cpp
index 8f0732f19..86ecaf040 100644
--- a/examples/34-mvs/mvs.cpp
+++ b/examples/34-mvs/mvs.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/35-dynamic/dynamic.cpp b/examples/35-dynamic/dynamic.cpp
index d26e4031a..923344e23 100644
--- a/examples/35-dynamic/dynamic.cpp
+++ b/examples/35-dynamic/dynamic.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/36-sky/fs_sky.sc b/examples/36-sky/fs_sky.sc
index 7c53d5018..1b3481838 100644
--- a/examples/36-sky/fs_sky.sc
+++ b/examples/36-sky/fs_sky.sc
@@ -2,7 +2,7 @@ $input v_skyColor, v_screenPos, v_viewDir
/*
* Copyright 2017 Stanislav Pidhorskyi. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
uniform vec4 u_parameters; // x - sun size, y - sun bloom, z - exposition, w - time
diff --git a/examples/36-sky/fs_sky_color_banding_fix.sc b/examples/36-sky/fs_sky_color_banding_fix.sc
index 6782e03e3..de96f2180 100644
--- a/examples/36-sky/fs_sky_color_banding_fix.sc
+++ b/examples/36-sky/fs_sky_color_banding_fix.sc
@@ -2,7 +2,7 @@ $input v_skyColor, v_screenPos, v_viewDir
/*
* Copyright 2017 Stanislav Pidhorskyi. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
diff --git a/examples/36-sky/fs_sky_landscape.sc b/examples/36-sky/fs_sky_landscape.sc
index 088b03c70..0ce045e57 100644
--- a/examples/36-sky/fs_sky_landscape.sc
+++ b/examples/36-sky/fs_sky_landscape.sc
@@ -2,7 +2,7 @@ $input v_normal, v_texcoord0
/*
* Copyright 2017 Stanislav Pidhorskyi. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/36-sky/makefile b/examples/36-sky/makefile
index a88986ef6..19c81e436 100644
--- a/examples/36-sky/makefile
+++ b/examples/36-sky/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/36-sky/sky.cpp b/examples/36-sky/sky.cpp
index 8104f7222..87a77e23f 100644
--- a/examples/36-sky/sky.cpp
+++ b/examples/36-sky/sky.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2017 Stanislav Pidhorskyi. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
/*
diff --git a/examples/36-sky/vs_sky.sc b/examples/36-sky/vs_sky.sc
index 10751bd1f..919b92dbf 100644
--- a/examples/36-sky/vs_sky.sc
+++ b/examples/36-sky/vs_sky.sc
@@ -3,7 +3,7 @@ $output v_skyColor, v_screenPos, v_viewDir
/*
* Copyright 2017 Stanislav Pidhorskyi. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
diff --git a/examples/36-sky/vs_sky_landscape.sc b/examples/36-sky/vs_sky_landscape.sc
index a42072db8..8a22e90e0 100644
--- a/examples/36-sky/vs_sky_landscape.sc
+++ b/examples/36-sky/vs_sky_landscape.sc
@@ -2,8 +2,8 @@ $input a_position, a_normal, a_texcoord0
$output v_normal, v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/37-gpudrivenrendering/cs_gdr_copy_z.sc b/examples/37-gpudrivenrendering/cs_gdr_copy_z.sc
index b6365bdc6..c5732156b 100644
--- a/examples/37-gpudrivenrendering/cs_gdr_copy_z.sc
+++ b/examples/37-gpudrivenrendering/cs_gdr_copy_z.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Kostas Anagnostou. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_compute.sh"
diff --git a/examples/37-gpudrivenrendering/cs_gdr_downscale_hi_z.sc b/examples/37-gpudrivenrendering/cs_gdr_downscale_hi_z.sc
index 9b03498f9..cb3941638 100644
--- a/examples/37-gpudrivenrendering/cs_gdr_downscale_hi_z.sc
+++ b/examples/37-gpudrivenrendering/cs_gdr_downscale_hi_z.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Kostas Anagnostou. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_compute.sh"
diff --git a/examples/37-gpudrivenrendering/cs_gdr_occlude_props.sc b/examples/37-gpudrivenrendering/cs_gdr_occlude_props.sc
index 2648eb4d0..fd4ae946f 100644
--- a/examples/37-gpudrivenrendering/cs_gdr_occlude_props.sc
+++ b/examples/37-gpudrivenrendering/cs_gdr_occlude_props.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Kostas Anagnostou. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_compute.sh"
diff --git a/examples/37-gpudrivenrendering/cs_gdr_stream_compaction.sc b/examples/37-gpudrivenrendering/cs_gdr_stream_compaction.sc
index b96bb5f9b..058d1eafb 100644
--- a/examples/37-gpudrivenrendering/cs_gdr_stream_compaction.sc
+++ b/examples/37-gpudrivenrendering/cs_gdr_stream_compaction.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Kostas Anagnostou. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_compute.sh"
diff --git a/examples/37-gpudrivenrendering/fs_gdr_instanced_indirect_rendering.sc b/examples/37-gpudrivenrendering/fs_gdr_instanced_indirect_rendering.sc
index 14f484991..a6e410406 100644
--- a/examples/37-gpudrivenrendering/fs_gdr_instanced_indirect_rendering.sc
+++ b/examples/37-gpudrivenrendering/fs_gdr_instanced_indirect_rendering.sc
@@ -2,7 +2,7 @@ $input v_materialID
/*
* Copyright 2018 Kostas Anagnostou. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/37-gpudrivenrendering/gpudrivenrendering.cpp b/examples/37-gpudrivenrendering/gpudrivenrendering.cpp
index 9efbac4fa..1653c8a21 100644
--- a/examples/37-gpudrivenrendering/gpudrivenrendering.cpp
+++ b/examples/37-gpudrivenrendering/gpudrivenrendering.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Kostas Anagnostou. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
/*
diff --git a/examples/37-gpudrivenrendering/makefile b/examples/37-gpudrivenrendering/makefile
index a88986ef6..19c81e436 100644
--- a/examples/37-gpudrivenrendering/makefile
+++ b/examples/37-gpudrivenrendering/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/37-gpudrivenrendering/vs_gdr_instanced_indirect_rendering.sc b/examples/37-gpudrivenrendering/vs_gdr_instanced_indirect_rendering.sc
index da5174d9f..56e249dc8 100644
--- a/examples/37-gpudrivenrendering/vs_gdr_instanced_indirect_rendering.sc
+++ b/examples/37-gpudrivenrendering/vs_gdr_instanced_indirect_rendering.sc
@@ -3,7 +3,7 @@ $output v_materialID
/*
* Copyright 2018 Kostas Anagnostou. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/37-gpudrivenrendering/vs_gdr_render_occlusion.sc b/examples/37-gpudrivenrendering/vs_gdr_render_occlusion.sc
index dcfe4b606..496994d7a 100644
--- a/examples/37-gpudrivenrendering/vs_gdr_render_occlusion.sc
+++ b/examples/37-gpudrivenrendering/vs_gdr_render_occlusion.sc
@@ -2,7 +2,7 @@ $input a_position, i_data0, i_data1, i_data2, i_data3, i_data4
/*
* Copyright 2018 Kostas Anagnostou. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/38-bloom/bloom.cpp b/examples/38-bloom/bloom.cpp
index 870925b8e..d7c2d368a 100644
--- a/examples/38-bloom/bloom.cpp
+++ b/examples/38-bloom/bloom.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Eric Arnebäck. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
/*
diff --git a/examples/38-bloom/fs_albedo_output.sc b/examples/38-bloom/fs_albedo_output.sc
index b445c1ef0..2167d6399 100644
--- a/examples/38-bloom/fs_albedo_output.sc
+++ b/examples/38-bloom/fs_albedo_output.sc
@@ -2,7 +2,7 @@ $input v_wpos, v_view, v_normal, v_tangent, v_bitangent, v_texcoord0
/*
* Copyright 2018 Eric Arnebäck. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/38-bloom/fs_bloom_combine.sc b/examples/38-bloom/fs_bloom_combine.sc
index bdf6386e7..6b9073b8f 100644
--- a/examples/38-bloom/fs_bloom_combine.sc
+++ b/examples/38-bloom/fs_bloom_combine.sc
@@ -1,8 +1,8 @@
$input v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/38-bloom/fs_downsample.sc b/examples/38-bloom/fs_downsample.sc
index f9ec13a29..0b1f5ba91 100644
--- a/examples/38-bloom/fs_downsample.sc
+++ b/examples/38-bloom/fs_downsample.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2018 Eric Arnebäck. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/38-bloom/fs_upsample.sc b/examples/38-bloom/fs_upsample.sc
index 54ac70a61..725426c01 100644
--- a/examples/38-bloom/fs_upsample.sc
+++ b/examples/38-bloom/fs_upsample.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2018 Eric Arnebäck. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/38-bloom/makefile b/examples/38-bloom/makefile
index a88986ef6..19c81e436 100644
--- a/examples/38-bloom/makefile
+++ b/examples/38-bloom/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/38-bloom/vs_albedo_output.sc b/examples/38-bloom/vs_albedo_output.sc
index d526a0261..7b40bde96 100644
--- a/examples/38-bloom/vs_albedo_output.sc
+++ b/examples/38-bloom/vs_albedo_output.sc
@@ -3,7 +3,7 @@ $output v_wpos, v_view, v_normal, v_tangent, v_bitangent, v_texcoord0
/*
* Copyright 2018 Eric Arnebäck. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/38-bloom/vs_deferred_combine.sc b/examples/38-bloom/vs_deferred_combine.sc
index 946194572..545369275 100644
--- a/examples/38-bloom/vs_deferred_combine.sc
+++ b/examples/38-bloom/vs_deferred_combine.sc
@@ -2,8 +2,8 @@ $input a_position, a_texcoord0
$output v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/38-bloom/vs_fullscreen.sc b/examples/38-bloom/vs_fullscreen.sc
index 0e6a23be1..e036fbe9d 100644
--- a/examples/38-bloom/vs_fullscreen.sc
+++ b/examples/38-bloom/vs_fullscreen.sc
@@ -3,7 +3,7 @@ $output v_texcoord0
/*
* Copyright 2018 Eric Arnebäck. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/39-assao/assao.cpp b/examples/39-assao/assao.cpp
index eaf13043b..ec7842cad 100644
--- a/examples/39-assao/assao.cpp
+++ b/examples/39-assao/assao.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
/*
diff --git a/examples/39-assao/cs_assao_apply.sc b/examples/39-assao/cs_assao_apply.sc
index efa8b4ebf..d6148fb3b 100644
--- a/examples/39-assao/cs_assao_apply.sc
+++ b/examples/39-assao/cs_assao_apply.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_compute.sh"
diff --git a/examples/39-assao/cs_assao_generate_importance_map.sc b/examples/39-assao/cs_assao_generate_importance_map.sc
index 5e681d620..7905c8196 100644
--- a/examples/39-assao/cs_assao_generate_importance_map.sc
+++ b/examples/39-assao/cs_assao_generate_importance_map.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_compute.sh"
diff --git a/examples/39-assao/cs_assao_generate_q.sh b/examples/39-assao/cs_assao_generate_q.sh
index f8d131afa..5b4726e69 100644
--- a/examples/39-assao/cs_assao_generate_q.sh
+++ b/examples/39-assao/cs_assao_generate_q.sh
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_compute.sh"
diff --git a/examples/39-assao/cs_assao_generate_q0.sc b/examples/39-assao/cs_assao_generate_q0.sc
index 51794d2f6..165249927 100644
--- a/examples/39-assao/cs_assao_generate_q0.sc
+++ b/examples/39-assao/cs_assao_generate_q0.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define ASSAO_QUALITY 0
diff --git a/examples/39-assao/cs_assao_generate_q1.sc b/examples/39-assao/cs_assao_generate_q1.sc
index 7f336f12f..942a48285 100644
--- a/examples/39-assao/cs_assao_generate_q1.sc
+++ b/examples/39-assao/cs_assao_generate_q1.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define ASSAO_QUALITY 1
diff --git a/examples/39-assao/cs_assao_generate_q2.sc b/examples/39-assao/cs_assao_generate_q2.sc
index d2fef4875..2e62c45d2 100644
--- a/examples/39-assao/cs_assao_generate_q2.sc
+++ b/examples/39-assao/cs_assao_generate_q2.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define ASSAO_QUALITY 2
diff --git a/examples/39-assao/cs_assao_generate_q3.sc b/examples/39-assao/cs_assao_generate_q3.sc
index 4e46b2db3..b53352e34 100644
--- a/examples/39-assao/cs_assao_generate_q3.sc
+++ b/examples/39-assao/cs_assao_generate_q3.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define ASSAO_QUALITY 3
diff --git a/examples/39-assao/cs_assao_generate_q3base.sc b/examples/39-assao/cs_assao_generate_q3base.sc
index a7164edb0..0b5c4f98e 100644
--- a/examples/39-assao/cs_assao_generate_q3base.sc
+++ b/examples/39-assao/cs_assao_generate_q3base.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#define ASSAO_QUALITY 3
diff --git a/examples/39-assao/cs_assao_load_counter_clear.sc b/examples/39-assao/cs_assao_load_counter_clear.sc
index c3323f223..ef7c1bfac 100644
--- a/examples/39-assao/cs_assao_load_counter_clear.sc
+++ b/examples/39-assao/cs_assao_load_counter_clear.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_compute.sh"
diff --git a/examples/39-assao/cs_assao_non_smart_apply.sc b/examples/39-assao/cs_assao_non_smart_apply.sc
index 0f5da92ce..af55615dc 100644
--- a/examples/39-assao/cs_assao_non_smart_apply.sc
+++ b/examples/39-assao/cs_assao_non_smart_apply.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_compute.sh"
diff --git a/examples/39-assao/cs_assao_non_smart_blur.sc b/examples/39-assao/cs_assao_non_smart_blur.sc
index ecedc1571..6c41d5d70 100644
--- a/examples/39-assao/cs_assao_non_smart_blur.sc
+++ b/examples/39-assao/cs_assao_non_smart_blur.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_compute.sh"
diff --git a/examples/39-assao/cs_assao_non_smart_half_apply.sc b/examples/39-assao/cs_assao_non_smart_half_apply.sc
index c9c2d3e8e..5026b4896 100644
--- a/examples/39-assao/cs_assao_non_smart_half_apply.sc
+++ b/examples/39-assao/cs_assao_non_smart_half_apply.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_compute.sh"
diff --git a/examples/39-assao/cs_assao_postprocess_importance_map_a.sc b/examples/39-assao/cs_assao_postprocess_importance_map_a.sc
index 31504094e..c11eb99ca 100644
--- a/examples/39-assao/cs_assao_postprocess_importance_map_a.sc
+++ b/examples/39-assao/cs_assao_postprocess_importance_map_a.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_compute.sh"
diff --git a/examples/39-assao/cs_assao_postprocess_importance_map_b.sc b/examples/39-assao/cs_assao_postprocess_importance_map_b.sc
index caf7695a3..8696292d1 100644
--- a/examples/39-assao/cs_assao_postprocess_importance_map_b.sc
+++ b/examples/39-assao/cs_assao_postprocess_importance_map_b.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_compute.sh"
diff --git a/examples/39-assao/cs_assao_prepare_depth_mip.sc b/examples/39-assao/cs_assao_prepare_depth_mip.sc
index acb642da7..c033bc799 100644
--- a/examples/39-assao/cs_assao_prepare_depth_mip.sc
+++ b/examples/39-assao/cs_assao_prepare_depth_mip.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_compute.sh"
diff --git a/examples/39-assao/cs_assao_prepare_depths.sc b/examples/39-assao/cs_assao_prepare_depths.sc
index d75fe4c3d..0b43c0e11 100644
--- a/examples/39-assao/cs_assao_prepare_depths.sc
+++ b/examples/39-assao/cs_assao_prepare_depths.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_compute.sh"
diff --git a/examples/39-assao/cs_assao_prepare_depths_and_normals.sc b/examples/39-assao/cs_assao_prepare_depths_and_normals.sc
index 5a64f3aa3..836a05439 100644
--- a/examples/39-assao/cs_assao_prepare_depths_and_normals.sc
+++ b/examples/39-assao/cs_assao_prepare_depths_and_normals.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_compute.sh"
diff --git a/examples/39-assao/cs_assao_prepare_depths_and_normals_half.sc b/examples/39-assao/cs_assao_prepare_depths_and_normals_half.sc
index 222230d61..279de7191 100644
--- a/examples/39-assao/cs_assao_prepare_depths_and_normals_half.sc
+++ b/examples/39-assao/cs_assao_prepare_depths_and_normals_half.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_compute.sh"
diff --git a/examples/39-assao/cs_assao_prepare_depths_half.sc b/examples/39-assao/cs_assao_prepare_depths_half.sc
index d6e72f478..83b913afc 100644
--- a/examples/39-assao/cs_assao_prepare_depths_half.sc
+++ b/examples/39-assao/cs_assao_prepare_depths_half.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_compute.sh"
diff --git a/examples/39-assao/cs_assao_smart_blur.sc b/examples/39-assao/cs_assao_smart_blur.sc
index 15d13ff2c..5ddf435fb 100644
--- a/examples/39-assao/cs_assao_smart_blur.sc
+++ b/examples/39-assao/cs_assao_smart_blur.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_compute.sh"
diff --git a/examples/39-assao/cs_assao_smart_blur_wide.sc b/examples/39-assao/cs_assao_smart_blur_wide.sc
index 7c030d677..e6752700b 100644
--- a/examples/39-assao/cs_assao_smart_blur_wide.sc
+++ b/examples/39-assao/cs_assao_smart_blur_wide.sc
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_compute.sh"
diff --git a/examples/39-assao/fs_assao_deferred_combine.sc b/examples/39-assao/fs_assao_deferred_combine.sc
index 6ca001eac..e12d58ee4 100644
--- a/examples/39-assao/fs_assao_deferred_combine.sc
+++ b/examples/39-assao/fs_assao_deferred_combine.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/39-assao/fs_assao_gbuffer.sc b/examples/39-assao/fs_assao_gbuffer.sc
index 941b9063a..13610f75e 100644
--- a/examples/39-assao/fs_assao_gbuffer.sc
+++ b/examples/39-assao/fs_assao_gbuffer.sc
@@ -2,7 +2,7 @@ $input v_normal, v_texcoord0
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/39-assao/makefile b/examples/39-assao/makefile
index a88986ef6..19c81e436 100644
--- a/examples/39-assao/makefile
+++ b/examples/39-assao/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/39-assao/vs_assao.sc b/examples/39-assao/vs_assao.sc
index 1d82c282e..a4eb7999c 100644
--- a/examples/39-assao/vs_assao.sc
+++ b/examples/39-assao/vs_assao.sc
@@ -3,7 +3,7 @@ $output v_texcoord0
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/39-assao/vs_assao_gbuffer.sc b/examples/39-assao/vs_assao_gbuffer.sc
index 2335a8101..e9662e614 100644
--- a/examples/39-assao/vs_assao_gbuffer.sc
+++ b/examples/39-assao/vs_assao_gbuffer.sc
@@ -3,7 +3,7 @@ $output v_normal, v_texcoord0
/*
* Copyright 2018 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
diff --git a/examples/40-svt/fs_vt_mip.sc b/examples/40-svt/fs_vt_mip.sc
index 1dcf7abd3..31f0b2b6f 100644
--- a/examples/40-svt/fs_vt_mip.sc
+++ b/examples/40-svt/fs_vt_mip.sc
@@ -1,8 +1,8 @@
$input v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
/*
diff --git a/examples/40-svt/fs_vt_unlit.sc b/examples/40-svt/fs_vt_unlit.sc
index 634ef1348..a079bc11d 100644
--- a/examples/40-svt/fs_vt_unlit.sc
+++ b/examples/40-svt/fs_vt_unlit.sc
@@ -1,8 +1,8 @@
$input v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
/*
diff --git a/examples/40-svt/makefile b/examples/40-svt/makefile
index a88986ef6..19c81e436 100644
--- a/examples/40-svt/makefile
+++ b/examples/40-svt/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/40-svt/svt.cpp b/examples/40-svt/svt.cpp
index 3222d7bf5..95ff7c9d5 100644
--- a/examples/40-svt/svt.cpp
+++ b/examples/40-svt/svt.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Ales Mlakar. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
/*
diff --git a/examples/40-svt/virtualtexture.sh b/examples/40-svt/virtualtexture.sh
index 55cfb0caf..32a3381c6 100644
--- a/examples/40-svt/virtualtexture.sh
+++ b/examples/40-svt/virtualtexture.sh
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
/*
diff --git a/examples/40-svt/vs_vt_generic.sc b/examples/40-svt/vs_vt_generic.sc
index d605451e8..1f39a8738 100644
--- a/examples/40-svt/vs_vt_generic.sc
+++ b/examples/40-svt/vs_vt_generic.sc
@@ -2,8 +2,8 @@ $input a_position, a_texcoord0
$output v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/40-svt/vt.cpp b/examples/40-svt/vt.cpp
index 1ff3e6efd..64f479ea5 100644
--- a/examples/40-svt/vt.cpp
+++ b/examples/40-svt/vt.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Ales Mlakar. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
/*
diff --git a/examples/40-svt/vt.h b/examples/40-svt/vt.h
index 6bab939e2..211cf153d 100644
--- a/examples/40-svt/vt.h
+++ b/examples/40-svt/vt.h
@@ -1,6 +1,6 @@
/*
* Copyright 2018 Ales Mlakar. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
/*
diff --git a/examples/41-tess/makefile b/examples/41-tess/makefile
index a88986ef6..19c81e436 100644
--- a/examples/41-tess/makefile
+++ b/examples/41-tess/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/41-tess/tess.cpp b/examples/41-tess/tess.cpp
index fe8cb44a2..a5b503327 100644
--- a/examples/41-tess/tess.cpp
+++ b/examples/41-tess/tess.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2019 Daniel Gavin. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
/*
diff --git a/examples/42-bunnylod/bunnylod.cpp b/examples/42-bunnylod/bunnylod.cpp
index 3324ac039..32c80be8a 100644
--- a/examples/42-bunnylod/bunnylod.cpp
+++ b/examples/42-bunnylod/bunnylod.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/42-bunnylod/fs_bunnylod.sc b/examples/42-bunnylod/fs_bunnylod.sc
index 64aba2d8a..3e8f850e3 100644
--- a/examples/42-bunnylod/fs_bunnylod.sc
+++ b/examples/42-bunnylod/fs_bunnylod.sc
@@ -1,8 +1,8 @@
$input v_world, v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/42-bunnylod/makefile b/examples/42-bunnylod/makefile
index a88986ef6..19c81e436 100644
--- a/examples/42-bunnylod/makefile
+++ b/examples/42-bunnylod/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/42-bunnylod/vs_bunnylod.sc b/examples/42-bunnylod/vs_bunnylod.sc
index 1279d3ee3..74209e352 100644
--- a/examples/42-bunnylod/vs_bunnylod.sc
+++ b/examples/42-bunnylod/vs_bunnylod.sc
@@ -2,8 +2,8 @@ $input a_position, a_normal
$output v_world, v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/43-denoise/denoise.cpp b/examples/43-denoise/denoise.cpp
index 6c8f0bda0..7ae3b5125 100644
--- a/examples/43-denoise/denoise.cpp
+++ b/examples/43-denoise/denoise.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2021 elven cache. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
/*
diff --git a/examples/43-denoise/fs_denoise_apply_lighting.sc b/examples/43-denoise/fs_denoise_apply_lighting.sc
index 3b0b4427a..118b4273f 100644
--- a/examples/43-denoise/fs_denoise_apply_lighting.sc
+++ b/examples/43-denoise/fs_denoise_apply_lighting.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/43-denoise/fs_denoise_copy.sc b/examples/43-denoise/fs_denoise_copy.sc
index 5cba19fea..aa835a07a 100644
--- a/examples/43-denoise/fs_denoise_copy.sc
+++ b/examples/43-denoise/fs_denoise_copy.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/43-denoise/fs_denoise_deferred_combine.sc b/examples/43-denoise/fs_denoise_deferred_combine.sc
index 51a39978d..3aeeaa4da 100644
--- a/examples/43-denoise/fs_denoise_deferred_combine.sc
+++ b/examples/43-denoise/fs_denoise_deferred_combine.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/43-denoise/fs_denoise_spatial_3x3.sc b/examples/43-denoise/fs_denoise_spatial_3x3.sc
index 1cf0075fe..fc89ece50 100644
--- a/examples/43-denoise/fs_denoise_spatial_3x3.sc
+++ b/examples/43-denoise/fs_denoise_spatial_3x3.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
// don't use 5x5 sample pattern for spatial denoise, use 3x3 instead
diff --git a/examples/43-denoise/fs_denoise_spatial_5x5.sc b/examples/43-denoise/fs_denoise_spatial_5x5.sc
index f9d36eb0a..3656f7ee2 100644
--- a/examples/43-denoise/fs_denoise_spatial_5x5.sc
+++ b/examples/43-denoise/fs_denoise_spatial_5x5.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
// use 5x5 sample pattern for spatial denoise
diff --git a/examples/43-denoise/fs_denoise_spatial_implementation.sh b/examples/43-denoise/fs_denoise_spatial_implementation.sh
index 8cfde98d9..e04a91bb9 100644
--- a/examples/43-denoise/fs_denoise_spatial_implementation.sh
+++ b/examples/43-denoise/fs_denoise_spatial_implementation.sh
@@ -1,6 +1,6 @@
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef FS_DENOISE_SPATIAL_IMPLEMENTATION_SH
diff --git a/examples/43-denoise/fs_denoise_temporal.sc b/examples/43-denoise/fs_denoise_temporal.sc
index dcd513bdf..63f2f22ac 100644
--- a/examples/43-denoise/fs_denoise_temporal.sc
+++ b/examples/43-denoise/fs_denoise_temporal.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/43-denoise/fs_denoise_txaa.sc b/examples/43-denoise/fs_denoise_txaa.sc
index 025f05543..d4cdc82ec 100644
--- a/examples/43-denoise/fs_denoise_txaa.sc
+++ b/examples/43-denoise/fs_denoise_txaa.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/43-denoise/makefile b/examples/43-denoise/makefile
index ef9203197..f9e23de2e 100644
--- a/examples/43-denoise/makefile
+++ b/examples/43-denoise/makefile
@@ -1,6 +1,6 @@
#
# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/43-denoise/normal_encoding.sh b/examples/43-denoise/normal_encoding.sh
index 98ff30f8b..231cdae01 100644
--- a/examples/43-denoise/normal_encoding.sh
+++ b/examples/43-denoise/normal_encoding.sh
@@ -1,6 +1,6 @@
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef NORMAL_ENCODING_SH
diff --git a/examples/43-denoise/parameters.sh b/examples/43-denoise/parameters.sh
index be248e744..11e5a44bc 100644
--- a/examples/43-denoise/parameters.sh
+++ b/examples/43-denoise/parameters.sh
@@ -1,6 +1,6 @@
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef PARAMETERS_SH
diff --git a/examples/43-denoise/shared_functions.sh b/examples/43-denoise/shared_functions.sh
index 5fd817856..21793ae36 100644
--- a/examples/43-denoise/shared_functions.sh
+++ b/examples/43-denoise/shared_functions.sh
@@ -1,6 +1,6 @@
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef SHARED_FUNCTIONS_SH
diff --git a/examples/43-denoise/vs_denoise_gbuffer.sc b/examples/43-denoise/vs_denoise_gbuffer.sc
index f7bd25427..bed6c25ca 100644
--- a/examples/43-denoise/vs_denoise_gbuffer.sc
+++ b/examples/43-denoise/vs_denoise_gbuffer.sc
@@ -3,7 +3,7 @@ $output v_normal, v_texcoord0, v_texcoord1, v_texcoord2, v_texcoord3
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/44-sss/fs_screen_space_shadows.sc b/examples/44-sss/fs_screen_space_shadows.sc
index 746006736..cf2a89834 100644
--- a/examples/44-sss/fs_screen_space_shadows.sc
+++ b/examples/44-sss/fs_screen_space_shadows.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/44-sss/fs_sss_deferred_combine.sc b/examples/44-sss/fs_sss_deferred_combine.sc
index a4df5a23a..fb724819c 100644
--- a/examples/44-sss/fs_sss_deferred_combine.sc
+++ b/examples/44-sss/fs_sss_deferred_combine.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/44-sss/fs_sss_linear_depth.sc b/examples/44-sss/fs_sss_linear_depth.sc
index c7ae391c8..08a31ccdc 100644
--- a/examples/44-sss/fs_sss_linear_depth.sc
+++ b/examples/44-sss/fs_sss_linear_depth.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/44-sss/makefile b/examples/44-sss/makefile
index ef9203197..f9e23de2e 100644
--- a/examples/44-sss/makefile
+++ b/examples/44-sss/makefile
@@ -1,6 +1,6 @@
#
# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/44-sss/normal_encoding.sh b/examples/44-sss/normal_encoding.sh
index 63ade43f8..c83b95753 100644
--- a/examples/44-sss/normal_encoding.sh
+++ b/examples/44-sss/normal_encoding.sh
@@ -1,6 +1,6 @@
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef NORMAL_ENCODING_SH
diff --git a/examples/44-sss/parameters.sh b/examples/44-sss/parameters.sh
index f35fd11f8..475404902 100644
--- a/examples/44-sss/parameters.sh
+++ b/examples/44-sss/parameters.sh
@@ -1,6 +1,6 @@
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef PARAMETERS_SH
diff --git a/examples/44-sss/screen_space_shadows.cpp b/examples/44-sss/screen_space_shadows.cpp
index 24bcbc5ad..961ea7d83 100644
--- a/examples/44-sss/screen_space_shadows.cpp
+++ b/examples/44-sss/screen_space_shadows.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
/*
diff --git a/examples/44-sss/vs_sss_gbuffer.sc b/examples/44-sss/vs_sss_gbuffer.sc
index 3cd3efef1..f42d1b78c 100644
--- a/examples/44-sss/vs_sss_gbuffer.sc
+++ b/examples/44-sss/vs_sss_gbuffer.sc
@@ -3,7 +3,7 @@ $output v_normal, v_texcoord0, v_texcoord1
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/45-bokeh/bokeh.cpp b/examples/45-bokeh/bokeh.cpp
index 307a39d8b..6a021d044 100644
--- a/examples/45-bokeh/bokeh.cpp
+++ b/examples/45-bokeh/bokeh.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
/*
diff --git a/examples/45-bokeh/bokeh_dof.sh b/examples/45-bokeh/bokeh_dof.sh
index 68d04749b..43c4885d1 100644
--- a/examples/45-bokeh/bokeh_dof.sh
+++ b/examples/45-bokeh/bokeh_dof.sh
@@ -1,6 +1,6 @@
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BOKEH_DOF_SH
diff --git a/examples/45-bokeh/fs_bokeh_copy.sc b/examples/45-bokeh/fs_bokeh_copy.sc
index 5cba19fea..aa835a07a 100644
--- a/examples/45-bokeh/fs_bokeh_copy.sc
+++ b/examples/45-bokeh/fs_bokeh_copy.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/45-bokeh/fs_bokeh_copy_linear_to_gamma.sc b/examples/45-bokeh/fs_bokeh_copy_linear_to_gamma.sc
index b94422785..aacc360d7 100644
--- a/examples/45-bokeh/fs_bokeh_copy_linear_to_gamma.sc
+++ b/examples/45-bokeh/fs_bokeh_copy_linear_to_gamma.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/45-bokeh/fs_bokeh_dof_combine.sc b/examples/45-bokeh/fs_bokeh_dof_combine.sc
index 28405613e..b60f75725 100644
--- a/examples/45-bokeh/fs_bokeh_dof_combine.sc
+++ b/examples/45-bokeh/fs_bokeh_dof_combine.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/45-bokeh/fs_bokeh_dof_debug.sc b/examples/45-bokeh/fs_bokeh_dof_debug.sc
index 717f127a4..6a85b359f 100644
--- a/examples/45-bokeh/fs_bokeh_dof_debug.sc
+++ b/examples/45-bokeh/fs_bokeh_dof_debug.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/45-bokeh/fs_bokeh_dof_downsample.sc b/examples/45-bokeh/fs_bokeh_dof_downsample.sc
index e48bfe896..8df24c24e 100644
--- a/examples/45-bokeh/fs_bokeh_dof_downsample.sc
+++ b/examples/45-bokeh/fs_bokeh_dof_downsample.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/45-bokeh/fs_bokeh_dof_second_pass.sc b/examples/45-bokeh/fs_bokeh_dof_second_pass.sc
index 630ab2603..43797b057 100644
--- a/examples/45-bokeh/fs_bokeh_dof_second_pass.sc
+++ b/examples/45-bokeh/fs_bokeh_dof_second_pass.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/45-bokeh/fs_bokeh_dof_single_pass.sc b/examples/45-bokeh/fs_bokeh_dof_single_pass.sc
index eed18fa20..b74940db4 100644
--- a/examples/45-bokeh/fs_bokeh_dof_single_pass.sc
+++ b/examples/45-bokeh/fs_bokeh_dof_single_pass.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/45-bokeh/fs_bokeh_forward.sc b/examples/45-bokeh/fs_bokeh_forward.sc
index 3e90a632a..2ad870f48 100644
--- a/examples/45-bokeh/fs_bokeh_forward.sc
+++ b/examples/45-bokeh/fs_bokeh_forward.sc
@@ -2,7 +2,7 @@ $input v_normal, v_texcoord0, v_texcoord1, v_texcoord2
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/45-bokeh/fs_bokeh_forward_grid.sc b/examples/45-bokeh/fs_bokeh_forward_grid.sc
index 77d167f81..db5fd56f9 100644
--- a/examples/45-bokeh/fs_bokeh_forward_grid.sc
+++ b/examples/45-bokeh/fs_bokeh_forward_grid.sc
@@ -2,7 +2,7 @@ $input v_normal, v_texcoord0, v_texcoord1, v_texcoord2
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/45-bokeh/fs_bokeh_linear_depth.sc b/examples/45-bokeh/fs_bokeh_linear_depth.sc
index c7ae391c8..08a31ccdc 100644
--- a/examples/45-bokeh/fs_bokeh_linear_depth.sc
+++ b/examples/45-bokeh/fs_bokeh_linear_depth.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/45-bokeh/makefile b/examples/45-bokeh/makefile
index ef9203197..f9e23de2e 100644
--- a/examples/45-bokeh/makefile
+++ b/examples/45-bokeh/makefile
@@ -1,6 +1,6 @@
#
# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/45-bokeh/parameters.sh b/examples/45-bokeh/parameters.sh
index ebeac7101..f8d72aced 100644
--- a/examples/45-bokeh/parameters.sh
+++ b/examples/45-bokeh/parameters.sh
@@ -1,6 +1,6 @@
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef PARAMETERS_SH
diff --git a/examples/45-bokeh/vs_bokeh_forward.sc b/examples/45-bokeh/vs_bokeh_forward.sc
index 11e4bf6ad..d7a482210 100644
--- a/examples/45-bokeh/vs_bokeh_forward.sc
+++ b/examples/45-bokeh/vs_bokeh_forward.sc
@@ -3,7 +3,7 @@ $output v_normal, v_texcoord0, v_texcoord1, v_texcoord2
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/46-fsr/app.cpp b/examples/46-fsr/app.cpp
index 4b0c2607a..b6a948790 100644
--- a/examples/46-fsr/app.cpp
+++ b/examples/46-fsr/app.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2021 Richard Schubert. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*
* AMD FidelityFX Super Resolution 1.0 (FSR)
* Based on https://github.com/GPUOpen-Effects/FidelityFX-FSR/blob/master/sample/
diff --git a/examples/46-fsr/cs_fsr.h b/examples/46-fsr/cs_fsr.h
index 26ccd2104..928ec47ed 100644
--- a/examples/46-fsr/cs_fsr.h
+++ b/examples/46-fsr/cs_fsr.h
@@ -1,6 +1,6 @@
/*
* Copyright 2021 Richard Schubert. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*
* AMD FidelityFX Super Resolution 1.0 (FSR)
* Port from https://github.com/GPUOpen-Effects/FidelityFX-FSR/blob/master/sample/src/VK/FSR_Pass.glsl
diff --git a/examples/46-fsr/fs_fsr_copy_linear_to_gamma.sc b/examples/46-fsr/fs_fsr_copy_linear_to_gamma.sc
index 6e6a3235b..2c9205e57 100644
--- a/examples/46-fsr/fs_fsr_copy_linear_to_gamma.sc
+++ b/examples/46-fsr/fs_fsr_copy_linear_to_gamma.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/46-fsr/fs_fsr_forward.sc b/examples/46-fsr/fs_fsr_forward.sc
index fe02a3208..d60110d89 100644
--- a/examples/46-fsr/fs_fsr_forward.sc
+++ b/examples/46-fsr/fs_fsr_forward.sc
@@ -2,7 +2,7 @@ $input v_normal, v_texcoord0, v_texcoord1, v_texcoord2
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/46-fsr/fs_fsr_forward_grid.sc b/examples/46-fsr/fs_fsr_forward_grid.sc
index 77d167f81..db5fd56f9 100644
--- a/examples/46-fsr/fs_fsr_forward_grid.sc
+++ b/examples/46-fsr/fs_fsr_forward_grid.sc
@@ -2,7 +2,7 @@ $input v_normal, v_texcoord0, v_texcoord1, v_texcoord2
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/46-fsr/fsr.cpp b/examples/46-fsr/fsr.cpp
index 0e0a629f6..a88f8c471 100644
--- a/examples/46-fsr/fsr.cpp
+++ b/examples/46-fsr/fsr.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2021 Richard Schubert. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*
* AMD FidelityFX Super Resolution 1.0 (FSR)
* Based on https://github.com/GPUOpen-Effects/FidelityFX-FSR/blob/master/sample/
diff --git a/examples/46-fsr/fsr.h b/examples/46-fsr/fsr.h
index 5aef5a2e2..63dd3c3fb 100644
--- a/examples/46-fsr/fsr.h
+++ b/examples/46-fsr/fsr.h
@@ -1,6 +1,6 @@
/*
* Copyright 2021 Richard Schubert. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*
* AMD FidelityFX Super Resolution 1.0 (FSR)
* Based on https://github.com/GPUOpen-Effects/FidelityFX-FSR/blob/master/sample/
diff --git a/examples/46-fsr/makefile b/examples/46-fsr/makefile
index a88986ef6..19c81e436 100644
--- a/examples/46-fsr/makefile
+++ b/examples/46-fsr/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
BGFX_DIR=../..
diff --git a/examples/46-fsr/vs_fsr_forward.sc b/examples/46-fsr/vs_fsr_forward.sc
index 1cb66c11b..fa221b01e 100644
--- a/examples/46-fsr/vs_fsr_forward.sc
+++ b/examples/46-fsr/vs_fsr_forward.sc
@@ -3,7 +3,7 @@ $output v_normal, v_texcoord0, v_texcoord1, v_texcoord2
/*
* Copyright 2021 elven cache. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common/common.sh"
diff --git a/examples/common/aviwriter.h b/examples/common/aviwriter.h
index a6bd392d8..32eb49f69 100644
--- a/examples/common/aviwriter.h
+++ b/examples/common/aviwriter.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef AVIWRITER_H_HEADER_GUARD
diff --git a/examples/common/bgfx_utils.cpp b/examples/common/bgfx_utils.cpp
index 07cb41a3a..3d2f318eb 100644
--- a/examples/common/bgfx_utils.cpp
+++ b/examples/common/bgfx_utils.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/common/bgfx_utils.h b/examples/common/bgfx_utils.h
index daf8f1ed6..7146293f3 100644
--- a/examples/common/bgfx_utils.h
+++ b/examples/common/bgfx_utils.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_UTILS_H_HEADER_GUARD
diff --git a/examples/common/camera.cpp b/examples/common/camera.cpp
index 4077a5498..2578d3277 100644
--- a/examples/common/camera.cpp
+++ b/examples/common/camera.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2013 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/camera.h b/examples/common/camera.h
index 5aa92326b..80a77d7fb 100644
--- a/examples/common/camera.h
+++ b/examples/common/camera.h
@@ -1,6 +1,6 @@
/*
* Copyright 2013 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef CAMERA_H_HEADER_GUARD
diff --git a/examples/common/common.h b/examples/common/common.h
index 6a80b6235..c15209bbc 100644
--- a/examples/common/common.h
+++ b/examples/common/common.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef COMMON_H_HEADER_GUARD
diff --git a/examples/common/common.sh b/examples/common/common.sh
index 037124563..fab6caf17 100644
--- a/examples/common/common.sh
+++ b/examples/common/common.sh
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/cube_atlas.cpp b/examples/common/cube_atlas.cpp
index b96ef8567..a5689e835 100644
--- a/examples/common/cube_atlas.cpp
+++ b/examples/common/cube_atlas.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2013 Jeremie Roy. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
diff --git a/examples/common/cube_atlas.h b/examples/common/cube_atlas.h
index c48b63eaa..d823e63f7 100644
--- a/examples/common/cube_atlas.h
+++ b/examples/common/cube_atlas.h
@@ -1,6 +1,6 @@
/*
* Copyright 2013 Jeremie Roy. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef CUBE_ATLAS_H_HEADER_GUARD
diff --git a/examples/common/debugdraw/debugdraw.cpp b/examples/common/debugdraw/debugdraw.cpp
index 5bdb1e7bd..eee5aef08 100644
--- a/examples/common/debugdraw/debugdraw.cpp
+++ b/examples/common/debugdraw/debugdraw.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/debugdraw/debugdraw.h b/examples/common/debugdraw/debugdraw.h
index 238ca7032..7770ed15e 100644
--- a/examples/common/debugdraw/debugdraw.h
+++ b/examples/common/debugdraw/debugdraw.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef DEBUGDRAW_H_HEADER_GUARD
diff --git a/examples/common/debugdraw/fs_debugdraw_fill.sc b/examples/common/debugdraw/fs_debugdraw_fill.sc
index 158240a8d..85f9bc7d0 100644
--- a/examples/common/debugdraw/fs_debugdraw_fill.sc
+++ b/examples/common/debugdraw/fs_debugdraw_fill.sc
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/debugdraw/fs_debugdraw_fill_lit.sc b/examples/common/debugdraw/fs_debugdraw_fill_lit.sc
index 5014ba4f5..0ed3fa609 100644
--- a/examples/common/debugdraw/fs_debugdraw_fill_lit.sc
+++ b/examples/common/debugdraw/fs_debugdraw_fill_lit.sc
@@ -1,8 +1,8 @@
$input v_view, v_world
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/debugdraw/fs_debugdraw_fill_texture.sc b/examples/common/debugdraw/fs_debugdraw_fill_texture.sc
index ff4db9d6b..67adb209f 100644
--- a/examples/common/debugdraw/fs_debugdraw_fill_texture.sc
+++ b/examples/common/debugdraw/fs_debugdraw_fill_texture.sc
@@ -1,8 +1,8 @@
$input v_texcoord0, v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/debugdraw/fs_debugdraw_lines.sc b/examples/common/debugdraw/fs_debugdraw_lines.sc
index 5685de7a0..1e1a40202 100644
--- a/examples/common/debugdraw/fs_debugdraw_lines.sc
+++ b/examples/common/debugdraw/fs_debugdraw_lines.sc
@@ -1,8 +1,8 @@
$input v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/debugdraw/fs_debugdraw_lines_stipple.sc b/examples/common/debugdraw/fs_debugdraw_lines_stipple.sc
index be0527f26..e48817214 100644
--- a/examples/common/debugdraw/fs_debugdraw_lines_stipple.sc
+++ b/examples/common/debugdraw/fs_debugdraw_lines_stipple.sc
@@ -1,8 +1,8 @@
$input v_color0, v_stipple
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/debugdraw/makefile b/examples/common/debugdraw/makefile
index 88ff40d28..554063e58 100644
--- a/examples/common/debugdraw/makefile
+++ b/examples/common/debugdraw/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
include ../../../scripts/shader-embeded.mk
diff --git a/examples/common/debugdraw/vs_debugdraw_fill.sc b/examples/common/debugdraw/vs_debugdraw_fill.sc
index 479b529c5..db5c3498f 100644
--- a/examples/common/debugdraw/vs_debugdraw_fill.sc
+++ b/examples/common/debugdraw/vs_debugdraw_fill.sc
@@ -1,8 +1,8 @@
$input a_position, a_indices
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/debugdraw/vs_debugdraw_fill_lit.sc b/examples/common/debugdraw/vs_debugdraw_fill_lit.sc
index d9c0b2c47..0964f5929 100644
--- a/examples/common/debugdraw/vs_debugdraw_fill_lit.sc
+++ b/examples/common/debugdraw/vs_debugdraw_fill_lit.sc
@@ -2,8 +2,8 @@ $input a_position, a_indices
$output v_view, v_world
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/debugdraw/vs_debugdraw_fill_lit_mesh.sc b/examples/common/debugdraw/vs_debugdraw_fill_lit_mesh.sc
index dbd016dd4..7083351a3 100644
--- a/examples/common/debugdraw/vs_debugdraw_fill_lit_mesh.sc
+++ b/examples/common/debugdraw/vs_debugdraw_fill_lit_mesh.sc
@@ -2,8 +2,8 @@ $input a_position
$output v_view, v_world
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/debugdraw/vs_debugdraw_fill_mesh.sc b/examples/common/debugdraw/vs_debugdraw_fill_mesh.sc
index a76a4d0c7..44901d090 100644
--- a/examples/common/debugdraw/vs_debugdraw_fill_mesh.sc
+++ b/examples/common/debugdraw/vs_debugdraw_fill_mesh.sc
@@ -1,8 +1,8 @@
$input a_position
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/debugdraw/vs_debugdraw_fill_texture.sc b/examples/common/debugdraw/vs_debugdraw_fill_texture.sc
index 53139ae38..073c7de47 100644
--- a/examples/common/debugdraw/vs_debugdraw_fill_texture.sc
+++ b/examples/common/debugdraw/vs_debugdraw_fill_texture.sc
@@ -2,8 +2,8 @@ $input a_position, a_texcoord0, a_color0
$output v_texcoord0, v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/debugdraw/vs_debugdraw_lines.sc b/examples/common/debugdraw/vs_debugdraw_lines.sc
index 1f50d3495..50143cf91 100644
--- a/examples/common/debugdraw/vs_debugdraw_lines.sc
+++ b/examples/common/debugdraw/vs_debugdraw_lines.sc
@@ -2,8 +2,8 @@ $input a_position, a_color0
$output v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/debugdraw/vs_debugdraw_lines_stipple.sc b/examples/common/debugdraw/vs_debugdraw_lines_stipple.sc
index b18b929b0..121d7120a 100644
--- a/examples/common/debugdraw/vs_debugdraw_lines_stipple.sc
+++ b/examples/common/debugdraw/vs_debugdraw_lines_stipple.sc
@@ -2,8 +2,8 @@ $input a_position, a_color0, a_texcoord0
$output v_color0, v_stipple
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/entry/cmd.cpp b/examples/common/entry/cmd.cpp
index 7ee916b4a..51742b8eb 100644
--- a/examples/common/entry/cmd.cpp
+++ b/examples/common/entry/cmd.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2010-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2010-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/entry/cmd.h b/examples/common/entry/cmd.h
index e68cedbb4..fe219424e 100644
--- a/examples/common/entry/cmd.h
+++ b/examples/common/entry/cmd.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2010-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2010-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef CMD_H_HEADER_GUARD
diff --git a/examples/common/entry/dbg.h b/examples/common/entry/dbg.h
index a5a1ea627..bafe4a514 100644
--- a/examples/common/entry/dbg.h
+++ b/examples/common/entry/dbg.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef DBG_H_HEADER_GUARD
diff --git a/examples/common/entry/dialog.cpp b/examples/common/entry/dialog.cpp
index 4041e23d1..76c84108a 100644
--- a/examples/common/entry/dialog.cpp
+++ b/examples/common/entry/dialog.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2010-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2010-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/entry/dialog.h b/examples/common/entry/dialog.h
index f639a7c04..8c13d2be6 100644
--- a/examples/common/entry/dialog.h
+++ b/examples/common/entry/dialog.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2010-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2010-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef DIALOG_H_HEADER_GUARD
diff --git a/examples/common/entry/dialog_darwin.mm b/examples/common/entry/dialog_darwin.mm
index a1c2599ce..c80a7a91d 100644
--- a/examples/common/entry/dialog_darwin.mm
+++ b/examples/common/entry/dialog_darwin.mm
@@ -1,6 +1,6 @@
/*
* Copyright 2019-2019 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "entry_p.h"
diff --git a/examples/common/entry/entry.cpp b/examples/common/entry/entry.cpp
index 852abe916..d4144a97f 100644
--- a/examples/common/entry/entry.cpp
+++ b/examples/common/entry/entry.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/entry/entry.h b/examples/common/entry/entry.h
index 0f0b51338..1025ae473 100644
--- a/examples/common/entry/entry.h
+++ b/examples/common/entry/entry.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef ENTRY_H_HEADER_GUARD
diff --git a/examples/common/entry/entry_android.cpp b/examples/common/entry/entry_android.cpp
index cd2baf904..9adfcee61 100644
--- a/examples/common/entry/entry_android.cpp
+++ b/examples/common/entry/entry_android.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "entry_p.h"
diff --git a/examples/common/entry/entry_glfw.cpp b/examples/common/entry/entry_glfw.cpp
index 78cc9a799..22ac7edc2 100644
--- a/examples/common/entry/entry_glfw.cpp
+++ b/examples/common/entry/entry_glfw.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "entry_p.h"
diff --git a/examples/common/entry/entry_html5.cpp b/examples/common/entry/entry_html5.cpp
index 557d8bcb6..96db49338 100644
--- a/examples/common/entry/entry_html5.cpp
+++ b/examples/common/entry/entry_html5.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "entry_p.h"
diff --git a/examples/common/entry/entry_ios.mm b/examples/common/entry/entry_ios.mm
index e0102facd..2575bdad5 100644
--- a/examples/common/entry/entry_ios.mm
+++ b/examples/common/entry/entry_ios.mm
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "entry_p.h"
diff --git a/examples/common/entry/entry_noop.cpp b/examples/common/entry/entry_noop.cpp
index e47ba9663..067fcb676 100644
--- a/examples/common/entry/entry_noop.cpp
+++ b/examples/common/entry/entry_noop.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "entry_p.h"
diff --git a/examples/common/entry/entry_osx.mm b/examples/common/entry/entry_osx.mm
index 8ff3d220b..0576337d4 100644
--- a/examples/common/entry/entry_osx.mm
+++ b/examples/common/entry/entry_osx.mm
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "entry_p.h"
diff --git a/examples/common/entry/entry_p.h b/examples/common/entry/entry_p.h
index 1c66045bd..59307c2f0 100644
--- a/examples/common/entry/entry_p.h
+++ b/examples/common/entry/entry_p.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef ENTRY_PRIVATE_H_HEADER_GUARD
diff --git a/examples/common/entry/entry_sdl.cpp b/examples/common/entry/entry_sdl.cpp
index 059894590..e037f1a6b 100644
--- a/examples/common/entry/entry_sdl.cpp
+++ b/examples/common/entry/entry_sdl.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "entry_p.h"
diff --git a/examples/common/entry/entry_windows.cpp b/examples/common/entry/entry_windows.cpp
index 62c4ebdfb..855a35c18 100644
--- a/examples/common/entry/entry_windows.cpp
+++ b/examples/common/entry/entry_windows.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "entry_p.h"
diff --git a/examples/common/entry/entry_winrt.cx b/examples/common/entry/entry_winrt.cx
index 25ddb3b0b..4c7f12776 100644
--- a/examples/common/entry/entry_winrt.cx
+++ b/examples/common/entry/entry_winrt.cx
@@ -1,6 +1,6 @@
/*
* Copyright 2011-2016 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "entry_p.h"
diff --git a/examples/common/entry/entry_x11.cpp b/examples/common/entry/entry_x11.cpp
index 7f1520b95..6876ac15d 100644
--- a/examples/common/entry/entry_x11.cpp
+++ b/examples/common/entry/entry_x11.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "entry_p.h"
diff --git a/examples/common/entry/input.cpp b/examples/common/entry/input.cpp
index d40453263..e060960b4 100644
--- a/examples/common/entry/input.cpp
+++ b/examples/common/entry/input.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2010-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2010-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/entry/input.h b/examples/common/entry/input.h
index f8f8340bc..d51a7f338 100644
--- a/examples/common/entry/input.h
+++ b/examples/common/entry/input.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2010-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2010-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef INPUT_H_HEADER_GUARD
diff --git a/examples/common/example-glue.cpp b/examples/common/example-glue.cpp
index c4b309c36..7ce6ff19f 100644
--- a/examples/common/example-glue.cpp
+++ b/examples/common/example-glue.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "imgui/imgui.h"
diff --git a/examples/common/font/font_manager.cpp b/examples/common/font/font_manager.cpp
index ea0e5a2e1..5416fc557 100644
--- a/examples/common/font/font_manager.cpp
+++ b/examples/common/font/font_manager.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2013 Jeremie Roy. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/font/font_manager.h b/examples/common/font/font_manager.h
index 417330414..7d431b63c 100644
--- a/examples/common/font/font_manager.h
+++ b/examples/common/font/font_manager.h
@@ -1,6 +1,6 @@
/*
* Copyright 2013 Jeremie Roy. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef FONT_MANAGER_H_HEADER_GUARD
diff --git a/examples/common/font/makefile b/examples/common/font/makefile
index 88ff40d28..554063e58 100644
--- a/examples/common/font/makefile
+++ b/examples/common/font/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
include ../../../scripts/shader-embeded.mk
diff --git a/examples/common/font/text_buffer_manager.cpp b/examples/common/font/text_buffer_manager.cpp
index 096d44345..77498cbf9 100644
--- a/examples/common/font/text_buffer_manager.cpp
+++ b/examples/common/font/text_buffer_manager.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2013 Jeremie Roy. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "../common.h"
diff --git a/examples/common/font/text_buffer_manager.h b/examples/common/font/text_buffer_manager.h
index 8448fe4cc..6e20080e3 100644
--- a/examples/common/font/text_buffer_manager.h
+++ b/examples/common/font/text_buffer_manager.h
@@ -1,6 +1,6 @@
/*
* Copyright 2013 Jeremie Roy. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef TEXT_BUFFER_MANAGER_H_HEADER_GUARD
diff --git a/examples/common/font/text_metrics.cpp b/examples/common/font/text_metrics.cpp
index f8be80004..ac71b79d5 100644
--- a/examples/common/font/text_metrics.cpp
+++ b/examples/common/font/text_metrics.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2013 Jeremie Roy. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "text_metrics.h"
diff --git a/examples/common/font/text_metrics.h b/examples/common/font/text_metrics.h
index e6a14543b..40203646b 100644
--- a/examples/common/font/text_metrics.h
+++ b/examples/common/font/text_metrics.h
@@ -1,6 +1,6 @@
/*
* Copyright 2013 Jeremie Roy. All rights reserved.
-* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef TEXT_METRICS_H_HEADER_GUARD
diff --git a/examples/common/imgui/fs_imgui_image.sc b/examples/common/imgui/fs_imgui_image.sc
index c7ee13d95..0355e1048 100644
--- a/examples/common/imgui/fs_imgui_image.sc
+++ b/examples/common/imgui/fs_imgui_image.sc
@@ -2,7 +2,7 @@ $input v_texcoord0
/*
* Copyright 2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/imgui/imgui.cpp b/examples/common/imgui/imgui.cpp
index 4cf1c4f10..a1b57aa66 100644
--- a/examples/common/imgui/imgui.cpp
+++ b/examples/common/imgui/imgui.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2014-2015 Daniel Collin. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/imgui/imgui.h b/examples/common/imgui/imgui.h
index c79d39f13..8be75db10 100644
--- a/examples/common/imgui/imgui.h
+++ b/examples/common/imgui/imgui.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef IMGUI_H_HEADER_GUARD
diff --git a/examples/common/imgui/makefile b/examples/common/imgui/makefile
index feac23d65..1979d957d 100644
--- a/examples/common/imgui/makefile
+++ b/examples/common/imgui/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
include ../../../scripts/shader-embeded.mk
diff --git a/examples/common/imgui/vs_imgui_image.sc b/examples/common/imgui/vs_imgui_image.sc
index f1ae37c10..0c658027f 100644
--- a/examples/common/imgui/vs_imgui_image.sc
+++ b/examples/common/imgui/vs_imgui_image.sc
@@ -3,7 +3,7 @@ $output v_texcoord0
/*
* Copyright 2014 Dario Manesku. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/nanovg/makefile b/examples/common/nanovg/makefile
index 88ff40d28..554063e58 100644
--- a/examples/common/nanovg/makefile
+++ b/examples/common/nanovg/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
include ../../../scripts/shader-embeded.mk
diff --git a/examples/common/nanovg/nanovg_bgfx.cpp b/examples/common/nanovg/nanovg_bgfx.cpp
index c93869584..ba551371d 100644
--- a/examples/common/nanovg/nanovg_bgfx.cpp
+++ b/examples/common/nanovg/nanovg_bgfx.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
//
diff --git a/examples/common/nanovg/nanovg_bgfx.h b/examples/common/nanovg/nanovg_bgfx.h
index 945c22856..ca7a4f202 100644
--- a/examples/common/nanovg/nanovg_bgfx.h
+++ b/examples/common/nanovg/nanovg_bgfx.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef NANOVG_BGFX_H_HEADER_GUARD
diff --git a/examples/common/packrect.h b/examples/common/packrect.h
index 26c610111..bdc4c1f83 100644
--- a/examples/common/packrect.h
+++ b/examples/common/packrect.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef RECTPACK_H_HEADER_GUARD
diff --git a/examples/common/ps/fs_particle.sc b/examples/common/ps/fs_particle.sc
index a36e3ed32..f8fc5f277 100644
--- a/examples/common/ps/fs_particle.sc
+++ b/examples/common/ps/fs_particle.sc
@@ -1,8 +1,8 @@
$input v_color0, v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/ps/makefile b/examples/common/ps/makefile
index 88ff40d28..554063e58 100644
--- a/examples/common/ps/makefile
+++ b/examples/common/ps/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
include ../../../scripts/shader-embeded.mk
diff --git a/examples/common/ps/particle_system.cpp b/examples/common/ps/particle_system.cpp
index 6d9bfeff9..721779f11 100644
--- a/examples/common/ps/particle_system.cpp
+++ b/examples/common/ps/particle_system.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/ps/particle_system.h b/examples/common/ps/particle_system.h
index 11fa4c876..38c124ed9 100644
--- a/examples/common/ps/particle_system.h
+++ b/examples/common/ps/particle_system.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef PARTICLE_SYSTEM_H_HEADER_GUARD
diff --git a/examples/common/ps/vs_particle.sc b/examples/common/ps/vs_particle.sc
index 07006b890..446ac1d97 100644
--- a/examples/common/ps/vs_particle.sc
+++ b/examples/common/ps/vs_particle.sc
@@ -2,8 +2,8 @@ $input a_position, a_color0, a_texcoord0
$output v_color0, v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/examples/common/shaderlib.sh b/examples/common/shaderlib.sh
index baa5aed9b..d4953d044 100644
--- a/examples/common/shaderlib.sh
+++ b/examples/common/shaderlib.sh
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef __SHADERLIB_SH__
diff --git a/examples/makefile b/examples/makefile
index 3d1912b40..674a76d93 100644
--- a/examples/makefile
+++ b/examples/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
all:
diff --git a/include/bgfx/bgfx.h b/include/bgfx/bgfx.h
index f1db8ba4a..113fee8cb 100644
--- a/include/bgfx/bgfx.h
+++ b/include/bgfx/bgfx.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
diff --git a/include/bgfx/c99/bgfx.h b/include/bgfx/c99/bgfx.h
index cc03336b2..3bef08ce8 100644
--- a/include/bgfx/c99/bgfx.h
+++ b/include/bgfx/c99/bgfx.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
/*
diff --git a/include/bgfx/defines.h b/include/bgfx/defines.h
index a3d822fb0..3d7dcc165 100644
--- a/include/bgfx/defines.h
+++ b/include/bgfx/defines.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
/*
diff --git a/include/bgfx/embedded_shader.h b/include/bgfx/embedded_shader.h
index fa5bc2074..ad29148b6 100644
--- a/include/bgfx/embedded_shader.h
+++ b/include/bgfx/embedded_shader.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
diff --git a/include/bgfx/platform.h b/include/bgfx/platform.h
index b6b6b44b8..26f398501 100644
--- a/include/bgfx/platform.h
+++ b/include/bgfx/platform.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
diff --git a/makefile b/makefile
index 667852910..f361b4307 100644
--- a/makefile
+++ b/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
UNAME := $(shell uname)
diff --git a/scripts/bgfx.lua b/scripts/bgfx.lua
index 3baac17f8..69f89958c 100644
--- a/scripts/bgfx.lua
+++ b/scripts/bgfx.lua
@@ -1,6 +1,6 @@
--
--- Copyright 2010-2021 Branimir Karadzic. All rights reserved.
--- License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+-- Copyright 2010-2022 Branimir Karadzic. All rights reserved.
+-- License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
--
function filesexist(_srcPath, _dstPath, _files)
diff --git a/scripts/bindings-bf.lua b/scripts/bindings-bf.lua
index ef0df58d7..393242d96 100644
--- a/scripts/bindings-bf.lua
+++ b/scripts/bindings-bf.lua
@@ -3,7 +3,7 @@ local idl = codegen.idl "bgfx.idl"
local beef_template = [[
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
diff --git a/scripts/bindings-cs.lua b/scripts/bindings-cs.lua
index a859ef6da..93ca57bc0 100644
--- a/scripts/bindings-cs.lua
+++ b/scripts/bindings-cs.lua
@@ -3,7 +3,7 @@ local idl = codegen.idl "bgfx.idl"
local csharp_template = [[
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
@@ -29,7 +29,7 @@ public static partial class bgfx
local csharp_dllname_template = [[
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
diff --git a/scripts/example-common.lua b/scripts/example-common.lua
index 62787d183..5a54c7f94 100644
--- a/scripts/example-common.lua
+++ b/scripts/example-common.lua
@@ -1,6 +1,6 @@
--
--- Copyright 2010-2021 Branimir Karadzic. All rights reserved.
--- License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+-- Copyright 2010-2022 Branimir Karadzic. All rights reserved.
+-- License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
--
project ("example-glue")
diff --git a/scripts/genie.lua b/scripts/genie.lua
index 93c55f98f..62e37061b 100644
--- a/scripts/genie.lua
+++ b/scripts/genie.lua
@@ -1,6 +1,6 @@
--
--- Copyright 2010-2021 Branimir Karadzic. All rights reserved.
--- License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+-- Copyright 2010-2022 Branimir Karadzic. All rights reserved.
+-- License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
--
MODULE_DIR = path.getabsolute("../")
@@ -103,8 +103,8 @@ newaction {
f:close()
io.output(path.join(MODULE_DIR, "src/version.h"))
io.write("/*\n")
- io.write(" * Copyright 2011-2021 Branimir Karadzic. All rights reserved.\n")
- io.write(" * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause\n")
+ io.write(" * Copyright 2011-2022 Branimir Karadzic. All rights reserved.\n")
+ io.write(" * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE\n")
io.write(" */\n")
io.write("\n")
io.write("/*\n")
diff --git a/scripts/geometryc.lua b/scripts/geometryc.lua
index 84dcb2a11..84b646705 100644
--- a/scripts/geometryc.lua
+++ b/scripts/geometryc.lua
@@ -1,6 +1,6 @@
--
--- Copyright 2010-2021 Branimir Karadzic. All rights reserved.
--- License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+-- Copyright 2010-2022 Branimir Karadzic. All rights reserved.
+-- License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
--
project "geometryc"
diff --git a/scripts/shader-embeded.mk b/scripts/shader-embeded.mk
index b9a01305d..f33223aff 100644
--- a/scripts/shader-embeded.mk
+++ b/scripts/shader-embeded.mk
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
THISDIR:=$(dir $(lastword $(MAKEFILE_LIST)))
diff --git a/scripts/shader.mk b/scripts/shader.mk
index 4de9ba268..202104829 100644
--- a/scripts/shader.mk
+++ b/scripts/shader.mk
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
THISDIR:=$(dir $(lastword $(MAKEFILE_LIST)))
diff --git a/scripts/shaderc.lua b/scripts/shaderc.lua
index 75841ccfa..946560c88 100644
--- a/scripts/shaderc.lua
+++ b/scripts/shaderc.lua
@@ -1,6 +1,6 @@
--
--- Copyright 2010-2021 Branimir Karadzic. All rights reserved.
--- License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+-- Copyright 2010-2022 Branimir Karadzic. All rights reserved.
+-- License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
--
group "tools/shaderc"
diff --git a/scripts/temp.bgfx.h b/scripts/temp.bgfx.h
index c7dff3f8e..47161c771 100644
--- a/scripts/temp.bgfx.h
+++ b/scripts/temp.bgfx.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
/*
diff --git a/scripts/temp.bgfx.idl.inl b/scripts/temp.bgfx.idl.inl
index 02dc48b33..66e62cb0a 100644
--- a/scripts/temp.bgfx.idl.inl
+++ b/scripts/temp.bgfx.idl.inl
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
/*
diff --git a/scripts/temp.defines.h b/scripts/temp.defines.h
index 9f8ffe49e..6d462d645 100644
--- a/scripts/temp.defines.h
+++ b/scripts/temp.defines.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
/*
diff --git a/scripts/texturec.lua b/scripts/texturec.lua
index 577b5c62c..e0b240755 100644
--- a/scripts/texturec.lua
+++ b/scripts/texturec.lua
@@ -1,6 +1,6 @@
--
--- Copyright 2010-2021 Branimir Karadzic. All rights reserved.
--- License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+-- Copyright 2010-2022 Branimir Karadzic. All rights reserved.
+-- License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
--
project "texturec"
diff --git a/scripts/tools.mk b/scripts/tools.mk
index cd9f325d3..e0dd882e2 100644
--- a/scripts/tools.mk
+++ b/scripts/tools.mk
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
SILENT?=@
diff --git a/src/amalgamated.cpp b/src/amalgamated.cpp
index 60c8b1f21..aa88b1c48 100644
--- a/src/amalgamated.cpp
+++ b/src/amalgamated.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx.cpp"
diff --git a/src/amalgamated.mm b/src/amalgamated.mm
index 6b68f2e24..e3746e68d 100644
--- a/src/amalgamated.mm
+++ b/src/amalgamated.mm
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "amalgamated.cpp"
diff --git a/src/bgfx.cpp b/src/bgfx.cpp
index c8a35b653..6c3535640 100644
--- a/src/bgfx.cpp
+++ b/src/bgfx.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/src/bgfx.idl.inl b/src/bgfx.idl.inl
index 572f8feba..b539a8846 100644
--- a/src/bgfx.idl.inl
+++ b/src/bgfx.idl.inl
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
/*
diff --git a/src/bgfx_compute.sh b/src/bgfx_compute.sh
index d05b23280..59dda85e0 100644
--- a/src/bgfx_compute.sh
+++ b/src/bgfx_compute.sh
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_COMPUTE_H_HEADER_GUARD
diff --git a/src/bgfx_p.h b/src/bgfx_p.h
index 80274b904..c5c06fe99 100644
--- a/src/bgfx_p.h
+++ b/src/bgfx_p.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_P_H_HEADER_GUARD
diff --git a/src/bgfx_shader.sh b/src/bgfx_shader.sh
index 45c59775b..b28ec90e6 100644
--- a/src/bgfx_shader.sh
+++ b/src/bgfx_shader.sh
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_SHADER_H_HEADER_GUARD
diff --git a/src/charset.h b/src/charset.h
index 6316b0c2f..b76f23d15 100644
--- a/src/charset.h
+++ b/src/charset.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
static const uint8_t vga8x8[256*8] =
diff --git a/src/config.h b/src/config.h
index be901d4c4..b8ff7379f 100644
--- a/src/config.h
+++ b/src/config.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_CONFIG_H_HEADER_GUARD
diff --git a/src/debug_renderdoc.cpp b/src/debug_renderdoc.cpp
index 52343e9f2..1671014ff 100644
--- a/src/debug_renderdoc.cpp
+++ b/src/debug_renderdoc.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
diff --git a/src/debug_renderdoc.h b/src/debug_renderdoc.h
index 20ee198ec..0ec59309f 100644
--- a/src/debug_renderdoc.h
+++ b/src/debug_renderdoc.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_RENDERDOC_H_HEADER_GUARD
diff --git a/src/dxgi.cpp b/src/dxgi.cpp
index 767f89e42..5708090ed 100644
--- a/src/dxgi.cpp
+++ b/src/dxgi.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
diff --git a/src/dxgi.h b/src/dxgi.h
index 43671bf17..cecc32aad 100644
--- a/src/dxgi.h
+++ b/src/dxgi.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_DXGI_H_HEADER_GUARD
diff --git a/src/emscripten.h b/src/emscripten.h
index 9e037845d..1e1e0aea0 100644
--- a/src/emscripten.h
+++ b/src/emscripten.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_EMSCRIPTEN_H_HEADER_GUARD
diff --git a/src/fs_clear0.sc b/src/fs_clear0.sc
index 96b1c2e90..29bb11271 100644
--- a/src/fs_clear0.sc
+++ b/src/fs_clear0.sc
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_shader.sh"
diff --git a/src/fs_clear1.sc b/src/fs_clear1.sc
index 1a635dcf6..29b965b3f 100644
--- a/src/fs_clear1.sc
+++ b/src/fs_clear1.sc
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_shader.sh"
diff --git a/src/fs_clear2.sc b/src/fs_clear2.sc
index e58bba56c..cbc9837ee 100644
--- a/src/fs_clear2.sc
+++ b/src/fs_clear2.sc
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_shader.sh"
diff --git a/src/fs_clear3.sc b/src/fs_clear3.sc
index d2e548f20..824480226 100644
--- a/src/fs_clear3.sc
+++ b/src/fs_clear3.sc
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_shader.sh"
diff --git a/src/fs_clear4.sc b/src/fs_clear4.sc
index 54b27a72e..f8569702d 100644
--- a/src/fs_clear4.sc
+++ b/src/fs_clear4.sc
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_shader.sh"
diff --git a/src/fs_clear5.sc b/src/fs_clear5.sc
index c3a4beb53..84784fbfb 100644
--- a/src/fs_clear5.sc
+++ b/src/fs_clear5.sc
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_shader.sh"
diff --git a/src/fs_clear6.sc b/src/fs_clear6.sc
index 000eae82e..953eb2b76 100644
--- a/src/fs_clear6.sc
+++ b/src/fs_clear6.sc
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_shader.sh"
diff --git a/src/fs_clear7.sc b/src/fs_clear7.sc
index faf2e3fc0..3fca086f2 100644
--- a/src/fs_clear7.sc
+++ b/src/fs_clear7.sc
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_shader.sh"
diff --git a/src/fs_debugfont.sc b/src/fs_debugfont.sc
index 37c3405db..d641b90d9 100644
--- a/src/fs_debugfont.sc
+++ b/src/fs_debugfont.sc
@@ -1,8 +1,8 @@
$input v_color0, v_color1, v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_shader.sh"
diff --git a/src/glcontext_eagl.h b/src/glcontext_eagl.h
index c48a27b22..009653c92 100644
--- a/src/glcontext_eagl.h
+++ b/src/glcontext_eagl.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_GLCONTEXT_EAGL_H_HEADER_GUARD
diff --git a/src/glcontext_eagl.mm b/src/glcontext_eagl.mm
index 957cd8f17..d972c2385 100644
--- a/src/glcontext_eagl.mm
+++ b/src/glcontext_eagl.mm
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
diff --git a/src/glcontext_egl.cpp b/src/glcontext_egl.cpp
index 547bc020a..ad6b4719a 100644
--- a/src/glcontext_egl.cpp
+++ b/src/glcontext_egl.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
diff --git a/src/glcontext_egl.h b/src/glcontext_egl.h
index 85c7a987a..2d4e1613f 100644
--- a/src/glcontext_egl.h
+++ b/src/glcontext_egl.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_GLCONTEXT_EGL_H_HEADER_GUARD
diff --git a/src/glcontext_glx.cpp b/src/glcontext_glx.cpp
index c78dd6c71..4a13d0a82 100644
--- a/src/glcontext_glx.cpp
+++ b/src/glcontext_glx.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
diff --git a/src/glcontext_glx.h b/src/glcontext_glx.h
index f419073b5..2517fb498 100644
--- a/src/glcontext_glx.h
+++ b/src/glcontext_glx.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_GLCONTEXT_GLX_H_HEADER_GUARD
diff --git a/src/glcontext_html5.cpp b/src/glcontext_html5.cpp
index c7e383d49..2e8d939dc 100644
--- a/src/glcontext_html5.cpp
+++ b/src/glcontext_html5.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
diff --git a/src/glcontext_html5.h b/src/glcontext_html5.h
index 3b45223e1..c78a73c1c 100644
--- a/src/glcontext_html5.h
+++ b/src/glcontext_html5.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_GLCONTEXT_HTML5_H_HEADER_GUARD
diff --git a/src/glcontext_nsgl.h b/src/glcontext_nsgl.h
index 99f616b0e..da1afdfe1 100644
--- a/src/glcontext_nsgl.h
+++ b/src/glcontext_nsgl.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_GLCONTEXT_NSGL_H_HEADER_GUARD
diff --git a/src/glcontext_nsgl.mm b/src/glcontext_nsgl.mm
index a9c74368b..47f350a92 100644
--- a/src/glcontext_nsgl.mm
+++ b/src/glcontext_nsgl.mm
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
diff --git a/src/glcontext_wgl.cpp b/src/glcontext_wgl.cpp
index 6c2d48533..85494e810 100644
--- a/src/glcontext_wgl.cpp
+++ b/src/glcontext_wgl.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
diff --git a/src/glcontext_wgl.h b/src/glcontext_wgl.h
index 8ac646031..f0d02cfd8 100644
--- a/src/glcontext_wgl.h
+++ b/src/glcontext_wgl.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_GLCONTEXT_WGL_H_HEADER_GUARD
diff --git a/src/glimports.h b/src/glimports.h
index ef2a28df9..e3bbc4404 100644
--- a/src/glimports.h
+++ b/src/glimports.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#if !defined(GL_IMPORT) && !defined(GL_EXTENSION)
diff --git a/src/makefile b/src/makefile
index 336ba29fd..086dfe637 100644
--- a/src/makefile
+++ b/src/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
THISDIR:=$(dir $(lastword $(MAKEFILE_LIST)))
diff --git a/src/nvapi.cpp b/src/nvapi.cpp
index 4613179d7..0103b0c0c 100644
--- a/src/nvapi.cpp
+++ b/src/nvapi.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
diff --git a/src/nvapi.h b/src/nvapi.h
index b3be212da..0f03f4aa8 100644
--- a/src/nvapi.h
+++ b/src/nvapi.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_NVAPI_H_HEADER_GUARD
diff --git a/src/renderer.h b/src/renderer.h
index d31a6b2aa..7658e3c4d 100644
--- a/src/renderer.h
+++ b/src/renderer.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_RENDERER_H_HEADER_GUARD
diff --git a/src/renderer_agc.cpp b/src/renderer_agc.cpp
index f1e41f98e..f393b3b44 100644
--- a/src/renderer_agc.cpp
+++ b/src/renderer_agc.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
diff --git a/src/renderer_d3d.h b/src/renderer_d3d.h
index c534eb681..b2733ee33 100644
--- a/src/renderer_d3d.h
+++ b/src/renderer_d3d.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_RENDERER_D3D_H_HEADER_GUARD
diff --git a/src/renderer_d3d11.cpp b/src/renderer_d3d11.cpp
index e8b55bbcd..54148fe5e 100644
--- a/src/renderer_d3d11.cpp
+++ b/src/renderer_d3d11.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
diff --git a/src/renderer_d3d11.h b/src/renderer_d3d11.h
index 0d75dfeb2..4d5545661 100644
--- a/src/renderer_d3d11.h
+++ b/src/renderer_d3d11.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_RENDERER_D3D11_H_HEADER_GUARD
diff --git a/src/renderer_d3d12.cpp b/src/renderer_d3d12.cpp
index 1086bb314..bcfd2d629 100644
--- a/src/renderer_d3d12.cpp
+++ b/src/renderer_d3d12.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
diff --git a/src/renderer_d3d12.h b/src/renderer_d3d12.h
index b9f92c913..c77b8f678 100644
--- a/src/renderer_d3d12.h
+++ b/src/renderer_d3d12.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_RENDERER_D3D12_H_HEADER_GUARD
diff --git a/src/renderer_d3d9.cpp b/src/renderer_d3d9.cpp
index 356cab472..742014a7c 100644
--- a/src/renderer_d3d9.cpp
+++ b/src/renderer_d3d9.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
diff --git a/src/renderer_d3d9.h b/src/renderer_d3d9.h
index d61634d87..0e00e0a2b 100644
--- a/src/renderer_d3d9.h
+++ b/src/renderer_d3d9.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_RENDERER_D3D9_H_HEADER_GUARD
diff --git a/src/renderer_gl.cpp b/src/renderer_gl.cpp
index 469b9b5a0..ca3f60557 100644
--- a/src/renderer_gl.cpp
+++ b/src/renderer_gl.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
diff --git a/src/renderer_gl.h b/src/renderer_gl.h
index 83b271201..d9f7fbbe6 100644
--- a/src/renderer_gl.h
+++ b/src/renderer_gl.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_RENDERER_GL_H_HEADER_GUARD
diff --git a/src/renderer_gnm.cpp b/src/renderer_gnm.cpp
index 333bbb464..82f76593b 100644
--- a/src/renderer_gnm.cpp
+++ b/src/renderer_gnm.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
diff --git a/src/renderer_mtl.h b/src/renderer_mtl.h
index 4cfd73217..71a7d7833 100644
--- a/src/renderer_mtl.h
+++ b/src/renderer_mtl.h
@@ -1,6 +1,6 @@
/*
* Copyright 2011-2015 Attila Kocsis, Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_RENDERER_METAL_H_HEADER_GUARD
diff --git a/src/renderer_mtl.mm b/src/renderer_mtl.mm
index 7f86e18dc..3acfa9745 100644
--- a/src/renderer_mtl.mm
+++ b/src/renderer_mtl.mm
@@ -1,6 +1,6 @@
/*
* Copyright 2011-2016 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
diff --git a/src/renderer_noop.cpp b/src/renderer_noop.cpp
index d366adb48..634701714 100644
--- a/src/renderer_noop.cpp
+++ b/src/renderer_noop.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
diff --git a/src/renderer_nvn.cpp b/src/renderer_nvn.cpp
index 799264a2c..fedfc6c4e 100644
--- a/src/renderer_nvn.cpp
+++ b/src/renderer_nvn.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
diff --git a/src/renderer_vk.cpp b/src/renderer_vk.cpp
index 81c026872..90b01d16e 100644
--- a/src/renderer_vk.cpp
+++ b/src/renderer_vk.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
diff --git a/src/renderer_vk.h b/src/renderer_vk.h
index 3e1479903..a65da97eb 100644
--- a/src/renderer_vk.h
+++ b/src/renderer_vk.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_RENDERER_VK_H_HEADER_GUARD
diff --git a/src/renderer_webgpu.cpp b/src/renderer_webgpu.cpp
index 66f9d024f..8bf831b96 100644
--- a/src/renderer_webgpu.cpp
+++ b/src/renderer_webgpu.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2011-2019 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
diff --git a/src/renderer_webgpu.h b/src/renderer_webgpu.h
index 45590d7b0..8f51bf852 100644
--- a/src/renderer_webgpu.h
+++ b/src/renderer_webgpu.h
@@ -1,6 +1,6 @@
/*
* Copyright 2011-2019 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_RENDERER_WEBGPU_H_HEADER_GUARD
diff --git a/src/shader.cpp b/src/shader.cpp
index 6254fa676..2629569e3 100644
--- a/src/shader.cpp
+++ b/src/shader.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
diff --git a/src/shader.h b/src/shader.h
index c79339c81..5ddc1cdbe 100644
--- a/src/shader.h
+++ b/src/shader.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_SHADER_H
diff --git a/src/shader_dx9bc.cpp b/src/shader_dx9bc.cpp
index 1ce0084e2..9f12efdc0 100644
--- a/src/shader_dx9bc.cpp
+++ b/src/shader_dx9bc.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
diff --git a/src/shader_dx9bc.h b/src/shader_dx9bc.h
index 639591386..dec16858a 100644
--- a/src/shader_dx9bc.h
+++ b/src/shader_dx9bc.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_SHADER_DX9BC_H
diff --git a/src/shader_dxbc.cpp b/src/shader_dxbc.cpp
index 3c0b2b216..accf4e310 100644
--- a/src/shader_dxbc.cpp
+++ b/src/shader_dxbc.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
diff --git a/src/shader_dxbc.h b/src/shader_dxbc.h
index 54cf1b0c4..5ae1eacad 100644
--- a/src/shader_dxbc.h
+++ b/src/shader_dxbc.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_SHADER_DXBC_H
diff --git a/src/shader_spirv.cpp b/src/shader_spirv.cpp
index 93edff334..739256546 100644
--- a/src/shader_spirv.cpp
+++ b/src/shader_spirv.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_p.h"
diff --git a/src/shader_spirv.h b/src/shader_spirv.h
index f823ca069..0ab2c4ff3 100644
--- a/src/shader_spirv.h
+++ b/src/shader_spirv.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_SHADER_SPIRV_H
diff --git a/src/topology.cpp b/src/topology.cpp
index c6c45e8de..0457ab624 100644
--- a/src/topology.cpp
+++ b/src/topology.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/src/topology.h b/src/topology.h
index 4eac80362..e26f3bb1e 100644
--- a/src/topology.h
+++ b/src/topology.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_TOPOLOGY_H_HEADER_GUARD
diff --git a/src/version.h b/src/version.h
index 2b7db1dd0..1a8a66018 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
/*
diff --git a/src/vertexlayout.cpp b/src/vertexlayout.cpp
index 531da58f8..ba88fc134 100644
--- a/src/vertexlayout.cpp
+++ b/src/vertexlayout.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/src/vertexlayout.h b/src/vertexlayout.h
index 19753aa64..83887bd5c 100644
--- a/src/vertexlayout.h
+++ b/src/vertexlayout.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef BGFX_VERTEXDECL_H_HEADER_GUARD
diff --git a/src/vs_clear.sc b/src/vs_clear.sc
index 7c2668b27..809f32be0 100644
--- a/src/vs_clear.sc
+++ b/src/vs_clear.sc
@@ -1,8 +1,8 @@
$input a_position
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_shader.sh"
diff --git a/src/vs_debugfont.sc b/src/vs_debugfont.sc
index 16eba5c31..c344b7161 100644
--- a/src/vs_debugfont.sc
+++ b/src/vs_debugfont.sc
@@ -2,8 +2,8 @@ $input a_position, a_color0, a_color1, a_texcoord0
$output v_color0, v_color1, v_texcoord0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "bgfx_shader.sh"
diff --git a/tools/geometryc/geometryc.cpp b/tools/geometryc/geometryc.cpp
index 3a5748791..a037283fa 100644
--- a/tools/geometryc/geometryc.cpp
+++ b/tools/geometryc/geometryc.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
@@ -930,8 +930,8 @@ void help(const char* _error = NULL)
bx::printf(
"geometryc, bgfx geometry compiler tool, version %d.%d.%d.\n"
- "Copyright 2011-2021 Branimir Karadzic. All rights reserved.\n"
- "License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause\n\n"
+ "Copyright 2011-2022 Branimir Karadzic. All rights reserved.\n"
+ "License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE\n\n"
, BGFX_GEOMETRYC_VERSION_MAJOR
, BGFX_GEOMETRYC_VERSION_MINOR
, BGFX_API_VERSION
diff --git a/tools/geometryv/fs_mesh.sc b/tools/geometryv/fs_mesh.sc
index 67f5d248d..de56ba5c5 100644
--- a/tools/geometryv/fs_mesh.sc
+++ b/tools/geometryv/fs_mesh.sc
@@ -2,7 +2,7 @@ $input v_normal
/*
* Copyright 2019 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/tools/geometryv/geometryv.cpp b/tools/geometryv/geometryv.cpp
index f38a0e422..261d44780 100644
--- a/tools/geometryv/geometryv.cpp
+++ b/tools/geometryv/geometryv.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2019-2019 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
@@ -659,7 +659,7 @@ void help(const char* _error = NULL)
bx::printf(
"geometryv, bgfx geometry viewer tool, version %d.%d.%d.\n"
"Copyright 2019-2019 Attila Kocsis. All rights reserved.\n"
- "License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause\n\n"
+ "License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE\n\n"
, BGFX_GEOMETRYV_VERSION_MAJOR
, BGFX_GEOMETRYV_VERSION_MINOR
, BGFX_API_VERSION
@@ -1127,7 +1127,7 @@ int _main_(int _argc, char** _argv)
ImGui::Text(
"geometryv, bgfx geometry viewer tool " ICON_KI_WRENCH ", version %d.%d.%d.\n"
"Copyright 2019-2019 Attila Kocsis. All rights reserved.\n"
- "License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause\n"
+ "License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE\n"
, BGFX_GEOMETRYV_VERSION_MAJOR
, BGFX_GEOMETRYV_VERSION_MINOR
, BGFX_API_VERSION
diff --git a/tools/geometryv/makefile b/tools/geometryv/makefile
index 6eb416e17..d1033a73c 100644
--- a/tools/geometryv/makefile
+++ b/tools/geometryv/makefile
@@ -1,6 +1,6 @@
#
# Copyright 2019-2019 Attila Kocsis. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
include ../../scripts/shader-embeded.mk
diff --git a/tools/geometryv/vs_mesh.sc b/tools/geometryv/vs_mesh.sc
index 6049de743..dba9b5321 100644
--- a/tools/geometryv/vs_mesh.sc
+++ b/tools/geometryv/vs_mesh.sc
@@ -3,7 +3,7 @@ $output v_normal
/*
* Copyright 2019-2019 Attila Kocsis. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/tools/shaderc/shaderc.cpp b/tools/shaderc/shaderc.cpp
index 34cc8e097..bc670d4c7 100644
--- a/tools/shaderc/shaderc.cpp
+++ b/tools/shaderc/shaderc.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "shaderc.h"
@@ -990,8 +990,8 @@ namespace bgfx
bx::printf(
"shaderc, bgfx shader compiler tool, version %d.%d.%d.\n"
- "Copyright 2011-2021 Branimir Karadzic. All rights reserved.\n"
- "License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause\n\n"
+ "Copyright 2011-2022 Branimir Karadzic. All rights reserved.\n"
+ "License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE\n\n"
, BGFX_SHADERC_VERSION_MAJOR
, BGFX_SHADERC_VERSION_MINOR
, BGFX_API_VERSION
diff --git a/tools/shaderc/shaderc.h b/tools/shaderc/shaderc.h
index 18afd15d8..0da24d24b 100644
--- a/tools/shaderc/shaderc.h
+++ b/tools/shaderc/shaderc.h
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef SHADERC_H_HEADER_GUARD
diff --git a/tools/shaderc/shaderc_glsl.cpp b/tools/shaderc/shaderc_glsl.cpp
index b130ae75c..9bb46202f 100644
--- a/tools/shaderc/shaderc_glsl.cpp
+++ b/tools/shaderc/shaderc_glsl.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "shaderc.h"
diff --git a/tools/shaderc/shaderc_hlsl.cpp b/tools/shaderc/shaderc_hlsl.cpp
index d2fba2fbd..7671c03f3 100644
--- a/tools/shaderc/shaderc_hlsl.cpp
+++ b/tools/shaderc/shaderc_hlsl.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "shaderc.h"
diff --git a/tools/shaderc/shaderc_metal.cpp b/tools/shaderc/shaderc_metal.cpp
index 6505a67ff..b98b0a595 100644
--- a/tools/shaderc/shaderc_metal.cpp
+++ b/tools/shaderc/shaderc_metal.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "shaderc.h"
diff --git a/tools/shaderc/shaderc_pssl.cpp b/tools/shaderc/shaderc_pssl.cpp
index ba307bb19..20e45bb21 100644
--- a/tools/shaderc/shaderc_pssl.cpp
+++ b/tools/shaderc/shaderc_pssl.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "shaderc.h"
diff --git a/tools/shaderc/shaderc_spirv.cpp b/tools/shaderc/shaderc_spirv.cpp
index ce3fd230b..e305c0f15 100644
--- a/tools/shaderc/shaderc_spirv.cpp
+++ b/tools/shaderc/shaderc_spirv.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "shaderc.h"
diff --git a/tools/texturev/common.sh b/tools/texturev/common.sh
index cd8cb9f96..7f91a6efd 100644
--- a/tools/texturev/common.sh
+++ b/tools/texturev/common.sh
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/tools/texturev/fs_texture.sc b/tools/texturev/fs_texture.sc
index f8f3d4c41..c4211343f 100644
--- a/tools/texturev/fs_texture.sc
+++ b/tools/texturev/fs_texture.sc
@@ -1,8 +1,8 @@
$input v_texcoord0, v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.sh"
diff --git a/tools/texturev/fs_texture_3d.sc b/tools/texturev/fs_texture_3d.sc
index f382c187b..ae959c492 100644
--- a/tools/texturev/fs_texture_3d.sc
+++ b/tools/texturev/fs_texture_3d.sc
@@ -1,8 +1,8 @@
$input v_texcoord0, v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.sh"
diff --git a/tools/texturev/fs_texture_array.sc b/tools/texturev/fs_texture_array.sc
index ead0039d8..94f2be60f 100644
--- a/tools/texturev/fs_texture_array.sc
+++ b/tools/texturev/fs_texture_array.sc
@@ -1,8 +1,8 @@
$input v_texcoord0, v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.sh"
diff --git a/tools/texturev/fs_texture_cube.sc b/tools/texturev/fs_texture_cube.sc
index f4b08ce42..8bd4fddbe 100644
--- a/tools/texturev/fs_texture_cube.sc
+++ b/tools/texturev/fs_texture_cube.sc
@@ -1,8 +1,8 @@
$input v_texcoord0, v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.sh"
diff --git a/tools/texturev/fs_texture_cube2.sc b/tools/texturev/fs_texture_cube2.sc
index da5633291..6623595fa 100644
--- a/tools/texturev/fs_texture_cube2.sc
+++ b/tools/texturev/fs_texture_cube2.sc
@@ -1,8 +1,8 @@
$input v_texcoord0, v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.sh"
diff --git a/tools/texturev/fs_texture_msdf.sc b/tools/texturev/fs_texture_msdf.sc
index 145834d4d..4adbe3d19 100644
--- a/tools/texturev/fs_texture_msdf.sc
+++ b/tools/texturev/fs_texture_msdf.sc
@@ -1,8 +1,8 @@
$input v_texcoord0, v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.sh"
diff --git a/tools/texturev/fs_texture_sdf.sc b/tools/texturev/fs_texture_sdf.sc
index d8444060b..4f5aff3bd 100644
--- a/tools/texturev/fs_texture_sdf.sc
+++ b/tools/texturev/fs_texture_sdf.sc
@@ -1,8 +1,8 @@
$input v_texcoord0, v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.sh"
diff --git a/tools/texturev/makefile b/tools/texturev/makefile
index ee5a9f5a7..cf80177ea 100644
--- a/tools/texturev/makefile
+++ b/tools/texturev/makefile
@@ -1,6 +1,6 @@
#
-# Copyright 2011-2021 Branimir Karadzic. All rights reserved.
-# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+# Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+# License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
#
include ../../scripts/shader-embeded.mk
diff --git a/tools/texturev/texturev.cpp b/tools/texturev/texturev.cpp
index 12e257b6a..c34ac825a 100644
--- a/tools/texturev/texturev.cpp
+++ b/tools/texturev/texturev.cpp
@@ -1,6 +1,6 @@
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include "common.h"
@@ -1248,8 +1248,8 @@ void help(const char* _error = NULL)
bx::printf(
"texturev, bgfx texture viewer tool, version %d.%d.%d.\n"
- "Copyright 2011-2021 Branimir Karadzic. All rights reserved.\n"
- "License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause\n\n"
+ "Copyright 2011-2022 Branimir Karadzic. All rights reserved.\n"
+ "License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE\n\n"
, BGFX_TEXTUREV_VERSION_MAJOR
, BGFX_TEXTUREV_VERSION_MINOR
, BGFX_API_VERSION
@@ -1912,8 +1912,8 @@ int _main_(int _argc, char** _argv)
ImGui::Text(
"texturev, bgfx texture viewer tool " ICON_KI_WRENCH ", version %d.%d.%d.\n"
- "Copyright 2011-2021 Branimir Karadzic. All rights reserved.\n"
- "License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause\n"
+ "Copyright 2011-2022 Branimir Karadzic. All rights reserved.\n"
+ "License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE\n"
, BGFX_TEXTUREV_VERSION_MAJOR
, BGFX_TEXTUREV_VERSION_MINOR
, BGFX_API_VERSION
diff --git a/tools/texturev/vs_texture.sc b/tools/texturev/vs_texture.sc
index d04692119..542679517 100644
--- a/tools/texturev/vs_texture.sc
+++ b/tools/texturev/vs_texture.sc
@@ -2,8 +2,8 @@ $input a_position, a_texcoord0, a_color0
$output v_texcoord0, v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include
diff --git a/tools/texturev/vs_texture_cube.sc b/tools/texturev/vs_texture_cube.sc
index 53139ae38..073c7de47 100644
--- a/tools/texturev/vs_texture_cube.sc
+++ b/tools/texturev/vs_texture_cube.sc
@@ -2,8 +2,8 @@ $input a_position, a_texcoord0, a_color0
$output v_texcoord0, v_color0
/*
- * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include