Added shaders and assets in temp folder
This commit is contained in:
14
temp/bitmapfrag.shader
Normal file
14
temp/bitmapfrag.shader
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user