From c25dd466be4733ad44c0bd7fc9fd33e45e276484 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Thu, 1 Jan 2015 15:04:46 -0800 Subject: [PATCH] Updated copyright year. --- examples/00-helloworld/helloworld.cpp | 2 +- examples/01-cubes/cubes.cpp | 2 +- examples/02-metaballs/metaballs.cpp | 2 +- examples/03-raymarch/raymarch.cpp | 2 +- examples/04-mesh/mesh.cpp | 2 +- examples/05-instancing/instancing.cpp | 2 +- examples/06-bump/bump.cpp | 2 +- examples/07-callback/callback.cpp | 2 +- examples/08-update/update.cpp | 2 +- examples/09-hdr/hdr.cpp | 2 +- examples/17-drawstress/drawstress.cpp | 2 +- examples/19-oit/oit.cpp | 2 +- examples/20-nanovg/nanovg.cpp | 2 +- examples/21-deferred/deferred.cpp | 2 +- examples/22-windows/windows.cpp | 2 +- examples/common/aviwriter.h | 2 +- examples/common/bgfx_utils.cpp | 2 +- examples/common/bgfx_utils.h | 2 +- examples/common/bounds.cpp | 2 +- examples/common/bounds.h | 2 +- examples/common/common.h | 2 +- examples/common/entry/cmd.cpp | 2 +- examples/common/entry/cmd.h | 2 +- examples/common/entry/dbg.cpp | 2 +- examples/common/entry/dbg.h | 2 +- examples/common/entry/entry.cpp | 2 +- examples/common/entry/entry.h | 2 +- examples/common/entry/entry_android.cpp | 2 +- examples/common/entry/entry_asmjs.cpp | 2 +- examples/common/entry/entry_nacl.cpp | 2 +- examples/common/entry/entry_p.h | 2 +- examples/common/entry/entry_qnx.cpp | 2 +- examples/common/entry/entry_sdl.cpp | 2 +- examples/common/entry/entry_windows.cpp | 2 +- examples/common/entry/entry_winrt.cpp | 2 +- examples/common/entry/entry_x11.cpp | 2 +- examples/common/entry/input.cpp | 2 +- examples/common/entry/input.h | 2 +- examples/common/imgui/imgui.cpp | 2 +- examples/common/imgui/imgui.h | 2 +- examples/common/nanovg/nanovg_bgfx.cpp | 2 +- examples/common/packrect.h | 2 +- include/bgfx.c99.h | 2 +- include/bgfx.h | 2 +- include/bgfxdefines.h | 2 +- include/bgfxplatform.c99.h | 2 +- include/bgfxplatform.h | 2 +- src/bgfx.cpp | 2 +- src/bgfx_p.h | 2 +- src/charset.h | 2 +- src/config.h | 2 +- src/glcontext_eagl.h | 2 +- src/glcontext_egl.cpp | 2 +- src/glcontext_egl.h | 2 +- src/glcontext_glx.cpp | 2 +- src/glcontext_glx.h | 2 +- src/glcontext_ios.h | 2 +- src/glcontext_nsgl.h | 2 +- src/glcontext_ppapi.cpp | 2 +- src/glcontext_ppapi.h | 2 +- src/glcontext_wgl.cpp | 2 +- src/glcontext_wgl.h | 2 +- src/glimports.h | 2 +- src/image.cpp | 2 +- src/image.h | 2 +- src/ovr.cpp | 2 +- src/ovr.h | 2 +- src/renderdoc.cpp | 2 +- src/renderdoc.h | 2 +- src/renderer.h | 2 +- src/renderer_d3d.h | 2 +- src/renderer_d3d11.cpp | 2 +- src/renderer_d3d11.h | 2 +- src/renderer_d3d12.cpp | 2 +- src/renderer_d3d9.cpp | 2 +- src/renderer_d3d9.h | 2 +- src/renderer_gl.cpp | 2 +- src/renderer_gl.h | 2 +- src/renderer_null.cpp | 2 +- src/vertexdecl.cpp | 2 +- src/vertexdecl.h | 2 +- tools/geometryc/geometryc.cpp | 4 ++-- tools/makedisttex.cpp | 2 +- tools/shaderc/shaderc.cpp | 4 ++-- tools/shaderc/shaderc.h | 2 +- tools/shaderc/shaderc_dx11.cpp | 2 +- tools/shaderc/shaderc_dx9.cpp | 2 +- tools/shaderc/shaderc_glsl.cpp | 2 +- tools/texturec/texturec.cpp | 2 +- 89 files changed, 91 insertions(+), 91 deletions(-) diff --git a/examples/00-helloworld/helloworld.cpp b/examples/00-helloworld/helloworld.cpp index 640b9e8d3..2d1bcec4c 100644 --- a/examples/00-helloworld/helloworld.cpp +++ b/examples/00-helloworld/helloworld.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/01-cubes/cubes.cpp b/examples/01-cubes/cubes.cpp index 30865da3b..51a425ca3 100644 --- a/examples/01-cubes/cubes.cpp +++ b/examples/01-cubes/cubes.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/02-metaballs/metaballs.cpp b/examples/02-metaballs/metaballs.cpp index 96f9a1cdf..4f6aa2503 100644 --- a/examples/02-metaballs/metaballs.cpp +++ b/examples/02-metaballs/metaballs.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/03-raymarch/raymarch.cpp b/examples/03-raymarch/raymarch.cpp index 7d20edd9f..ecaee73b4 100644 --- a/examples/03-raymarch/raymarch.cpp +++ b/examples/03-raymarch/raymarch.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/04-mesh/mesh.cpp b/examples/04-mesh/mesh.cpp index 6b222a8e0..f6cba794c 100644 --- a/examples/04-mesh/mesh.cpp +++ b/examples/04-mesh/mesh.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/05-instancing/instancing.cpp b/examples/05-instancing/instancing.cpp index 7c709c2b1..0830b789a 100644 --- a/examples/05-instancing/instancing.cpp +++ b/examples/05-instancing/instancing.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/06-bump/bump.cpp b/examples/06-bump/bump.cpp index 055a20a3b..ecbe73c9f 100644 --- a/examples/06-bump/bump.cpp +++ b/examples/06-bump/bump.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/07-callback/callback.cpp b/examples/07-callback/callback.cpp index c1db301ec..4599fc301 100644 --- a/examples/07-callback/callback.cpp +++ b/examples/07-callback/callback.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/08-update/update.cpp b/examples/08-update/update.cpp index 28adf32fc..1de93e4de 100644 --- a/examples/08-update/update.cpp +++ b/examples/08-update/update.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/09-hdr/hdr.cpp b/examples/09-hdr/hdr.cpp index 0b3f84559..4ee7de5d6 100644 --- a/examples/09-hdr/hdr.cpp +++ b/examples/09-hdr/hdr.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/17-drawstress/drawstress.cpp b/examples/17-drawstress/drawstress.cpp index 8acf72f0e..93d0418ec 100644 --- a/examples/17-drawstress/drawstress.cpp +++ b/examples/17-drawstress/drawstress.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/19-oit/oit.cpp b/examples/19-oit/oit.cpp index 9ea1ce042..cf6cc7431 100644 --- a/examples/19-oit/oit.cpp +++ b/examples/19-oit/oit.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/20-nanovg/nanovg.cpp b/examples/20-nanovg/nanovg.cpp index fe99a117f..8cbe26b80 100644 --- a/examples/20-nanovg/nanovg.cpp +++ b/examples/20-nanovg/nanovg.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/21-deferred/deferred.cpp b/examples/21-deferred/deferred.cpp index 497a19dc3..a79121f5e 100644 --- a/examples/21-deferred/deferred.cpp +++ b/examples/21-deferred/deferred.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/22-windows/windows.cpp b/examples/22-windows/windows.cpp index f1aefc6c9..df04561d3 100644 --- a/examples/22-windows/windows.cpp +++ b/examples/22-windows/windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/aviwriter.h b/examples/common/aviwriter.h index bdad814ca..1737544a0 100644 --- a/examples/common/aviwriter.h +++ b/examples/common/aviwriter.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/bgfx_utils.cpp b/examples/common/bgfx_utils.cpp index dfa8fedda..df293298b 100644 --- a/examples/common/bgfx_utils.cpp +++ b/examples/common/bgfx_utils.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/bgfx_utils.h b/examples/common/bgfx_utils.h index 45d5cf995..a93526560 100644 --- a/examples/common/bgfx_utils.h +++ b/examples/common/bgfx_utils.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/bounds.cpp b/examples/common/bounds.cpp index 42872b90e..4af455551 100644 --- a/examples/common/bounds.cpp +++ b/examples/common/bounds.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/bounds.h b/examples/common/bounds.h index 4d9d75e9a..572e635b1 100644 --- a/examples/common/bounds.h +++ b/examples/common/bounds.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/common.h b/examples/common/common.h index 08cdc61ce..fbcea73cc 100644 --- a/examples/common/common.h +++ b/examples/common/common.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/entry/cmd.cpp b/examples/common/entry/cmd.cpp index 68e869ece..6dfcb37d8 100644 --- a/examples/common/entry/cmd.cpp +++ b/examples/common/entry/cmd.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2010-2014 Branimir Karadzic. All rights reserved. + * Copyright 2010-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/entry/cmd.h b/examples/common/entry/cmd.h index 10a033ca1..e1b2cbad2 100644 --- a/examples/common/entry/cmd.h +++ b/examples/common/entry/cmd.h @@ -1,5 +1,5 @@ /* - * Copyright 2010-2014 Branimir Karadzic. All rights reserved. + * Copyright 2010-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/entry/dbg.cpp b/examples/common/entry/dbg.cpp index 176b8e185..2622259ca 100644 --- a/examples/common/entry/dbg.cpp +++ b/examples/common/entry/dbg.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/entry/dbg.h b/examples/common/entry/dbg.h index f8d6290b1..191ea21bf 100644 --- a/examples/common/entry/dbg.h +++ b/examples/common/entry/dbg.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/entry/entry.cpp b/examples/common/entry/entry.cpp index 83b183706..341cb07e2 100644 --- a/examples/common/entry/entry.cpp +++ b/examples/common/entry/entry.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/entry/entry.h b/examples/common/entry/entry.h index b9c272ff8..79c8eda01 100644 --- a/examples/common/entry/entry.h +++ b/examples/common/entry/entry.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/entry/entry_android.cpp b/examples/common/entry/entry_android.cpp index 7bc8f61c1..5ad35d1c1 100644 --- a/examples/common/entry/entry_android.cpp +++ b/examples/common/entry/entry_android.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/entry/entry_asmjs.cpp b/examples/common/entry/entry_asmjs.cpp index 5df3add0c..6c221246e 100644 --- a/examples/common/entry/entry_asmjs.cpp +++ b/examples/common/entry/entry_asmjs.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/entry/entry_nacl.cpp b/examples/common/entry/entry_nacl.cpp index 37dadc2e4..fca37180c 100644 --- a/examples/common/entry/entry_nacl.cpp +++ b/examples/common/entry/entry_nacl.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/entry/entry_p.h b/examples/common/entry/entry_p.h index fc1371c87..09fa203bd 100644 --- a/examples/common/entry/entry_p.h +++ b/examples/common/entry/entry_p.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/entry/entry_qnx.cpp b/examples/common/entry/entry_qnx.cpp index 9fb36e8b7..0ec4da6e1 100644 --- a/examples/common/entry/entry_qnx.cpp +++ b/examples/common/entry/entry_qnx.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/entry/entry_sdl.cpp b/examples/common/entry/entry_sdl.cpp index b57c8ed7c..e44ebcefd 100644 --- a/examples/common/entry/entry_sdl.cpp +++ b/examples/common/entry/entry_sdl.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/entry/entry_windows.cpp b/examples/common/entry/entry_windows.cpp index 9af4390eb..ce2784287 100644 --- a/examples/common/entry/entry_windows.cpp +++ b/examples/common/entry/entry_windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/entry/entry_winrt.cpp b/examples/common/entry/entry_winrt.cpp index 7e8181f4f..f50b58a39 100644 --- a/examples/common/entry/entry_winrt.cpp +++ b/examples/common/entry/entry_winrt.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/entry/entry_x11.cpp b/examples/common/entry/entry_x11.cpp index b67aab80c..434e7c79a 100644 --- a/examples/common/entry/entry_x11.cpp +++ b/examples/common/entry/entry_x11.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/entry/input.cpp b/examples/common/entry/input.cpp index 5f156e808..851f22643 100644 --- a/examples/common/entry/input.cpp +++ b/examples/common/entry/input.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2010-2014 Branimir Karadzic. All rights reserved. + * Copyright 2010-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/entry/input.h b/examples/common/entry/input.h index 8e9ec1f8e..12d830ccc 100644 --- a/examples/common/entry/input.h +++ b/examples/common/entry/input.h @@ -1,5 +1,5 @@ /* - * Copyright 2010-2014 Branimir Karadzic. All rights reserved. + * Copyright 2010-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/imgui/imgui.cpp b/examples/common/imgui/imgui.cpp index 50331c9f8..8ba741f29 100644 --- a/examples/common/imgui/imgui.cpp +++ b/examples/common/imgui/imgui.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/imgui/imgui.h b/examples/common/imgui/imgui.h index 12d4e01b7..3cf7f5726 100644 --- a/examples/common/imgui/imgui.h +++ b/examples/common/imgui/imgui.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/nanovg/nanovg_bgfx.cpp b/examples/common/nanovg/nanovg_bgfx.cpp index 722e1f03a..09de7e728 100644 --- a/examples/common/nanovg/nanovg_bgfx.cpp +++ b/examples/common/nanovg/nanovg_bgfx.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/examples/common/packrect.h b/examples/common/packrect.h index 2b7cf6088..d335bee84 100644 --- a/examples/common/packrect.h +++ b/examples/common/packrect.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/include/bgfx.c99.h b/include/bgfx.c99.h index 8f0049273..a026bcb1d 100644 --- a/include/bgfx.c99.h +++ b/include/bgfx.c99.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE * * vim: set tabstop=4 expandtab: diff --git a/include/bgfx.h b/include/bgfx.h index deee4f2b0..1b0ee4535 100644 --- a/include/bgfx.h +++ b/include/bgfx.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE */ diff --git a/include/bgfxdefines.h b/include/bgfxdefines.h index 5d9524cb6..1bf5cd2fa 100644 --- a/include/bgfxdefines.h +++ b/include/bgfxdefines.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/include/bgfxplatform.c99.h b/include/bgfxplatform.c99.h index 7ffeb2e80..5adff2435 100644 --- a/include/bgfxplatform.c99.h +++ b/include/bgfxplatform.c99.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE * * vim: set tabstop=4 expandtab: diff --git a/include/bgfxplatform.h b/include/bgfxplatform.h index 63065719c..08b93844e 100755 --- a/include/bgfxplatform.h +++ b/include/bgfxplatform.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE */ diff --git a/src/bgfx.cpp b/src/bgfx.cpp index 1c829dd10..6f353e350 100644 --- a/src/bgfx.cpp +++ b/src/bgfx.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/bgfx_p.h b/src/bgfx_p.h index 3ff0ebbfa..6a7e972e4 100644 --- a/src/bgfx_p.h +++ b/src/bgfx_p.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/charset.h b/src/charset.h index 7d8da1114..cfcbf7a88 100644 --- a/src/charset.h +++ b/src/charset.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/config.h b/src/config.h index faede55fb..1a069b4e1 100644 --- a/src/config.h +++ b/src/config.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/glcontext_eagl.h b/src/glcontext_eagl.h index 024447500..9c6775d8d 100644 --- a/src/glcontext_eagl.h +++ b/src/glcontext_eagl.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/glcontext_egl.cpp b/src/glcontext_egl.cpp index 8a34b7c38..e557874b0 100644 --- a/src/glcontext_egl.cpp +++ b/src/glcontext_egl.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/glcontext_egl.h b/src/glcontext_egl.h index 72414d8ae..e18aaa712 100644 --- a/src/glcontext_egl.h +++ b/src/glcontext_egl.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/glcontext_glx.cpp b/src/glcontext_glx.cpp index ed4bb0283..6bf103e44 100644 --- a/src/glcontext_glx.cpp +++ b/src/glcontext_glx.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/glcontext_glx.h b/src/glcontext_glx.h index 9cf0270f2..d91396d76 100644 --- a/src/glcontext_glx.h +++ b/src/glcontext_glx.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/glcontext_ios.h b/src/glcontext_ios.h index 07610f386..f0513667c 100644 --- a/src/glcontext_ios.h +++ b/src/glcontext_ios.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/glcontext_nsgl.h b/src/glcontext_nsgl.h index 3b157de73..cde844df0 100644 --- a/src/glcontext_nsgl.h +++ b/src/glcontext_nsgl.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/glcontext_ppapi.cpp b/src/glcontext_ppapi.cpp index a6cb71133..f22228e04 100644 --- a/src/glcontext_ppapi.cpp +++ b/src/glcontext_ppapi.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/glcontext_ppapi.h b/src/glcontext_ppapi.h index e0c684674..e3acc8768 100644 --- a/src/glcontext_ppapi.h +++ b/src/glcontext_ppapi.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/glcontext_wgl.cpp b/src/glcontext_wgl.cpp index 381fd9830..85a8fe2b1 100644 --- a/src/glcontext_wgl.cpp +++ b/src/glcontext_wgl.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/glcontext_wgl.h b/src/glcontext_wgl.h index ea9211054..cda9c1499 100644 --- a/src/glcontext_wgl.h +++ b/src/glcontext_wgl.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/glimports.h b/src/glimports.h index a3645abcb..bc47b57f2 100644 --- a/src/glimports.h +++ b/src/glimports.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/image.cpp b/src/image.cpp index f4841b75f..ac14092a3 100644 --- a/src/image.cpp +++ b/src/image.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/image.h b/src/image.h index 30e83f965..23fa05e29 100644 --- a/src/image.h +++ b/src/image.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/ovr.cpp b/src/ovr.cpp index 4108f7f71..732f750cc 100644 --- a/src/ovr.cpp +++ b/src/ovr.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2011-2014 Branimir Karadzic. All rights reserved. +* Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/ovr.h b/src/ovr.h index 5c7edccdb..331406e61 100644 --- a/src/ovr.h +++ b/src/ovr.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/renderdoc.cpp b/src/renderdoc.cpp index ccf75b926..c6adc5f0c 100644 --- a/src/renderdoc.cpp +++ b/src/renderdoc.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/renderdoc.h b/src/renderdoc.h index c88d89cf5..e52a030cd 100644 --- a/src/renderdoc.h +++ b/src/renderdoc.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/renderer.h b/src/renderer.h index 21263c86a..95e0762aa 100644 --- a/src/renderer.h +++ b/src/renderer.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/renderer_d3d.h b/src/renderer_d3d.h index d4a67477a..1df0e3a7a 100644 --- a/src/renderer_d3d.h +++ b/src/renderer_d3d.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/renderer_d3d11.cpp b/src/renderer_d3d11.cpp index 0f631081b..0bb5c54eb 100644 --- a/src/renderer_d3d11.cpp +++ b/src/renderer_d3d11.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/renderer_d3d11.h b/src/renderer_d3d11.h index 592620e0b..dc54e1a23 100644 --- a/src/renderer_d3d11.h +++ b/src/renderer_d3d11.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/renderer_d3d12.cpp b/src/renderer_d3d12.cpp index b181e1f28..08d1b32e1 100644 --- a/src/renderer_d3d12.cpp +++ b/src/renderer_d3d12.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/renderer_d3d9.cpp b/src/renderer_d3d9.cpp index db18cb03c..e6232b17d 100644 --- a/src/renderer_d3d9.cpp +++ b/src/renderer_d3d9.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/renderer_d3d9.h b/src/renderer_d3d9.h index 400e4e261..1460725c0 100644 --- a/src/renderer_d3d9.h +++ b/src/renderer_d3d9.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/renderer_gl.cpp b/src/renderer_gl.cpp index 81b5b013f..3980aa2c3 100644 --- a/src/renderer_gl.cpp +++ b/src/renderer_gl.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/renderer_gl.h b/src/renderer_gl.h index 56602038f..d2cd32dc5 100644 --- a/src/renderer_gl.h +++ b/src/renderer_gl.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/renderer_null.cpp b/src/renderer_null.cpp index e130f50d6..e3d22dd9d 100644 --- a/src/renderer_null.cpp +++ b/src/renderer_null.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/vertexdecl.cpp b/src/vertexdecl.cpp index 6d585620f..ed5059a7a 100644 --- a/src/vertexdecl.cpp +++ b/src/vertexdecl.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/src/vertexdecl.h b/src/vertexdecl.h index ed5c117b7..6ba12417b 100644 --- a/src/vertexdecl.h +++ b/src/vertexdecl.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/tools/geometryc/geometryc.cpp b/tools/geometryc/geometryc.cpp index 7fe054e6c..6073b6a15 100644 --- a/tools/geometryc/geometryc.cpp +++ b/tools/geometryc/geometryc.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ @@ -359,7 +359,7 @@ void help(const char* _error = NULL) fprintf(stderr , "geometryc, bgfx geometry compiler tool\n" - "Copyright 2011-2014 Branimir Karadzic. All rights reserved.\n" + "Copyright 2011-2015 Branimir Karadzic. All rights reserved.\n" "License: http://www.opensource.org/licenses/BSD-2-Clause\n\n" ); diff --git a/tools/makedisttex.cpp b/tools/makedisttex.cpp index 7b8ceb758..a4542462e 100644 --- a/tools/makedisttex.cpp +++ b/tools/makedisttex.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/tools/shaderc/shaderc.cpp b/tools/shaderc/shaderc.cpp index 8fbbb66c0..6cac15a8e 100644 --- a/tools/shaderc/shaderc.cpp +++ b/tools/shaderc/shaderc.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ @@ -666,7 +666,7 @@ void help(const char* _error = NULL) fprintf(stderr , "shaderc, bgfx shader compiler tool\n" - "Copyright 2011-2014 Branimir Karadzic. All rights reserved.\n" + "Copyright 2011-2015 Branimir Karadzic. All rights reserved.\n" "License: http://www.opensource.org/licenses/BSD-2-Clause\n\n" ); diff --git a/tools/shaderc/shaderc.h b/tools/shaderc/shaderc.h index 34fc1b52d..342f3dd22 100644 --- a/tools/shaderc/shaderc.h +++ b/tools/shaderc/shaderc.h @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/tools/shaderc/shaderc_dx11.cpp b/tools/shaderc/shaderc_dx11.cpp index a12c54796..d9ffab611 100644 --- a/tools/shaderc/shaderc_dx11.cpp +++ b/tools/shaderc/shaderc_dx11.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/tools/shaderc/shaderc_dx9.cpp b/tools/shaderc/shaderc_dx9.cpp index f04c8efad..93a4f4433 100644 --- a/tools/shaderc/shaderc_dx9.cpp +++ b/tools/shaderc/shaderc_dx9.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/tools/shaderc/shaderc_glsl.cpp b/tools/shaderc/shaderc_glsl.cpp index 56fa2efe0..57fa39af9 100644 --- a/tools/shaderc/shaderc_glsl.cpp +++ b/tools/shaderc/shaderc_glsl.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ diff --git a/tools/texturec/texturec.cpp b/tools/texturec/texturec.cpp index 0d6879a11..0e4063539 100644 --- a/tools/texturec/texturec.cpp +++ b/tools/texturec/texturec.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2014 Branimir Karadzic. All rights reserved. + * Copyright 2011-2015 Branimir Karadzic. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */