Browse Source

Happy New Year!

Бранимир Караџић 6 years ago
parent
commit
82f56b5987
100 changed files with 100 additions and 100 deletions
  1. 1 1
      LICENSE
  2. 1 1
      README.md
  3. 1 1
      examples/00-helloworld/helloworld.cpp
  4. 1 1
      examples/01-cubes/cubes.cpp
  5. 1 1
      examples/01-cubes/fs_cubes.sc
  6. 1 1
      examples/01-cubes/makefile
  7. 1 1
      examples/01-cubes/vs_cubes.sc
  8. 1 1
      examples/02-metaballs/fs_metaballs.sc
  9. 1 1
      examples/02-metaballs/makefile
  10. 1 1
      examples/02-metaballs/metaballs.cpp
  11. 1 1
      examples/02-metaballs/vs_metaballs.sc
  12. 1 1
      examples/03-raymarch/fs_raymarching.sc
  13. 1 1
      examples/03-raymarch/makefile
  14. 1 1
      examples/03-raymarch/raymarch.cpp
  15. 1 1
      examples/03-raymarch/vs_raymarching.sc
  16. 1 1
      examples/04-mesh/fs_mesh.sc
  17. 1 1
      examples/04-mesh/makefile
  18. 1 1
      examples/04-mesh/mesh.cpp
  19. 1 1
      examples/04-mesh/vs_mesh.sc
  20. 1 1
      examples/05-instancing/fs_instancing.sc
  21. 1 1
      examples/05-instancing/instancing.cpp
  22. 1 1
      examples/05-instancing/makefile
  23. 1 1
      examples/05-instancing/vs_instancing.sc
  24. 1 1
      examples/06-bump/bump.cpp
  25. 1 1
      examples/06-bump/fs_bump.sc
  26. 1 1
      examples/06-bump/makefile
  27. 1 1
      examples/06-bump/vs_bump.sc
  28. 1 1
      examples/06-bump/vs_bump_instanced.sc
  29. 1 1
      examples/07-callback/callback.cpp
  30. 1 1
      examples/07-callback/fs_callback.sc
  31. 1 1
      examples/07-callback/makefile
  32. 1 1
      examples/07-callback/vs_callback.sc
  33. 1 1
      examples/08-update/fs_update.sc
  34. 1 1
      examples/08-update/fs_update_3d.sc
  35. 1 1
      examples/08-update/fs_update_cmp.sc
  36. 1 1
      examples/08-update/makefile
  37. 1 1
      examples/08-update/update.cpp
  38. 1 1
      examples/08-update/vs_update.sc
  39. 1 1
      examples/09-hdr/common.sh
  40. 1 1
      examples/09-hdr/fs_hdr_blur.sc
  41. 1 1
      examples/09-hdr/fs_hdr_bright.sc
  42. 1 1
      examples/09-hdr/fs_hdr_lum.sc
  43. 1 1
      examples/09-hdr/fs_hdr_lumavg.sc
  44. 1 1
      examples/09-hdr/fs_hdr_mesh.sc
  45. 1 1
      examples/09-hdr/fs_hdr_skybox.sc
  46. 1 1
      examples/09-hdr/fs_hdr_tonemap.sc
  47. 1 1
      examples/09-hdr/hdr.cpp
  48. 1 1
      examples/09-hdr/makefile
  49. 1 1
      examples/09-hdr/vs_hdr_blur.sc
  50. 1 1
      examples/09-hdr/vs_hdr_bright.sc
  51. 1 1
      examples/09-hdr/vs_hdr_lum.sc
  52. 1 1
      examples/09-hdr/vs_hdr_lumavg.sc
  53. 1 1
      examples/09-hdr/vs_hdr_mesh.sc
  54. 1 1
      examples/09-hdr/vs_hdr_skybox.sc
  55. 1 1
      examples/09-hdr/vs_hdr_tonemap.sc
  56. 1 1
      examples/12-lod/makefile
  57. 1 1
      examples/13-stencil/makefile
  58. 1 1
      examples/14-shadowvolumes/makefile
  59. 1 1
      examples/15-shadowmaps-simple/makefile
  60. 1 1
      examples/16-shadowmaps/makefile
  61. 1 1
      examples/16-shadowmaps/vs_shadowmaps_hblur.sc
  62. 1 1
      examples/17-drawstress/drawstress.cpp
  63. 1 1
      examples/17-drawstress/fs_drawstress.sc
  64. 1 1
      examples/17-drawstress/makefile
  65. 1 1
      examples/17-drawstress/vs_drawstress.sc
  66. 1 1
      examples/18-ibl/makefile
  67. 1 1
      examples/19-oit/fs_oit.sc
  68. 1 1
      examples/19-oit/fs_oit_wb.sc
  69. 1 1
      examples/19-oit/fs_oit_wb_blit.sc
  70. 1 1
      examples/19-oit/fs_oit_wb_separate.sc
  71. 1 1
      examples/19-oit/fs_oit_wb_separate_blit.sc
  72. 1 1
      examples/19-oit/makefile
  73. 1 1
      examples/19-oit/oit.cpp
  74. 1 1
      examples/19-oit/vs_oit.sc
  75. 1 1
      examples/19-oit/vs_oit_blit.sc
  76. 1 1
      examples/20-nanovg/nanovg.cpp
  77. 1 1
      examples/21-deferred/common.sh
  78. 1 1
      examples/21-deferred/deferred.cpp
  79. 1 1
      examples/21-deferred/fs_deferred_clear_uav.sc
  80. 1 1
      examples/21-deferred/fs_deferred_combine.sc
  81. 1 1
      examples/21-deferred/fs_deferred_debug.sc
  82. 1 1
      examples/21-deferred/fs_deferred_debug_line.sc
  83. 1 1
      examples/21-deferred/fs_deferred_geom.sc
  84. 1 1
      examples/21-deferred/fs_deferred_light.sc
  85. 1 1
      examples/21-deferred/fs_deferred_light_ta.sc
  86. 1 1
      examples/21-deferred/fs_deferred_light_uav.sc
  87. 1 1
      examples/21-deferred/makefile
  88. 1 1
      examples/21-deferred/vs_deferred_combine.sc
  89. 1 1
      examples/21-deferred/vs_deferred_debug.sc
  90. 1 1
      examples/21-deferred/vs_deferred_debug_line.sc
  91. 1 1
      examples/21-deferred/vs_deferred_geom.sc
  92. 1 1
      examples/21-deferred/vs_deferred_light.sc
  93. 1 1
      examples/22-windows/windows.cpp
  94. 1 1
      examples/23-vectordisplay/makefile
  95. 1 1
      examples/24-nbody/makefile
  96. 1 1
      examples/26-occlusion/occlusion.cpp
  97. 1 1
      examples/27-terrain/makefile
  98. 1 1
      examples/28-wireframe/makefile
  99. 1 1
      examples/29-debugdraw/debugdraw.cpp
  100. 1 1
      examples/30-picking/fs_picking_id.sc

+ 1 - 1
LICENSE

@@ -1,4 +1,4 @@
-Copyright 2010-2019 Branimir Karadzic
+Copyright 2010-2020 Branimir Karadzic
 
 
 Redistribution and use in source and binary forms, with or without modification,
 Redistribution and use in source and binary forms, with or without modification,
 are permitted provided that the following conditions are met:
 are permitted provided that the following conditions are met:

+ 1 - 1
README.md

@@ -372,7 +372,7 @@ An open source reimplementation of the game Black & White (2001).
 <img align="right" src="http://opensource.org/trademarks/opensource/OSI-Approved-License-100x137.png">
 <img align="right" src="http://opensource.org/trademarks/opensource/OSI-Approved-License-100x137.png">
 </a>
 </a>
 
 
-	Copyright 2010-2019 Branimir Karadzic
+	Copyright 2010-2020 Branimir Karadzic
 	
 	
 	Redistribution and use in source and binary forms, with or without modification,
 	Redistribution and use in source and binary forms, with or without modification,
 	are permitted provided that the following conditions are met:
 	are permitted provided that the following conditions are met:

+ 1 - 1
examples/00-helloworld/helloworld.cpp

@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/01-cubes/cubes.cpp

@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/01-cubes/fs_cubes.sc

@@ -1,7 +1,7 @@
 $input v_color0
 $input v_color0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/01-cubes/makefile

@@ -1,5 +1,5 @@
 #
 #
-# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+# Copyright 2011-2020 Branimir Karadzic. All rights reserved.
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 #
 #
 
 

+ 1 - 1
examples/01-cubes/vs_cubes.sc

@@ -2,7 +2,7 @@ $input a_position, a_color0
 $output v_color0
 $output v_color0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/02-metaballs/fs_metaballs.sc

@@ -1,7 +1,7 @@
 $input v_normal, v_color0
 $input v_normal, v_color0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/02-metaballs/makefile

@@ -1,5 +1,5 @@
 #
 #
-# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+# Copyright 2011-2020 Branimir Karadzic. All rights reserved.
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 #
 #
 
 

+ 1 - 1
examples/02-metaballs/metaballs.cpp

@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/02-metaballs/vs_metaballs.sc

@@ -2,7 +2,7 @@ $input a_position, a_normal, a_color0
 $output v_normal, v_color0
 $output v_normal, v_color0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/03-raymarch/fs_raymarching.sc

@@ -1,7 +1,7 @@
 $input v_color0, v_texcoord0
 $input v_color0, v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/03-raymarch/makefile

@@ -1,5 +1,5 @@
 #
 #
-# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+# Copyright 2011-2020 Branimir Karadzic. All rights reserved.
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 #
 #
 
 

+ 1 - 1
examples/03-raymarch/raymarch.cpp

@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/03-raymarch/vs_raymarching.sc

@@ -2,7 +2,7 @@ $input a_position, a_color0, a_texcoord0
 $output v_color0, v_texcoord0
 $output v_color0, v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/04-mesh/fs_mesh.sc

@@ -1,7 +1,7 @@
 $input v_pos, v_view, v_normal, v_color0
 $input v_pos, v_view, v_normal, v_color0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/04-mesh/makefile

@@ -1,5 +1,5 @@
 #
 #
-# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+# Copyright 2011-2020 Branimir Karadzic. All rights reserved.
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 #
 #
 
 

+ 1 - 1
examples/04-mesh/mesh.cpp

@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/04-mesh/vs_mesh.sc

@@ -2,7 +2,7 @@ $input a_position, a_normal
 $output v_pos, v_view, v_normal, v_color0
 $output v_pos, v_view, v_normal, v_color0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/05-instancing/fs_instancing.sc

@@ -1,7 +1,7 @@
 $input v_color0
 $input v_color0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/05-instancing/instancing.cpp

@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/05-instancing/makefile

@@ -1,5 +1,5 @@
 #
 #
-# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+# Copyright 2011-2020 Branimir Karadzic. All rights reserved.
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 #
 #
 
 

+ 1 - 1
examples/05-instancing/vs_instancing.sc

@@ -2,7 +2,7 @@ $input a_position, a_color0, i_data0, i_data1, i_data2, i_data3, i_data4
 $output v_color0
 $output v_color0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/06-bump/bump.cpp

@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/06-bump/fs_bump.sc

@@ -1,7 +1,7 @@
 $input v_wpos, v_view, v_normal, v_tangent, v_bitangent, v_texcoord0// in...
 $input v_wpos, v_view, v_normal, v_tangent, v_bitangent, v_texcoord0// in...
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/06-bump/makefile

@@ -1,5 +1,5 @@
 #
 #
-# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+# Copyright 2011-2020 Branimir Karadzic. All rights reserved.
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 #
 #
 
 

+ 1 - 1
examples/06-bump/vs_bump.sc

@@ -2,7 +2,7 @@ $input a_position, a_normal, a_tangent, a_texcoord0
 $output v_wpos, v_view, v_normal, v_tangent, v_bitangent, v_texcoord0
 $output v_wpos, v_view, v_normal, v_tangent, v_bitangent, v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/06-bump/vs_bump_instanced.sc

@@ -2,7 +2,7 @@ $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
 $output v_wpos, v_view, v_normal, v_tangent, v_bitangent, v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/07-callback/callback.cpp

@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/07-callback/fs_callback.sc

@@ -1,7 +1,7 @@
 $input v_world, v_color0
 $input v_world, v_color0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/07-callback/makefile

@@ -1,5 +1,5 @@
 #
 #
-# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+# Copyright 2011-2020 Branimir Karadzic. All rights reserved.
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 #
 #
 
 

+ 1 - 1
examples/07-callback/vs_callback.sc

@@ -2,7 +2,7 @@ $input a_position, a_color0
 $output v_world, v_color0
 $output v_world, v_color0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/08-update/fs_update.sc

@@ -1,7 +1,7 @@
 $input v_texcoord0
 $input v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/08-update/fs_update_3d.sc

@@ -1,7 +1,7 @@
 $input v_texcoord0
 $input v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/08-update/fs_update_cmp.sc

@@ -1,7 +1,7 @@
 $input v_texcoord0
 $input v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/08-update/makefile

@@ -1,5 +1,5 @@
 #
 #
-# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+# Copyright 2011-2020 Branimir Karadzic. All rights reserved.
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 #
 #
 
 

+ 1 - 1
examples/08-update/update.cpp

@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/08-update/vs_update.sc

@@ -2,7 +2,7 @@ $input a_position, a_texcoord0
 $output v_texcoord0
 $output v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/09-hdr/common.sh

@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/09-hdr/fs_hdr_blur.sc

@@ -1,7 +1,7 @@
 $input v_texcoord0, v_texcoord1, v_texcoord2, v_texcoord3, v_texcoord4
 $input v_texcoord0, v_texcoord1, v_texcoord2, v_texcoord3, v_texcoord4
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/09-hdr/fs_hdr_bright.sc

@@ -1,7 +1,7 @@
 $input v_texcoord0
 $input v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/09-hdr/fs_hdr_lum.sc

@@ -1,7 +1,7 @@
 $input v_texcoord0
 $input v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/09-hdr/fs_hdr_lumavg.sc

@@ -1,7 +1,7 @@
 $input v_texcoord0
 $input v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/09-hdr/fs_hdr_mesh.sc

@@ -1,7 +1,7 @@
 $input v_pos, v_view, v_normal
 $input v_pos, v_view, v_normal
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/09-hdr/fs_hdr_skybox.sc

@@ -1,7 +1,7 @@
 $input v_texcoord0
 $input v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/09-hdr/fs_hdr_tonemap.sc

@@ -1,7 +1,7 @@
 $input v_texcoord0, v_texcoord1, v_texcoord2, v_texcoord3, v_texcoord4
 $input v_texcoord0, v_texcoord1, v_texcoord2, v_texcoord3, v_texcoord4
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/09-hdr/hdr.cpp

@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/09-hdr/makefile

@@ -1,5 +1,5 @@
 #
 #
-# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+# Copyright 2011-2020 Branimir Karadzic. All rights reserved.
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 #
 #
 
 

+ 1 - 1
examples/09-hdr/vs_hdr_blur.sc

@@ -2,7 +2,7 @@ $input a_position, a_texcoord0
 $output v_texcoord0, v_texcoord1, v_texcoord2, v_texcoord3, v_texcoord4
 $output v_texcoord0, v_texcoord1, v_texcoord2, v_texcoord3, v_texcoord4
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/09-hdr/vs_hdr_bright.sc

@@ -2,7 +2,7 @@ $input a_position, a_texcoord0
 $output v_texcoord0
 $output v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/09-hdr/vs_hdr_lum.sc

@@ -2,7 +2,7 @@ $input a_position, a_texcoord0
 $output v_texcoord0
 $output v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/09-hdr/vs_hdr_lumavg.sc

@@ -2,7 +2,7 @@ $input a_position, a_texcoord0
 $output v_texcoord0
 $output v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/09-hdr/vs_hdr_mesh.sc

@@ -2,7 +2,7 @@ $input a_position, a_normal
 $output v_pos, v_view, v_normal
 $output v_pos, v_view, v_normal
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/09-hdr/vs_hdr_skybox.sc

@@ -2,7 +2,7 @@ $input a_position, a_texcoord0
 $output v_texcoord0
 $output v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/09-hdr/vs_hdr_tonemap.sc

@@ -2,7 +2,7 @@ $input a_position, a_texcoord0
 $output v_texcoord0, v_texcoord1, v_texcoord2, v_texcoord3, v_texcoord4
 $output v_texcoord0, v_texcoord1, v_texcoord2, v_texcoord3, v_texcoord4
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/12-lod/makefile

@@ -1,5 +1,5 @@
 #
 #
-# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+# Copyright 2011-2020 Branimir Karadzic. All rights reserved.
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 #
 #
 
 

+ 1 - 1
examples/13-stencil/makefile

@@ -1,5 +1,5 @@
 #
 #
-# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+# Copyright 2011-2020 Branimir Karadzic. All rights reserved.
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 #
 #
 
 

+ 1 - 1
examples/14-shadowvolumes/makefile

@@ -1,5 +1,5 @@
 #
 #
-# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+# Copyright 2011-2020 Branimir Karadzic. All rights reserved.
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 #
 #
 
 

+ 1 - 1
examples/15-shadowmaps-simple/makefile

@@ -1,5 +1,5 @@
 #
 #
-# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+# Copyright 2011-2020 Branimir Karadzic. All rights reserved.
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 #
 #
 
 

+ 1 - 1
examples/16-shadowmaps/makefile

@@ -1,5 +1,5 @@
 #
 #
-# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+# Copyright 2011-2020 Branimir Karadzic. All rights reserved.
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 #
 #
 
 

+ 1 - 1
examples/16-shadowmaps/vs_shadowmaps_hblur.sc

@@ -2,7 +2,7 @@ $input a_position, a_texcoord0
 $output v_texcoord0, v_texcoord1, v_texcoord2, v_texcoord3, v_texcoord4
 $output v_texcoord0, v_texcoord1, v_texcoord2, v_texcoord3, v_texcoord4
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/17-drawstress/drawstress.cpp

@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/17-drawstress/fs_drawstress.sc

@@ -1,7 +1,7 @@
 $input v_color0
 $input v_color0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/17-drawstress/makefile

@@ -1,5 +1,5 @@
 #
 #
-# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+# Copyright 2011-2020 Branimir Karadzic. All rights reserved.
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 #
 #
 
 

+ 1 - 1
examples/17-drawstress/vs_drawstress.sc

@@ -2,7 +2,7 @@ $input a_position, a_color0
 $output v_color0
 $output v_color0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/18-ibl/makefile

@@ -1,5 +1,5 @@
 #
 #
-# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+# Copyright 2011-2020 Branimir Karadzic. All rights reserved.
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 #
 #
 
 

+ 1 - 1
examples/19-oit/fs_oit.sc

@@ -1,7 +1,7 @@
 $input v_pos
 $input v_pos
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/19-oit/fs_oit_wb.sc

@@ -1,7 +1,7 @@
 $input v_pos
 $input v_pos
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/19-oit/fs_oit_wb_blit.sc

@@ -1,7 +1,7 @@
 $input v_texcoord0
 $input v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/19-oit/fs_oit_wb_separate.sc

@@ -1,7 +1,7 @@
 $input v_pos
 $input v_pos
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/19-oit/fs_oit_wb_separate_blit.sc

@@ -1,7 +1,7 @@
 $input v_texcoord0
 $input v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/19-oit/makefile

@@ -1,5 +1,5 @@
 #
 #
-# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+# Copyright 2011-2020 Branimir Karadzic. All rights reserved.
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 #
 #
 
 

+ 1 - 1
examples/19-oit/oit.cpp

@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/19-oit/vs_oit.sc

@@ -2,7 +2,7 @@ $input a_position
 $output v_pos
 $output v_pos
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/19-oit/vs_oit_blit.sc

@@ -2,7 +2,7 @@ $input a_position, a_texcoord0
 $output v_texcoord0
 $output v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/20-nanovg/nanovg.cpp

@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/21-deferred/common.sh

@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/21-deferred/deferred.cpp

@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/21-deferred/fs_deferred_clear_uav.sc

@@ -1,7 +1,7 @@
 $input v_texcoord0
 $input v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/21-deferred/fs_deferred_combine.sc

@@ -1,7 +1,7 @@
 $input v_texcoord0
 $input v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/21-deferred/fs_deferred_debug.sc

@@ -1,7 +1,7 @@
 $input v_texcoord0
 $input v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/21-deferred/fs_deferred_debug_line.sc

@@ -1,7 +1,7 @@
 $input v_color0
 $input v_color0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/21-deferred/fs_deferred_geom.sc

@@ -1,7 +1,7 @@
 $input v_wpos, v_view, v_normal, v_tangent, v_bitangent, v_texcoord0
 $input v_wpos, v_view, v_normal, v_tangent, v_bitangent, v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/21-deferred/fs_deferred_light.sc

@@ -1,7 +1,7 @@
 $input v_texcoord0
 $input v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/21-deferred/fs_deferred_light_ta.sc

@@ -1,7 +1,7 @@
 $input v_texcoord0
 $input v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/21-deferred/fs_deferred_light_uav.sc

@@ -1,7 +1,7 @@
 $input v_texcoord0
 $input v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/21-deferred/makefile

@@ -1,5 +1,5 @@
 #
 #
-# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+# Copyright 2011-2020 Branimir Karadzic. All rights reserved.
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 #
 #
 
 

+ 1 - 1
examples/21-deferred/vs_deferred_combine.sc

@@ -2,7 +2,7 @@ $input a_position, a_texcoord0
 $output v_texcoord0
 $output v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/21-deferred/vs_deferred_debug.sc

@@ -2,7 +2,7 @@ $input a_position, a_texcoord0
 $output v_texcoord0
 $output v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/21-deferred/vs_deferred_debug_line.sc

@@ -2,7 +2,7 @@ $input a_position, a_color0
 $output v_color0
 $output v_color0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/21-deferred/vs_deferred_geom.sc

@@ -2,7 +2,7 @@ $input a_position, a_normal, a_tangent, a_texcoord0
 $output v_wpos, v_view, v_normal, v_tangent, v_bitangent, v_texcoord0
 $output v_wpos, v_view, v_normal, v_tangent, v_bitangent, v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/21-deferred/vs_deferred_light.sc

@@ -2,7 +2,7 @@ $input a_position, a_texcoord0
 $output v_texcoord0
 $output v_texcoord0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/22-windows/windows.cpp

@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/23-vectordisplay/makefile

@@ -1,5 +1,5 @@
 #
 #
-# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+# Copyright 2011-2020 Branimir Karadzic. All rights reserved.
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 #
 #
 
 

+ 1 - 1
examples/24-nbody/makefile

@@ -1,5 +1,5 @@
 #
 #
-# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+# Copyright 2011-2020 Branimir Karadzic. All rights reserved.
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 #
 #
 
 

+ 1 - 1
examples/26-occlusion/occlusion.cpp

@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/27-terrain/makefile

@@ -1,5 +1,5 @@
 #
 #
-# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+# Copyright 2011-2020 Branimir Karadzic. All rights reserved.
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 #
 #
 
 

+ 1 - 1
examples/28-wireframe/makefile

@@ -1,5 +1,5 @@
 #
 #
-# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+# Copyright 2011-2020 Branimir Karadzic. All rights reserved.
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 #
 #
 
 

+ 1 - 1
examples/29-debugdraw/debugdraw.cpp

@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

+ 1 - 1
examples/30-picking/fs_picking_id.sc

@@ -1,7 +1,7 @@
 $input v_pos, v_view, v_normal, v_color0
 $input v_pos, v_view, v_normal, v_color0
 
 
 /*
 /*
- * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  */
  */
 
 

Some files were not shown because too many files changed in this diff