-
Notifications
You must be signed in to change notification settings - Fork 24
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
Showing
23 changed files
with
57 additions
and
72 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
cd /D "%~dp0" | ||
|
||
CALL :compile_shaders_in_dir .\resources\shaders | ||
CALL :compile_shaders_in_dir .\tests\resources\observer\block\shaders\global_lighting | ||
CALL :compile_shaders_in_dir .\tests\resources\observer\isometric\shaders\lighting | ||
CALL :compile_shaders_in_dir .\tests\resources\observer\sprite\shaders\health_bars | ||
|
||
EXIT /B 0 | ||
|
||
:compile_shaders_in_dir | ||
glslc %~1\triangle-textured.frag -o %~1\triangle-textured.frag.spv | ||
glslc %~1\triangle-textured.vert -o %~1\triangle-textured.vert.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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
|
||
cd "$(dirname "$0")" | ||
|
||
compile_shaders_in_dir () { | ||
glslc $1/triangle-textured.frag -o $1/triangle-textured.frag.spv | ||
glslc $1/triangle-textured.vert -o $1/triangle-textured.vert.spv | ||
} | ||
|
||
compile_shaders_in_dir ./resources/shaders | ||
compile_shaders_in_dir ./tests/resources/observer/block/shaders/global_lighting | ||
compile_shaders_in_dir ./tests/resources/observer/isometric/shaders/lighting | ||
compile_shaders_in_dir ./tests/resources/observer/sprite/shaders/health_bars |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -71,7 +71,7 @@ def griddly_package_data(config='Debug'): | |
|
||
setup( | ||
name='griddly', | ||
version="1.4.1", | ||
version="1.4.2", | ||
author_email="[email protected]", | ||
description="Griddly Python Libraries", | ||
long_description=long_description, | ||
|
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
|
@@ -1203,4 +1203,4 @@ uint8_t* VulkanDevice::renderFrame() { | |
return imageRGBA_; | ||
} | ||
|
||
} // namespace vk | ||
} // namespace vk |
6 changes: 0 additions & 6 deletions
6
src/Griddly/Core/Observers/Vulkan/resources/shaders/compile_shaders.bat
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
src/Griddly/Core/Observers/Vulkan/resources/shaders/compile_shaders.sh
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
tests/resources/observer/block/shaders/global_lighting/compile_shaders.sh
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
tests/resources/observer/isometric/shaders/lighting/compile_shaders.sh
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
tests/resources/observer/sprite/shaders/health_bars/compile_shaders.sh
This file was deleted.
Oops, something went wrong.
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