Results for glslparsertest/glsl2/const-matrix-multiply-02.frag

Overview

Status: fail
Result: fail

Back to summary

Details

Detail Value
returncode 1
time 0.172972917557
note Returncode was 1
errors
  • Failed to compile fragment shader tests/glslparsertest/glsl2/const-matrix-multiply-02.frag: ERROR: 0:12: \'const\' : non-matching types for const initializer
info
Returncode: 1

Errors:
Failed to compile fragment shader tests/glslparsertest/glsl2/const-matrix-multiply-02.frag: ERROR: 0:12: 'const' :  non-matching types for const initializer  



Output:
Shader source:
#version 120
void main()
{
   const mat3x2 c1 = mat3x2(1.0, 2.0, 3.0, 4.0, 5.0, 6.0);
   const mat4x3 c2 = mat4x3(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0,
                            9.0, 10.0, 11.0, 12.0);
   /* Should be:
    * 22 49 76  103
    * 28 64 100 136
    */

   const mat4x2 m = c1 * c2;
}


Back to summary