summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/webgl-conf/checkout/conformance2/attribs/render-no-enabled-attrib-arrays.html
blob: 841119fecbf5b6eefc08fff4a046668af852f395 (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
<!--
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>
<title>Verify drawing without any enabled vertex attribute arrays</title>
<meta charset="utf-8">
<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 inColor;
out vec4 varyingColor;
void main()
{
    varyingColor = inColor;
    gl_Position = vec4(0.0, 0.0, 0.0, 1.0);
    gl_PointSize = 1.0;
}
</script>
<script id='fshader' type='x-shader/x-fragment'>#version 300 es
precision mediump float;
in vec4 varyingColor;
layout(location=0) out vec4 oColor;
void main()
{
    oColor = varyingColor;
}
</script>
<script>
"use strict";

function runTest() {
    var wtu = WebGLTestUtils;
    var gl = wtu.create3DContext("testCanvas", undefined, 2);
    if (!gl) {
        testFailed('could not create context');
        return;
    }
    var program = wtu.setupProgram(gl, ['vshader', 'fshader']);
    gl.disableVertexAttribArray(0);
    gl.vertexAttrib4f(0, 0.0, 1.0, 0.0, 1.0);
    gl.clearColor(1, 0, 0, 1);
    gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);
    gl.drawArrays(gl.POINTS, 0, 1);
    wtu.checkCanvas(gl, [ 0, 255, 0, 255 ], "Canvas should be covered by a single green point");
}
</script>
</head>
<body>
<canvas id="testCanvas" width="1" height="1" style="width: 32px; height: 32px;"></canvas>
<div id="description"></div>
<div id="console"></div>
<script>
"use strict";
description();
runTest();
var successfullyParsed = true;
</script>
<script src="../../js/js-test-post.js"></script>
</body>
</html>