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/mainframe_composite.vs
Normal file
12
resources/shaders/140/mainframe_composite.vs
Normal file
@@ -0,0 +1,12 @@
|
||||
#version 140
|
||||
|
||||
in vec3 v_position;
|
||||
in vec2 v_tex_coord;
|
||||
|
||||
out vec2 tex_coords;
|
||||
|
||||
void main()
|
||||
{
|
||||
tex_coords = v_tex_coord;
|
||||
gl_Position = vec4(v_position, 1.0);
|
||||
}
|
||||
Reference in New Issue
Block a user