summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/webgl-conf/checkout/conformance/glsl/bugs/constant-precision-qualifier.html
blob: d3628862bcbdc646a3d8f54a6dc6e6dc518e2b33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!--
Copyright (c) 2019 The Khronos Group Inc.
Use of this source code is governed by an MIT-style license that can be
found in the LICENSE.txt file.
-->

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Bug - the precision qualifier of a constant variable should affect the precision of a consuming operation</title>
<link rel="stylesheet" href="../../../resources/js-test-style.css"/>
<script src="../../../js/js-test-pre.js"></script>
<script src="../../../js/webgl-test-utils.js"></script>
<script src="../../../js/glsl-conformance-test.js"></script>
</head>
<body>
<div id="description"></div>
<div id="console"></div>
<script id="fshader" type="x-shader/x-fragment">
// It is assumed that uTest is set to 0. It's here to make the expression not constant.
uniform mediump float uTest;

void main() {
    // exact representation of 4096.5 requires 13 bits of relative precision.
    const highp float c = 4096.5;
    mediump float a = 0.0;
    // Below, addition should be evaluated at highp, since one of the operands has the highp qualifier.
    // Thus fract should also be evaluated at highp.
    // See OpenGL ES Shading Language spec section 4.5.2.
    // This should make the result 0.5, since highp provides at least 16 bits of relative precision.
    // (exceptions for operation precision are allowed for a small number of computationally
    // intensive built-in functions, but it is reasonable to think that fract is not one of those).
    // However, if fract() is incorrectly evaluated at minimum precision fulfilling mediump criteria,
    // or at IEEE half float precision, the result is 0.0.
    a = fract(c + uTest);

    // Multiply by 2.0 to make the color green.
    gl_FragColor = vec4(0.0, 2.0 * a, 0.0, 1.0);
}
</script>
<script id="fshaderNoConstants" type="x-shader/x-fragment">
// This shader has the same functionality as the one above, but it doesn't contain
// operations that can be constant folded at compile-time.
// It's here to provide a point of comparison.
uniform mediump float uTest;
uniform highp float uTestHigh;

void main() {
    highp float c = 4096.5 + uTestHigh;
    mediump float a = 0.0;
    a = fract(c + uTest);
    gl_FragColor = vec4(0.0, 2.0 * a, 0.0, 1.0);
}
</script>
<script id="fshaderAllHighp" type="x-shader/x-fragment">
// This shader has the same functionality as the one above, but it only uses highp.
// It's here to provide a point of comparison.
uniform highp float uTest;

void main() {
    highp float c = 4096.5 + uTest;
    highp float a = 0.0;
    a = fract(c + uTest);
    gl_FragColor = vec4(0.0, 2.0 * a, 0.0, 1.0);
}
</script>
<script type="application/javascript">
"use strict";
description();

function test() {
  var wtu = WebGLTestUtils;
  var gl = wtu.create3DContext();
  if (!gl) {
    testFailed("context does not exist");
    finishTest();
    return;
  }
  if (gl.getShaderPrecisionFormat(gl.FRAGMENT_SHADER, gl.HIGH_FLOAT).precision == 0) {
    testPassed("highp precision not supported");
    finishTest();
  } else {
    GLSLConformanceTester.runRenderTests([
    {
      fShaderId: 'fshader',
      fShaderSuccess: true,
      linkSuccess: true,
      passMsg: 'The precision qualifier of a constant affects built-in function results',
      uniforms: [{name: "uTest", functionName: "uniform1f", value: 0}]
    },
    {
      fShaderId: 'fshaderNoConstants',
      fShaderSuccess: true,
      linkSuccess: true,
      passMsg: 'The precision qualifier of a variable affects built-in function results',
      uniforms: [{name: "uTest", functionName: "uniform1f", value: 0},
                 {name: "uTestHigh", functionName: "uniform1f", value: 0}]
    },
    {
      fShaderId: 'fshaderAllHighp',
      fShaderSuccess: true,
      linkSuccess: true,
      passMsg: 'All variables are qualified as highp',
      uniforms: [{name: "uTest", functionName: "uniform1f", value: 0}]
    },
    ]);
  }
};

test();
var successfullyParsed = true;
</script>
</body>
</html>