Skip to content

Commit

Permalink
Happy New Year!
Browse files Browse the repository at this point in the history
  • Loading branch information
bkaradzic committed Jan 15, 2022
1 parent a2ad066 commit 4581f14
Show file tree
Hide file tree
Showing 551 changed files with 850 additions and 850 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ https://www.guildwars2.com/
<img align="right" src="http://opensource.org/trademarks/opensource/OSI-Approved-License-100x137.png">
</a>

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:
Expand Down
4 changes: 2 additions & 2 deletions examples/00-helloworld/helloworld.cpp
Original file line number Diff line number Diff line change
@@ -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 <bx/uint32_t.h>
Expand Down
4 changes: 2 additions & 2 deletions examples/01-cubes/cubes.cpp
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/01-cubes/fs_cubes.sc
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/01-cubes/makefile
Original file line number Diff line number Diff line change
@@ -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=../..
Expand Down
4 changes: 2 additions & 2 deletions examples/01-cubes/vs_cubes.sc
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/02-metaballs/fs_metaballs.sc
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/02-metaballs/makefile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions examples/02-metaballs/metaballs.cpp
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/02-metaballs/vs_metaballs.sc
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/03-raymarch/fs_raymarching.sc
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
4 changes: 2 additions & 2 deletions examples/03-raymarch/makefile
Original file line number Diff line number Diff line change
@@ -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=../..
Expand Down
4 changes: 2 additions & 2 deletions examples/03-raymarch/raymarch.cpp
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/03-raymarch/vs_raymarching.sc
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/04-mesh/fs_mesh.sc
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/04-mesh/makefile
Original file line number Diff line number Diff line change
@@ -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=../..
Expand Down
4 changes: 2 additions & 2 deletions examples/04-mesh/mesh.cpp
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/04-mesh/vs_mesh.sc
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/05-instancing/fs_instancing.sc
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/05-instancing/instancing.cpp
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/05-instancing/makefile
Original file line number Diff line number Diff line change
@@ -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=../..
Expand Down
4 changes: 2 additions & 2 deletions examples/05-instancing/vs_instancing.sc
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/06-bump/bump.cpp
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/06-bump/fs_bump.sc
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/06-bump/makefile
Original file line number Diff line number Diff line change
@@ -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=../..
Expand Down
4 changes: 2 additions & 2 deletions examples/06-bump/vs_bump.sc
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/06-bump/vs_bump_instanced.sc
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/07-callback/callback.cpp
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/07-callback/fs_callback.sc
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/07-callback/makefile
Original file line number Diff line number Diff line change
@@ -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=../..
Expand Down
4 changes: 2 additions & 2 deletions examples/07-callback/vs_callback.sc
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/08-update/cs_update.sc
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/08-update/fs_update.sc
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/08-update/fs_update_3d.sc
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/08-update/fs_update_cmp.sc
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/08-update/makefile
Original file line number Diff line number Diff line change
@@ -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=../..
Expand Down
4 changes: 2 additions & 2 deletions examples/08-update/update.cpp
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/08-update/vs_update.sc
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/09-hdr/common.sh
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
Loading

0 comments on commit 4581f14

Please sign in to comment.