dom/imptests/html/webgl/test_compressedTexSubImage2D.html

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 <!doctype html>
michael@0 2 <title>compressedTexSubImage2D</title>
michael@0 3 <link rel=author href=mailto:Ms2ger@gmail.com title=Ms2ger>
michael@0 4 <link rel=help href=https://www.khronos.org/registry/webgl/specs/latest/#5.14.8>
michael@0 5 <script src=/resources/testharness.js></script>
michael@0 6 <script src=/resources/testharnessreport.js></script>
michael@0 7 <script src=common.js></script>
michael@0 8
michael@0 9 <div id=log></div>
michael@0 10 <script>
michael@0 11 test(function() {
michael@0 12 var COMPRESSED_RGB_S3TC_DXT1_EXT = 0x83F0;
michael@0 13 var gl = getGl();
michael@0 14
michael@0 15 var tex = gl.createTexture();
michael@0 16 gl.bindTexture(gl.TEXTURE_2D, tex);
michael@0 17
michael@0 18 shouldGenerateGLError(gl, gl.INVALID_ENUM, function() {
michael@0 19 gl.compressedTexSubImage2D(gl.TEXTURE_2D, 0, 0, 0, 10, 10, COMPRESSED_RGB_S3TC_DXT1_EXT, new Uint8Array(8));
michael@0 20 });
michael@0 21 shouldGenerateGLError(gl, gl.INVALID_ENUM, function() {
michael@0 22 gl.compressedTexSubImage2D(gl.TEXTURE_2D, 0, 0, 0, 10, 10, COMPRESSED_RGB_S3TC_DXT1_EXT, new Uint8Array(8), null);
michael@0 23 });
michael@0 24 test(function() {
michael@0 25 assert_throws(new TypeError(), function() {
michael@0 26 gl.compressedTexSubImage2D(gl.TEXTURE_2D, 0, 0, 0, 10, 10, COMPRESSED_RGB_S3TC_DXT1_EXT);
michael@0 27 });
michael@0 28 }, "Should throw a TypeError when passing too few arguments.");
michael@0 29 });
michael@0 30 </script>

mercurial