Results for glslparsertest/glsl2/constructor-18.vert

Overview

Status: fail
Result: fail

Back to summary

Details

Detail Value
returncode 1
time 0.148698091507
note Returncode was 1
errors
  • Failed to compile vertex shader tests/glslparsertest/glsl2/constructor-18.vert: ERROR: 0:8: \'array of structure\' : constructor not supported for type
  • ERROR: 0:8: \'array of structure\' : no matching overloaded function found
  • ERROR: 0:8: \'temp\' : redefinition
info
Returncode: 1

Errors:
Failed to compile vertex shader tests/glslparsertest/glsl2/constructor-18.vert: ERROR: 0:8: 'array of structure' : constructor not supported for type 
ERROR: 0:8: 'array of structure' : no matching overloaded function found 
ERROR: 0:8: 'temp' : redefinition 



Output:
Shader source:
/* PASS */
#version 120

void main()
{
  struct s { int i; };

  s temp[2] = s[2](s(1), s(2));
}

Back to summary