mirror of
https://github.com/QIDITECH/QIDIStudio.git
synced 2026-02-03 02:18:41 +03:00
update resources
This commit is contained in:
11
resources/shaders/140/silhouette.vs
Normal file
11
resources/shaders/140/silhouette.vs
Normal file
@@ -0,0 +1,11 @@
|
||||
#version 140
|
||||
|
||||
uniform mat4 u_model_matrix;
|
||||
uniform mat4 u_view_projection_matrix;
|
||||
|
||||
in vec3 v_position;
|
||||
|
||||
void main()
|
||||
{
|
||||
gl_Position = u_view_projection_matrix * u_model_matrix * vec4(v_position, 1.0);
|
||||
}
|
||||
Reference in New Issue
Block a user