mirror of
https://github.com/QIDITECH/QIDIStudio.git
synced 2026-01-31 00:48:41 +03:00
update resources
This commit is contained in:
12
resources/shaders/140/flat_texture.fs
Normal file
12
resources/shaders/140/flat_texture.fs
Normal file
@@ -0,0 +1,12 @@
|
||||
#version 140
|
||||
|
||||
uniform sampler2D u_texture;
|
||||
|
||||
in vec2 v_texcoord;
|
||||
|
||||
out vec4 frag_color;
|
||||
|
||||
void main()
|
||||
{
|
||||
frag_color = texture(u_texture, v_texcoord);
|
||||
}
|
||||
Reference in New Issue
Block a user