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

14
temp/bitmapfrag.shader Normal file
View File

@@ -0,0 +1,14 @@
#version 300 es
precision mediump float;
in vec2 TexCoords;
out vec4 color;
uniform sampler2D text;
uniform vec3 textColor;
void main() {
vec4 sampled = vec4(1.0, 1.0, 1.0, texture(text, TexCoords).r);
color = vec4(textColor, 1.0) * sampled;
}