mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 17:18:12 -05:00
12 lines
242 B
Text
12 lines
242 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;
|
|
}
|
|
|
|
|
|
// inputs: 1, stats: 1 alu 0 tex 0 flow
|