Results for glslparsertest/glsl2/constructor-18.vert

Overview

Status: fail
Result: fail

Back to summary

Details

Detail Value
returncode 1
time 0.0277168750763
note Returncode was 1
errors
  • Failed to compile vertex shader tests/glslparsertest/glsl2/constructor-18.vert: 0:17(18): error: syntax error, unexpected \'(\', expecting \',\' or \';\'
info
Returncode: 1

Errors:
Failed to compile vertex shader tests/glslparsertest/glsl2/constructor-18.vert: 0:17(18): error: syntax error, unexpected '(', expecting ',' or ';'



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()
{
  struct s { int i; };

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

Back to summary