Results for spec/glsl-1.30/compiler/built-in-functions/sinh-vec3.vert

Overview

Status: fail
Result: fail

Back to summary

Details

Detail Value
returncode 1
time 0.221606016159
note
Returncode was 1
command
/home/mks-hackers/piglit/framework/../bin/glslparsertest tests/../generated_tests/spec/glsl-1.30/compiler/built-in-functions/sinh-vec3.vert pass 1.30
errors
  • Failed to compile vertex shader tests/../generated_tests/spec/glsl-1.30/compiler/built-in-functions/sinh-vec3.vert: 0(14) : error C1307: non constant expression for array size
  • 0(15) : error C1307: non constant expression for array size
info
Returncode: 1

Errors:
Failed to compile vertex shader tests/../generated_tests/spec/glsl-1.30/compiler/built-in-functions/sinh-vec3.vert: 0(14) : error C1307: non constant expression for array size
0(15) : error C1307: non constant expression for array size



Output:
Shader source:
/* [config]
 * expect_result: pass
 * glsl_version: 1.30
 * [end config]
 *
 * Check that the following test vectors are constant folded correctly:
 * sinh(vec3(-2.0, -0.66666669, 0.66666669)) => vec3(-3.6268604, -0.7171585, 0.7171585)
 * sinh(vec3(2.0, -2.0, -0.66666669)) => vec3(3.6268604, -3.6268604, -0.7171585)
 */
#version 130

void main()
{
  float[distance(sinh(vec3(-2.0, -0.66666669, 0.66666669)), vec3(-3.6268604, -0.7171585, 0.7171585)) <= 0.0037659991 ? 1 : -1] array0;
  float[distance(sinh(vec3(2.0, -2.0, -0.66666669)), vec3(3.6268604, -3.6268604, -0.7171585)) <= 0.005179049 ? 1 : -1] array1;
  gl_Position = vec4(array0.length() + array1.length());
}

Back to summary