summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/webgl-conf/checkout/conformance2/buffers/bound-buffer-size-change-test.html
blob: a61d154eb1988a9ae9f3397266b15112f45023aa (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
<!--
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 buffer size change test for bindBufferBase/bindBufferRange</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>
</head>
<body>
<div id="description"></div>
<div id="console"></div>
<script>
"use strict";
description("WebGL buffer size change for bindings through bindBufferBase/bindBufferRange");

// This test verifies the ES3 behavior, that the bound buffer range (offset, size) is not
// limited by the actual buffer size, and the driver is responsible that no out-of-range
// access may happen.

var wtu = WebGLTestUtils;

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

debug("");
debug("bindBufferBase with TRANSFORM_FEEDBACK_BUFFER target");
var buffer1 = gl.createBuffer();
gl.bindBufferBase(gl.TRANSFORM_FEEDBACK_BUFFER, 0, buffer1);
wtu.glErrorShouldBe(gl, gl.NO_ERROR,
    "Calling bindBufferBase on a buffer where no storage is allocated should succeed.");
shouldBe("gl.getParameter(gl.TRANSFORM_FEEDBACK_BUFFER_BINDING)", "buffer1");
shouldBe("gl.getIndexedParameter(gl.TRANSFORM_FEEDBACK_BUFFER_BINDING, 0)", "buffer1");
shouldBe("gl.getIndexedParameter(gl.TRANSFORM_FEEDBACK_BUFFER_SIZE, 0)", "0");
shouldBe("gl.getIndexedParameter(gl.TRANSFORM_FEEDBACK_BUFFER_START, 0)", "0");

gl.bufferData(gl.TRANSFORM_FEEDBACK_BUFFER, 4, gl.STATIC_DRAW);
shouldBe("gl.getIndexedParameter(gl.TRANSFORM_FEEDBACK_BUFFER_BINDING, 0)", "buffer1");
shouldBe("gl.getIndexedParameter(gl.TRANSFORM_FEEDBACK_BUFFER_SIZE, 0)", "0");
shouldBe("gl.getIndexedParameter(gl.TRANSFORM_FEEDBACK_BUFFER_START, 0)", "0");

wtu.glErrorShouldBe(gl, gl.NO_ERROR);

debug("");
debug("bindBufferBase with UNIFORM_BUFFER target");
var buffer2 = gl.createBuffer();
gl.bindBufferBase(gl.UNIFORM_BUFFER, 1, buffer2);
wtu.glErrorShouldBe(gl, gl.NO_ERROR,
    "Calling bindBufferBase on a buffer where no storage is allocated should succeed.");
shouldBe("gl.getParameter(gl.UNIFORM_BUFFER_BINDING)", "buffer2");
shouldBe("gl.getIndexedParameter(gl.UNIFORM_BUFFER_BINDING, 1)", "buffer2");
shouldBe("gl.getIndexedParameter(gl.UNIFORM_BUFFER_SIZE, 1)", "0");
shouldBe("gl.getIndexedParameter(gl.UNIFORM_BUFFER_START, 1)", "0");

gl.bufferData(gl.UNIFORM_BUFFER, 8, gl.STATIC_DRAW);
shouldBe("gl.getIndexedParameter(gl.UNIFORM_BUFFER_BINDING, 1)", "buffer2");
shouldBe("gl.getIndexedParameter(gl.UNIFORM_BUFFER_SIZE, 1)", "0");
shouldBe("gl.getIndexedParameter(gl.UNIFORM_BUFFER_START, 1)", "0");

wtu.glErrorShouldBe(gl, gl.NO_ERROR);

debug("");
debug("bindBufferRange with TRANSFORM_FEEDBACK_BUFFER target");
var buffer3 = gl.createBuffer();
gl.bindBufferRange(gl.TRANSFORM_FEEDBACK_BUFFER, 0, buffer3, 4, 8);
wtu.glErrorShouldBe(gl, gl.NO_ERROR,
    "Calling bindBufferRange on a buffer where no storage is allocated should succeed.");
shouldBe("gl.getParameter(gl.TRANSFORM_FEEDBACK_BUFFER_BINDING)", "buffer3");
shouldBe("gl.getIndexedParameter(gl.TRANSFORM_FEEDBACK_BUFFER_BINDING, 0)", "buffer3");
shouldBe("gl.getIndexedParameter(gl.TRANSFORM_FEEDBACK_BUFFER_SIZE, 0)", "8");
shouldBe("gl.getIndexedParameter(gl.TRANSFORM_FEEDBACK_BUFFER_START, 0)", "4");

gl.bufferData(gl.TRANSFORM_FEEDBACK_BUFFER, 4, gl.STATIC_DRAW);
shouldBe("gl.getIndexedParameter(gl.TRANSFORM_FEEDBACK_BUFFER_BINDING, 0)", "buffer3");
shouldBe("gl.getIndexedParameter(gl.TRANSFORM_FEEDBACK_BUFFER_SIZE, 0)", "8");
shouldBe("gl.getIndexedParameter(gl.TRANSFORM_FEEDBACK_BUFFER_START, 0)", "4");

gl.bufferData(gl.TRANSFORM_FEEDBACK_BUFFER, 12, gl.STATIC_DRAW);
shouldBe("gl.getIndexedParameter(gl.TRANSFORM_FEEDBACK_BUFFER_BINDING, 0)", "buffer3");
shouldBe("gl.getIndexedParameter(gl.TRANSFORM_FEEDBACK_BUFFER_SIZE, 0)", "8");
shouldBe("gl.getIndexedParameter(gl.TRANSFORM_FEEDBACK_BUFFER_START, 0)", "4");

wtu.glErrorShouldBe(gl, gl.NO_ERROR);

debug("");
debug("bindBufferRange with UNIFORM_BUFFER target");
var buffer4 = gl.createBuffer();
var offset = gl.getParameter(gl.UNIFORM_BUFFER_OFFSET_ALIGNMENT);
gl.bindBufferRange(gl.UNIFORM_BUFFER, 1, buffer4, offset, 12);
wtu.glErrorShouldBe(gl, gl.NO_ERROR,
    "Calling bindBufferRange on a buffer where no storage is allocated should succeed.");
shouldBe("gl.getParameter(gl.UNIFORM_BUFFER_BINDING)", "buffer4");
shouldBe("gl.getIndexedParameter(gl.UNIFORM_BUFFER_BINDING, 1)", "buffer4");
shouldBe("gl.getIndexedParameter(gl.UNIFORM_BUFFER_SIZE, 1)", "12");
shouldBe("gl.getIndexedParameter(gl.UNIFORM_BUFFER_START, 1)", "offset");

gl.bufferData(gl.UNIFORM_BUFFER, offset + 8, gl.STATIC_DRAW);
shouldBe("gl.getIndexedParameter(gl.UNIFORM_BUFFER_BINDING, 1)", "buffer4");
shouldBe("gl.getIndexedParameter(gl.UNIFORM_BUFFER_SIZE, 1)", "12");
shouldBe("gl.getIndexedParameter(gl.UNIFORM_BUFFER_START, 1)", "offset");

gl.bufferData(gl.UNIFORM_BUFFER, offset + 12, gl.STATIC_DRAW);
shouldBe("gl.getIndexedParameter(gl.UNIFORM_BUFFER_BINDING, 1)", "buffer4");
shouldBe("gl.getIndexedParameter(gl.UNIFORM_BUFFER_SIZE, 1)", "12");
shouldBe("gl.getIndexedParameter(gl.UNIFORM_BUFFER_START, 1)", "offset");

wtu.glErrorShouldBe(gl, gl.NO_ERROR);

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