mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 17:18:12 -05:00
27 lines
574 B
Text
27 lines
574 B
Text
#version 140
|
|
uniform vec2 p;
|
|
in vec4 position;
|
|
out vec4 col;
|
|
flat out ivec4 colint;
|
|
void main ()
|
|
{
|
|
vec4 tmpvar_1;
|
|
tmpvar_1.zw = vec2(0.0, 0.0);
|
|
tmpvar_1.xy = p;
|
|
gl_Position = (tmpvar_1 + position);
|
|
colint.x = gl_VertexID;
|
|
colint.y = (gl_InstanceID ^ gl_InstanceID);
|
|
colint.z = (gl_InstanceID << 2);
|
|
colint.w = (gl_VertexID + colint.y);
|
|
col.x = trunc(position.x);
|
|
float cse_2;
|
|
cse_2 = roundEven(position.y);
|
|
col.y = cse_2;
|
|
col.z = cse_2;
|
|
col.w = (0.5 * (exp(position.w) + exp(
|
|
-(position.w)
|
|
)));
|
|
}
|
|
|
|
|
|
// inputs: 1, stats: 12 alu 0 tex 0 flow
|