mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
9 lines
190 B
Text
9 lines
190 B
Text
varying vec4 texcoord;
|
|
void main()
|
|
{
|
|
gl_Position.zw = gl_Vertex.xy*2.0;
|
|
gl_Position.xy = gl_Vertex.xy;
|
|
texcoord.x = gl_Vertex.z;
|
|
texcoord.yz = gl_Vertex.zw;
|
|
texcoord.w = gl_Vertex.x;
|
|
}
|