blob: 3ae6836ebea83f18d5f340ff5c80eefe7dffc35d [file] [log] [blame]
<!--
/*
** Copyright (c) 2018 The Khronos Group Inc.
**
** Permission is hereby granted, free of charge, to any person obtaining a
** copy of this software and/or associated documentation files (the
** "Materials"), to deal in the Materials without restriction, including
** without limitation the rights to use, copy, modify, merge, publish,
** distribute, sublicense, and/or sell copies of the Materials, and to
** permit persons to whom the Materials are furnished to do so, subject to
** the following conditions:
**
** The above copyright notice and this permission notice shall be included
** in all copies or substantial portions of the Materials.
**
** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
*/
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>WebGL buffer deletion behavior 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>
</head>
<body>
<div id="description"></div>
<div id="console"></div>
<script>
"use strict";
description("Test buffer deletion behavior.");
// This is a regression test for https://crbug.com/822976
var wtu = WebGLTestUtils;
var gl = wtu.create3DContext(undefined, undefined, 2);
wtu.glErrorShouldBe(gl, gl.NO_ERROR, "Should be no errors from setup.");
function runTexImageTest(gl) {
debug("");
var buffer = gl.createBuffer();
gl.bindBuffer(gl.PIXEL_UNPACK_BUFFER, buffer);
gl.bufferData(gl.PIXEL_UNPACK_BUFFER, 4, gl.DYNAMIC_DRAW);
gl.bindBufferBase(gl.UNIFORM_BUFFER, 0, buffer);
gl.deleteBuffer(buffer);
// Indexed uniform buffer bindings should not prevent a buffer from being
// deleted. Therefore, PIXEL_UNPACK_BUFFER binding should also be 0.
wtu.glErrorShouldBe(gl, gl.NO_ERROR, "no error");
var tex = gl.createTexture();
gl.bindTexture(gl.TEXTURE_2D, tex);
var data = new Uint8Array(1024);
gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA8, 16, 16, 0,
gl.RGBA, gl.UNSIGNED_BYTE, data);
wtu.glErrorShouldBe(gl, gl.NO_ERROR, "texImage2D should succeed");
// Clean up bindings just in case an implementation gets it wrong.
gl.bindBuffer(gl.PIXEL_UNPACK_BUFFER, null);
gl.bindBufferBase(gl.UNIFORM_BUFFER, 0, null);
}
function runReadPixelsTest(gl) {
debug("");
var buffer = gl.createBuffer();
gl.bindBuffer(gl.PIXEL_PACK_BUFFER, buffer);
gl.bufferData(gl.PIXEL_PACK_BUFFER, 4, gl.DYNAMIC_DRAW);
gl.bindBufferBase(gl.UNIFORM_BUFFER, 0, buffer);
gl.deleteBuffer(buffer);
// Indexed transform feedback buffer bindings should not prevent a buffer
// from being deleted. Therefore, PIXEL_PACK_BUFFER binding should also be 0.
wtu.glErrorShouldBe(gl, gl.NO_ERROR, "no error");
var buffer = new Uint8Array(1024);
gl.readPixels(0, 0, 16, 16, gl.RGBA, gl.UNSIGNED_BYTE, buffer);
wtu.glErrorShouldBe(gl, gl.NO_ERROR, "readPixels should succeed");
// Clean up bindings just in case an implementation gets it wrong.
gl.bindBuffer(gl.PIXEL_PACK_BUFFER, null);
gl.bindBufferBase(gl.UNIFORM_BUFFER, 0, null);
}
runTexImageTest(gl);
runReadPixelsTest(gl);
debug("");
var successfullyParsed = true;
</script>
<script src="../../js/js-test-post.js"></script>
</body>
</html>