-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from scallyw4g/develop
develop
- Loading branch information
Showing
96 changed files
with
2,974 additions
and
486 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule bonsai_debug
updated
4 files
+2 −0 | debug.cpp | |
+38 −3 | src/api.h | |
+14 −1 | src/debug_data_system.cpp | |
+97 −46 | src/debug_render_system.cpp |
Submodule bonsai_stdlib
updated
15 files
+1 −0 | bonsai_stdlib.h | |
+12 −2 | src/colors.h | |
+5 −0 | src/counted_string.cpp | |
+2 −0 | src/gl.cpp | |
+7 −5 | src/gl.h | |
+35 −10 | src/math.h | |
+3 −0 | src/memory_arena.h | |
+334 −68 | src/noise.h | |
+149 −35 | src/perlin.h | |
+43 −1 | src/poof_functions.h | |
+150 −4 | src/random.h | |
+1 −0 | src/texture.cpp | |
+0 −7 | src/texture_cursor.cpp | |
+2 −0 | src/ui/gl.cpp | |
+13 −28 | src/vector.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// external/bonsai_debug/src/api.h:110:0 | ||
|
||
link_internal b32 | ||
AreEqual(debug_profile_scope *Thing1, debug_profile_scope *Thing2) | ||
{ | ||
b32 Result = MemoryIsEqual((u8*)Thing1, (u8*)Thing2, sizeof( debug_profile_scope ) ); | ||
|
||
return Result; | ||
} | ||
|
||
link_internal b32 | ||
AreEqual(debug_profile_scope Thing1, debug_profile_scope Thing2) | ||
{ | ||
b32 Result = MemoryIsEqual((u8*)&Thing1, (u8*)&Thing2, sizeof( debug_profile_scope ) ); | ||
|
||
return Result; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// src/engine/world_chunk.h:320:0 | ||
// src/engine/world_chunk.h:326:0 | ||
|
||
struct entity_ptr_block | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// src/engine/editor.h:244:0 | ||
// src/engine/editor.h:238:0 | ||
|
||
struct asset_thumbnail_block | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// src/engine/world_chunk.h:462:0 | ||
// src/engine/world_chunk.h:474:0 | ||
|
||
struct standing_spot_block | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// src/engine/world_chunk.cpp:3863:0 | ||
// src/engine/world_chunk.cpp:4029:0 | ||
|
||
struct voxel_stack_element_block | ||
{ | ||
|
Oops, something went wrong.