Results for glslparsertest/CGDataTypes.frag

Overview

Status: fail
Result: fail

Back to summary

Details

Detail Value
returncode 1
time 0.255229949951
note
Returncode was 1
command
/home/mks-hackers/piglit/framework/../bin/glslparsertest tests/glslparsertest/shaders/CGDataTypes.frag fail 1.10
errors
  • Successfully compiled fragment shader tests/glslparsertest/shaders/CGDataTypes.frag: 0(12) : warning C7506: OpenGL does not define the global type half
  • 0(13) : warning C7506: OpenGL does not define the global type half2
  • 0(14) : warning C7506: OpenGL does not define the global type half3
  • 0(15) : warning C7506: OpenGL does not define the global type half4
  • 0(16) : warning C7506: OpenGL does not define the global type float2
  • 0(17) : warning C7506: OpenGL does not define the global type float3
  • 0(18) : warning C7506: OpenGL does not define the global type float4
  • 0(19) : warning C7506: OpenGL does not define the global type fixed
  • 0(20) : warning C7506: OpenGL does not define the global type fixed2
  • 0(21) : warning C7506: OpenGL does not define the global type fixed3
  • 0(22) : warning C7506: OpenGL does not define the global type fixed4
  • 0(23) : warning C7506: OpenGL does not define the global type float3x3
  • 0(24) : warning C7506: OpenGL does not define the global type float2x4
  • 0(25) : warning C7506: OpenGL does not define the global type half4x4
info
Returncode: 1

Errors:
Successfully compiled fragment shader tests/glslparsertest/shaders/CGDataTypes.frag: 0(12) : warning C7506: OpenGL does not define the global type half
0(13) : warning C7506: OpenGL does not define the global type half2
0(14) : warning C7506: OpenGL does not define the global type half3
0(15) : warning C7506: OpenGL does not define the global type half4
0(16) : warning C7506: OpenGL does not define the global type float2
0(17) : warning C7506: OpenGL does not define the global type float3
0(18) : warning C7506: OpenGL does not define the global type float4
0(19) : warning C7506: OpenGL does not define the global type fixed
0(20) : warning C7506: OpenGL does not define the global type fixed2
0(21) : warning C7506: OpenGL does not define the global type fixed3
0(22) : warning C7506: OpenGL does not define the global type fixed4
0(23) : warning C7506: OpenGL does not define the global type float3x3
0(24) : warning C7506: OpenGL does not define the global type float2x4
0(25) : warning C7506: OpenGL does not define the global type half4x4



Output:
Shader source:
// [config]
// expect_result: fail
// glsl_version: 1.10
//
// # NOTE: Config section was auto-generated from file
// # NOTE: 'glslparser.tests' at git revision
// # NOTE: 6cc17ae70b70d150aa1751f8e28db7b2a9bd50f0
// [end config]

void main()
{
	half h1; // Not a basic type.
	half2 h2; // Not a basic type.
	half3 h3; // Not a basic type.
	half4 h4; // Not a basic type.
	float2 f2; // Not a basic type.
	float3 f3; // Not a basic type.
	float4 f4; // Not a basic type.
	fixed fx1; // Not a basic type.
	fixed2 fx2; // Not a basic type.
	fixed3 fx3; // Not a basic type.
	fixed4 fx4; // Not a basic type.
	float3x3 f3x3; // Not a basic type.
	float2x4 f2x4; // Not a basic type.
	half4x4 h4x4; // Not a basic type.
}

Back to summary