summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/webgl-conf/checkout/conformance2/buffers/uniform-buffers-second-compile.html
blob: 936126856ec7265b75dcfefe72f1319480967914 (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
<!--
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 Buffers should work on second compile</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

layout(location=0) in vec4 position;
layout(std140, column_major) uniform Uniforms1 {
    mat4 transform;
};
out vec3 vColor;

void main() {
    gl_Position = transform * position;
}
</script>
<script id='fshader' type='x-shader/x-fragment'>
#version 300 es
precision highp float;

layout(std140) uniform Uniforms2 {
    vec4 color;
};
out vec4 fragColor;

void main(){
    fragColor = color;
}
</script>
</head>
<body>
<div id="description"></div>
<canvas id="canvas" style="width: 50px; height: 50px;"> </canvas>
<div id="console"></div>
<script>
"use strict";
description("This test verifies that getUniformBlockIndex isn't broken on second compile.");

debug("This is a regression test for <a href='http://crbug.com/716018'>http://crbug.com/716018</a>");
debug("");

var wtu = WebGLTestUtils;
var canvas = document.getElementById("canvas");
var gl = wtu.create3DContext(canvas, null, 2);

// Initialize
gl.clearColor(0, 0, 0, 1);
var vsSource = document.getElementById("vshader").text.trim();
var fsSource = document.getElementById("fshader").text.trim();

function runTest() {
    // Run twice to make sure that the second build does not cause errors
    // (i.e. due to caching).
    for (var i = 0; i < 2; ++i) {
        debug("Compile/test iteration " + i);

        var vertexShader = gl.createShader(gl.VERTEX_SHADER);
        gl.shaderSource(vertexShader, vsSource);
        gl.compileShader(vertexShader);
        // Note: if COMPILE_STATUS is retrieved here, it hides the bug.

        var fragmentShader = gl.createShader(gl.FRAGMENT_SHADER);
        gl.shaderSource(fragmentShader, fsSource);
        gl.compileShader(fragmentShader);
        // Note: if COMPILE_STATUS is retrieved here, it hides the bug.

        var program = gl.createProgram();
        gl.attachShader(program, vertexShader);
        gl.attachShader(program, fragmentShader);
        gl.linkProgram(program);

        gl.useProgram(program);

        var uniforms1Location = gl.getUniformBlockIndex(program, "Uniforms1");
        gl.uniformBlockBinding(program, uniforms1Location, 0);
        wtu.glErrorShouldBe(gl, gl.NO_ERROR, "uniforms1Location was " + uniforms1Location);

        var uniforms2Location = gl.getUniformBlockIndex(program, "Uniforms2");
        gl.uniformBlockBinding(program, uniforms2Location, 1);
        wtu.glErrorShouldBe(gl, gl.NO_ERROR, "uniforms2Location was " + uniforms2Location);

        debug("");
    }
}

runTest();

var successfullyParsed = true;
</script>

<script src="../../js/js-test-post.js"></script>
</body>
</html>