diff options
| author | Mel <einebeere@gmail.com> | 2024-02-12 12:55:11 +0100 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2024-02-12 12:55:11 +0100 |
| commit | d2b5fc5b3bc648afffa42375706429685ac63794 (patch) | |
| tree | a2dfbb241e1d46e5616c5884e5f3d685de2a2cb6 /assets/shaders/block_outline.frag.glsl | |
| parent | 588c7e87b7cab270698d43ca5c22d67793ae5fc4 (diff) | |
| download | meowcraft-d2b5fc5b3bc648afffa42375706429685ac63794.tar.zst meowcraft-d2b5fc5b3bc648afffa42375706429685ac63794.zip | |
Split rendering into own thread and sync through render action lists
Diffstat (limited to 'assets/shaders/block_outline.frag.glsl')
| -rw-r--r-- | assets/shaders/block_outline.frag.glsl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/assets/shaders/block_outline.frag.glsl b/assets/shaders/block_outline.frag.glsl new file mode 100644 index 0000000..ed278d8 --- /dev/null +++ b/assets/shaders/block_outline.frag.glsl @@ -0,0 +1,7 @@ +#version 330 core + +out vec4 color; + +void main() { + color = vec4(0.0, 0.0, 0.0, 1.0); +} \ No newline at end of file |
