forked from KhronosGroup/WebGL
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test EXT_color_buffer_half_float (KhronosGroup#3147)
Test EXT_color_buffer_half_float Fix a bunch of issues and test WebGL 1 as well. Several Chrome bugs uncovered in the process.
- Loading branch information
1 parent
91b544d
commit 5cd7f37
Showing
10 changed files
with
1,058 additions
and
0 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
conformance-suites/2.0.0/conformance/extensions/00_test_list.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
conformance-suites/2.0.0/conformance/extensions/ext-color-buffer-half-float.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!-- | ||
Copyright (c) 2020 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 EXT_color_buffer_half_float Conformance Tests</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> | ||
<canvas id="canvas" style="width: 50px; height: 50px;"> </canvas> | ||
<div id="console"></div> | ||
<script> | ||
var version = 1; | ||
</script> | ||
<script src="../../js/tests/ext-color-buffer-half-float.js"></script> | ||
<script src="../../js/js-test-post.js"></script> | ||
|
||
</body> | ||
</html> |
1 change: 1 addition & 0 deletions
1
conformance-suites/2.0.0/conformance2/extensions/00_test_list.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
ext-color-buffer-float.html | ||
ext-color-buffer-half-float.html | ||
ext-disjoint-timer-query-webgl2.html | ||
promoted-extensions.html | ||
promoted-extensions-in-shaders.html |
27 changes: 27 additions & 0 deletions
27
conformance-suites/2.0.0/conformance2/extensions/ext-color-buffer-half-float.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!-- | ||
Copyright (c) 2020 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 2 EXT_color_buffer_half_float Conformance Tests</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> | ||
<canvas id="canvas" style="width: 50px; height: 50px;"> </canvas> | ||
<div id="console"></div> | ||
<script> | ||
var version = 2; | ||
</script> | ||
<script src="../../js/tests/ext-color-buffer-half-float.js"></script> | ||
<script src="../../js/js-test-post.js"></script> | ||
|
||
</body> | ||
</html> |
473 changes: 473 additions & 0 deletions
473
conformance-suites/2.0.0/js/tests/ext-color-buffer-half-float.js
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
sdk/tests/conformance/extensions/ext-color-buffer-half-float.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!-- | ||
Copyright (c) 2020 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 EXT_color_buffer_half_float Conformance Tests</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> | ||
<canvas id="canvas" style="width: 50px; height: 50px;"> </canvas> | ||
<div id="console"></div> | ||
<script> | ||
var version = 1; | ||
</script> | ||
<script src="../../js/tests/ext-color-buffer-half-float.js"></script> | ||
<script src="../../js/js-test-post.js"></script> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
sdk/tests/conformance2/extensions/ext-color-buffer-half-float.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!-- | ||
Copyright (c) 2020 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 2 EXT_color_buffer_half_float Conformance Tests</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> | ||
<canvas id="canvas" style="width: 50px; height: 50px;"> </canvas> | ||
<div id="console"></div> | ||
<script> | ||
var version = 2; | ||
</script> | ||
<script src="../../js/tests/ext-color-buffer-half-float.js"></script> | ||
<script src="../../js/js-test-post.js"></script> | ||
|
||
</body> | ||
</html> |
Oops, something went wrong.