Added shaders and assets in temp folder

This commit is contained in:
Julian Nießner
2018-05-02 15:09:11 +02:00
parent f923cc7881
commit 4d07e92b29
10 changed files with 39 additions and 0 deletions

8
temp/frag.shader Normal file
View File

@@ -0,0 +1,8 @@
#version 300 es
precision mediump float;
out vec4 FragColor;
void main() {
FragColor = vec4(1.f, 0.5f, 0.2f, 1.0f);
}