mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-01-22 04:37:05 +00:00
[client] egl: added missing vertex shader file
This commit is contained in:
parent
92de467edc
commit
d24bc75519
14
client/renderers/EGL/shader/basic.vert
Normal file
14
client/renderers/EGL/shader/basic.vert
Normal file
@ -0,0 +1,14 @@
|
||||
#version 300 es
|
||||
|
||||
precision mediump float;
|
||||
|
||||
layout(location = 0) in vec2 uVertex;
|
||||
layout(location = 1) in vec2 uUV;
|
||||
|
||||
out vec2 iFragCoord;
|
||||
|
||||
void main()
|
||||
{
|
||||
gl_Position.xy = uVertex;
|
||||
iFragCoord = uUV;
|
||||
}
|
Loading…
Reference in New Issue
Block a user