-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e986d21
commit 920f2c3
Showing
6 changed files
with
16 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# https://github.com/google/shaderc/blob/main/downloads.md to download glslc | ||
|
||
/usr/local/bin/glslc shaders/simple_shader.vert -o shaders/simple_shader.vert.spv | ||
/usr/local/bin/glslc shaders/simple_shader.frag -o shaders/simple_shader.frag.spv | ||
# /usr/local/bin/glslc shaders/simple_shader.vert -o shaders/simple_shader.vert.spv | ||
# /usr/local/bin/glslc shaders/simple_shader.frag -o shaders/simple_shader.frag.spv | ||
|
||
# ./glslc shaders/simple_shader.vert -o shaders/simple_shader.vert.spv | ||
# ./glslc shaders/simple_shader.frag -o shaders/simple_shader.frag.spv | ||
|
||
# ./external/glslc/glslc shaders/simple_shader.vert -o shaders/simple_shader.vert.spv | ||
# ./external/glslc/glslc shaders/simple_shader.frag -o shaders/simple_shader.frag.spv | ||
./external/glslc/glslc shaders/simple_shader.vert -o shaders/simple_shader.vert.spv | ||
./external/glslc/glslc shaders/simple_shader.frag -o shaders/simple_shader.frag.spv | ||
|
||
# glslang -V shaders/simple_shader.vert -o shaders/simple_shader.vert.spv | ||
# glslang -V shaders/simple_shader.frag -o shaders/simple_shader.frag.spv |
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,6 +1,8 @@ | ||
#include "WorldScene.hpp" | ||
#include "logger.hpp" | ||
|
||
#include <algorithm> | ||
|
||
WorldScene::WorldScene() | ||
{ | ||
} | ||
|
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