Results for glslparsertest/glsl2/const-array-04.frag

Overview

Status: fail
Result: fail

Back to summary

Details

Detail Value
returncode 1
time 0.873000144958
note Returncode was 1
errors
  • Failed to compile fragment shader tests/glslparsertest/glsl2\\const-array-04.frag: ERROR: 0:14: \'GL_3DL_array_objects\' : extension is disabled
  • ERROR: 0:14: \'constructor\' : too many arguments
  • ERROR: 0:14: \'GL_3DL_array_objects\' : extension is disabled
  • ERROR: 0:14: \'GL_3DL_array_objects\' : extension is disabled
  • ERROR: 0:15: \'GL_3DL_array_objects\' : extension is disabled
  • ERROR: 0:15: \'constructor\' : too many arguments
  • ERROR: 0:15: \'GL_3DL_array_objects\' : extension is disabled
  • ERROR: 0:15: \'GL_3DL_array_objects\' : extension is disabled
  • ERROR: 0:17: \'a\' : undeclared identifier
  • ERROR: 0:17: \'b\' : undeclared identifier
  • ERROR: 0:18: \'a\' : left of \'[\' is not of type array, matrix, or vector
  • ERROR: 0:18: \'a\' : left of \'[\' is not of type array, matrix, or vector
  • ERROR: 0:18: \'a\' : left of \'[\' is not of type array, matrix, or vector
  • ERROR: 0:18: \'a\' : left of \'[\' is not of type array, matrix, or vector
  • ERROR: 14 compilation errors. No code generated.
info
Returncode: 1

Errors:
Failed to compile fragment shader tests/glslparsertest/glsl2\const-array-04.frag: ERROR: 0:14: 'GL_3DL_array_objects' : extension is disabled
ERROR: 0:14: 'constructor' : too many arguments 
ERROR: 0:14: 'GL_3DL_array_objects' : extension is disabled
ERROR: 0:14: 'GL_3DL_array_objects' : extension is disabled
ERROR: 0:15: 'GL_3DL_array_objects' : extension is disabled
ERROR: 0:15: 'constructor' : too many arguments 
ERROR: 0:15: 'GL_3DL_array_objects' : extension is disabled
ERROR: 0:15: 'GL_3DL_array_objects' : extension is disabled
ERROR: 0:17: 'a' : undeclared identifier 
ERROR: 0:17: 'b' : undeclared identifier 
ERROR: 0:18: 'a' :  left of '[' is not of type array, matrix, or vector  
ERROR: 0:18: 'a' :  left of '[' is not of type array, matrix, or vector  
ERROR: 0:18: 'a' :  left of '[' is not of type array, matrix, or vector  
ERROR: 0:18: 'a' :  left of '[' is not of type array, matrix, or vector  
ERROR: 14 compilation errors.  No code generated.




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

/* PASS */
#version 120
void main()
{
   const float a[] = float[](0.0, 1.0);
   const float b[2] = float[](4.0, 17.7);

   if (a != b)
      gl_FragColor = vec4(a[0], a[1], a[0], a[1]);
   else
      gl_FragColor = vec4(1.0, 0.0, 0.0, 1.0);
}

Back to summary