summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/webgl-conf/checkout/conformance2/glsl3/short-circuiting-in-loop-condition.html
blob: 802d67aa4a3376c93591aea0beeca9da35f57761 (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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<!--
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>Short circuit in loop condition test</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="fshaderWhile" type="x-shader/x-fragment">#version 300 es
precision mediump float;
uniform bool u;
out vec4 result;
int sideEffectCounter;

bool foo() {
  ++sideEffectCounter;
  return true;
}

void main() {
  sideEffectCounter = 0;
  int iterations = 0;

  while(u && foo()) {
    ++iterations;
    if (iterations >= 10) {
      break;
    }
  }

  bool success = (u && sideEffectCounter == 10) || (!u && sideEffectCounter == 0);
  result = success ? vec4(0, 1.0, 0, 1.0) : vec4(0, 1.0, 0, 0);
}
</script>
<script id="fshaderForCondition" type="x-shader/x-fragment">#version 300 es
precision mediump float;
uniform bool u;
out vec4 result;
int sideEffectCounter;

bool foo() {
  ++sideEffectCounter;
  return true;
}

void main() {
  sideEffectCounter = 0;
  for(int iterations = 0; u && foo();) {
    ++iterations;
    if (iterations >= 10) {
      break;
    }
  }

  bool success = (u && sideEffectCounter == 10) || (!u && sideEffectCounter == 0);
  result = success ? vec4(0, 1.0, 0, 1.0) : vec4(0, 1.0, 0, 0);
}
</script>
<script id="fshaderFor" type="x-shader/x-fragment">#version 300 es
precision mediump float;
uniform bool u;
out vec4 result;
int sideEffectCounter;

bool foo() {
  ++sideEffectCounter;
  return true;
}

void main() {
  sideEffectCounter = 0;
  for(int iterations = 0; true; u && foo()) {
    ++iterations;
    if (iterations > 10) {
      break;
    }
  }

  bool success = (u && sideEffectCounter == 10) || (!u && sideEffectCounter == 0);
  result = success ? vec4(0, 1.0, 0, 1.0) : vec4(0, 1.0, 0, 0);
}
</script>
<script id="fshaderDoWhile" type="x-shader/x-fragment">#version 300 es
precision mediump float;
uniform bool u;
out vec4 result;
int sideEffectCounter;

bool foo() {
  ++sideEffectCounter;
  return true;
}

void main() {
  sideEffectCounter = 0;
  int iterations = 0;

  do {
    ++iterations;
    if (iterations > 10) {
      break;
    }
  } while (u && foo());

  bool success = (u && sideEffectCounter == 10) || (!u && sideEffectCounter == 0);
  result = success ? vec4(0, 1.0, 0, 1.0) : vec4(0, 1.0, 0, 0);
}
</script>
<script id="fshaderSequence" type="x-shader/x-fragment">#version 300 es
precision mediump float;
uniform bool u;
out vec4 result;
int sideEffectCounter;

bool foo() {
  ++sideEffectCounter;
  return true;
}

void main() {
  sideEffectCounter = 0;
  int iterations = 0;

  while(u, u && foo()) {
    ++iterations;
    if (iterations >= 10) {
      break;
    }
  }

  bool success = (u && sideEffectCounter == 10) || (!u && sideEffectCounter == 0);
  result = success ? vec4(0, 1.0, 0, 1.0) : vec4(0, 1.0, 0, 0);
}
</script>
<script type="text/javascript">
"use strict";
description("Test behavior of a short-circuiting operator in a loop using a function call with side effects");

var testShaders = [
  {fShaderId: 'fshaderWhile', description: 'in while loop condition'},
  {fShaderId: 'fshaderForCondition', description: 'in for loop condition'},
  {fShaderId: 'fshaderFor', description: 'in for loop expression'},
  {fShaderId: 'fshaderDoWhile', description: 'in do-while loop condition'},
  {fShaderId: 'fshaderSequence', description: 'inside a sequence in while loop condition'}
];

var testList = [];

for (var i = 0; i < testShaders.length; ++i) {
  testList.push({
    fShaderId: testShaders[i].fShaderId,
    fShaderSuccess: true,
    linkSuccess: true,
    passMsg: 'Short-circuiting operator with a true condition ' + testShaders[i].description,
    uniforms: [{name: "u", functionName: "uniform1i", value: 1}]
  });
  testList.push({
    fShaderId: testShaders[i].fShaderId,
    fShaderSuccess: true,
    linkSuccess: true,
    passMsg: 'Short-circuiting operator with a false condition ' + testShaders[i].description,
    uniforms: [{name: "u", functionName: "uniform1i", value: 0}]
  });
}

GLSLConformanceTester.runRenderTests(testList, 2);
</script>
</body>
</html>