Results for glslparsertest/glsl2/array-17.vert

Overview

Status: fail
Result: fail

Back to summary

Details

Detail Value
returncode 1
time 0.874000072479
note Returncode was 1
errors
  • Failed to compile vertex shader tests/glslparsertest/glsl2\\array-17.vert: ERROR: 0:14: \'\' : the second dimension of array must be initialized
  • ERROR: 0:16: \'GL_3DL_array_objects\' : extension is disabled
  • ERROR: 0:16: \'constructor\' : too many arguments
  • ERROR: 0:16: \'assign\' : cannot convert from \'const float\' to \'array of float\'
  • ERROR: 4 compilation errors. No code generated.
info
Returncode: 1

Errors:
Failed to compile vertex shader tests/glslparsertest/glsl2\array-17.vert: ERROR: 0:14: '' : the second dimension of array must be initialized 
ERROR: 0:16: 'GL_3DL_array_objects' : extension is disabled
ERROR: 0:16: 'constructor' : too many arguments 
ERROR: 0:16: 'assign' :  cannot convert from 'const float' to 'array of float'
ERROR: 4 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]

#version 120
/* PASS - implicit conversions are done in array constructors */
void main()
{
  float a[];

  a = float[](4, 5);

  gl_Position = gl_Vertex;
}

Back to summary