bgfx/3rdparty/glsl-optimizer/tests/vertex/glsl140-integers-out.txt

32 lines
690 B
Text
Raw Normal View History

2012-10-07 23:41:18 -04:00
#version 140
uniform vec2 p;
2014-02-11 02:06:13 -05:00
in vec4 position;
out vec4 col;
flat out ivec4 colint;
2012-10-07 23:41:18 -04:00
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);
2014-10-11 15:32:43 -04:00
float tmpvar_2;
tmpvar_2 = roundEven(position.y);
col.y = tmpvar_2;
col.z = tmpvar_2;
2014-02-11 02:06:13 -05:00
col.w = (0.5 * (exp(position.w) + exp(
-(position.w)
)));
2012-10-07 23:41:18 -04:00
}
2014-02-11 02:06:13 -05:00
2014-10-11 15:32:43 -04:00
// stats: 12 alu 0 tex 0 flow
// inputs: 1
// #0: position (high float) 4x1 [-1]
// uniforms: 1 (total size: 0)
// #0: p (high float) 2x1 [-1]