Skip to content

Commit

Permalink
Merge pull request #747 from dvander/misc-parameters
Browse files Browse the repository at this point in the history
Add tests for miscellaneous parameters.
  • Loading branch information
toji committed Oct 13, 2014
2 parents 6c215b6 + 26b5174 commit 3b7514a
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sdk/tests/conformance2/core/00_test_list.txt
Expand Up @@ -2,9 +2,10 @@ draw-buffers.html
element-index-uint.html
frag-depth.html
instanced-arrays.html
misc-parameters.html
tex-mipmap-levels.html
tex-new-formats.html
tex-storage-2d.html
tex-storage-and-subimage-3d.html
texture-npot.html
vertex-array-object.html
tex-mipmap-levels.html
texture-npot.html
67 changes: 67 additions & 0 deletions sdk/tests/conformance2/core/misc-parameters.html
@@ -0,0 +1,67 @@
<!--
/*
** Copyright (c) 2014 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>WebGL2 Non-Power of 2 texture conformance test.</title>
<link rel="stylesheet" href="../../resources/js-test-style.css"/>
<script src="../../resources/js-test-pre.js"></script>
<script src="../../conformance/resources/webgl-test-utils.js"></script>
</head>
<body>
<canvas id="example" width="5" height="3" style="width: 40px; height: 30px;"></canvas>
<div id="description"></div>
<div id="console"></div>
<script>
"use strict";
description(document.title);
var wtu = WebGLTestUtils;
var gl = wtu.create3DContext("example");

var val = gl.getParameter(gl.MAX_UNIFORM_BLOCK_SIZE);
wtu.glErrorShouldBe(gl, gl.NO_ERROR, "getParameter(MAX_UNIFORM_BLOCK_SIZE) should succeed.");
assertMsg(val >= 16384, "MAX_UNIFORM_BLOCK_SIZE should be at least 16384");

var val = gl.getParameter(gl.MAX_VERTEX_UNIFORM_COMPONENTS);
wtu.glErrorShouldBe(gl, gl.NO_ERROR, "getParameter(MAX_VERTEX_UNIFORM_COMPONENTS) should succeed.");
assertMsg(val >= 1024, "MAX_VERTEX_UNIFORM_COMPONENTS should be at least 1024");


var val = gl.getParameter(gl.MAX_SAMPLES);
wtu.glErrorShouldBe(gl, gl.NO_ERROR, "getParameter(MAX_SAMPLES) should succeed.");
assertMsg(val >= 4, "MAX_SAMPLES should be at least 4");

var successfullyParsed = true;

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

</body>
</html>

0 comments on commit 3b7514a

Please sign in to comment.