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