summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/webgl-conf/checkout/conformance2/uniforms/uniform-blocks-with-arrays.html
blob: 2d40a62c005a12030e442e6bcb406fd3bf2f5a78 (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>WebGL uniform blocks containing arrays conformance tests</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 id="vshader" type="x-shader/x-vertex">#version 300 es
in vec4 vPosition;
void main() {
    gl_Position = vPosition;
}
</script>
<script id="fshaderArraysOfStructs" type="x-shader/x-fragment">#version 300 es
precision highp float;
out vec4 my_FragColor;
struct light_t {
    vec4 intensity;
};
const int maxLights = 2;
layout(std140) uniform lightData { light_t lights[maxLights]; };
vec4 processLight(vec4 lighting, light_t light)
{
    return lighting + light.intensity;
}
void main()
{
    vec4 lighting = vec4(0, 1, 0, 1);
    for (int n = 0; n < maxLights; n++)
        lighting = processLight(lighting, lights[n]);
    my_FragColor = lighting;
}
</script>
<script id="fshaderArraysOfStructsContainingArrays" type="x-shader/x-fragment">#version 300 es
precision highp float;
out vec4 my_FragColor;
struct light_t {
    vec4 intensity[3];
};
const int maxLights = 2;
layout(std140) uniform lightData { light_t lights[maxLights]; };
vec4 processLight(vec4 lighting, light_t light)
{
    return lighting + light.intensity[1];
}
void main()
{
    vec4 lighting = vec4(0, 1, 0, 1);
    for (int n = 0; n < maxLights; n++)
        lighting = processLight(lighting, lights[n]);
    my_FragColor = lighting;
}
</script>
</head>
<body>
<div id="description"></div>
<div id="console"></div>
<script>
"use strict";
description();

// GLSL ES 3.00.6 section 4.3.7:
// "Otherwise, built-in types, previously declared structures, and arrays of these are allowed as the type of a declarator in the same manner they are allowed outside a block."

var wtu = WebGLTestUtils;
var gl = wtu.create3DContext(undefined, undefined, 2);

function runTest(fragShader, bufferFloatCount, shaderBlockDescription) {
    debug('');
    debug('Testing fragment shader with an uniform block containing ' + shaderBlockDescription);
    var program = wtu.setupProgram(gl, ['vshader', fragShader], ['vPosition'], undefined, true);
    if (!program) {
        testFailed("Loading program failed");
        return;
    }
    var blockIndex = gl.getUniformBlockIndex(program, "lightData");

    var uniformBuffer = gl.createBuffer();
    gl.bindBuffer(gl.UNIFORM_BUFFER, uniformBuffer);
    gl.bufferData(gl.UNIFORM_BUFFER, new Float32Array(bufferFloatCount), gl.DYNAMIC_READ);

    gl.bindBufferBase(gl.UNIFORM_BUFFER, 0, uniformBuffer);
    gl.uniformBlockBinding(program, blockIndex, 0);

    wtu.glErrorShouldBe(gl, gl.NO_ERROR, "No errors from uniform buffer setup");

    wtu.clearAndDrawUnitQuad(gl);

    wtu.glErrorShouldBe(gl, gl.NO_ERROR, "No errors from draw");

    wtu.checkCanvas(gl, [0, 255, 0, 255], 'should be green', 1);
}

if (!gl) {
    testFailed("WebGL context creation failed");
} else {
    wtu.setupUnitQuad(gl);
    runTest("fshaderArraysOfStructs", 2 * 4, 'arrays of structs');
    runTest("fshaderArraysOfStructsContainingArrays", 2 * 3 * 4, 'arrays of structs containing arrays');
}

debug("");
var successfullyParsed = true;
</script>
<script src="../../js/js-test-post.js"></script>

</body>
</html>