summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/webgl-conf/checkout/conformance2/textures/misc/copy-texture-cube-map-AMD-bug.html
blob: 008ac88459b44bcae403e919fa85dd9069e0ec9b (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
<!--
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 copy into cube map texture conformance 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>
<canvas id="canvas" width="2" height="2"> </canvas>
<script>
"use strict";
var wtu = WebGLTestUtils;
var gl;

function runTest() {
  var width = 16;
  var height = 16;
  var level = 0;
  var cases = [
    {
      internalformat: "RGBA8",
      format: "RGBA",
      type: "UNSIGNED_BYTE",
      data: new Uint8Array(width * height * 4)
    },
    {
      internalformat: "RGBA8I",
      format: "RGBA_INTEGER",
      type: "BYTE",
      data: new Int8Array(width * height * 4)
    },
    {
      internalformat: "RGBA8UI",
      format: "RGBA_INTEGER",
      type: "UNSIGNED_BYTE",
      data: new Uint8Array(width * height * 4)
    }
  ];
  if (gl.getExtension("EXT_color_buffer_float")) {
      cases.push({
          internalformat: "RGBA32F",
          format: "RGBA",
          type: "FLOAT",
          data: new Float32Array(width * height * 4)
      });
  }
  cases.forEach(function(testcase) {
    debug("");
    debug("Testing internalformat: " + testcase.internalformat);

    var internalformat = gl[testcase.internalformat];
    var format = gl[testcase.format];
    var type = gl[testcase.type];
    var texture = gl.createTexture();
    gl.bindTexture(gl.TEXTURE_2D, texture);
    var data = testcase.data;
    gl.texImage2D(gl.TEXTURE_2D, level, internalformat, width, height, 0, format, type, data);
    var fbo = gl.createFramebuffer();
    gl.bindFramebuffer(gl.FRAMEBUFFER, fbo);
    gl.framebufferTexture2D(gl.FRAMEBUFFER, gl.COLOR_ATTACHMENT0, gl.TEXTURE_2D, texture, level);
    shouldBe("gl.checkFramebufferStatus(gl.FRAMEBUFFER)", "gl.FRAMEBUFFER_COMPLETE");
    wtu.glErrorShouldBe(gl, gl.NO_ERROR, "Setup framebuffer with texture should succeed.");

    var cubeTexture = gl.createTexture();
    gl.bindTexture(gl.TEXTURE_CUBE_MAP, cubeTexture);

    for (var face = gl.TEXTURE_CUBE_MAP_POSITIVE_X; face < gl.TEXTURE_CUBE_MAP_POSITIVE_X + 6; face++) {
      gl.copyTexImage2D(face, level, internalformat, 0, 0, width, height, 0);
      wtu.glErrorShouldBe(gl, gl.NO_ERROR, "CopyTexImage2D should succeed.");
      gl.copyTexSubImage2D(face, level, 0, 0, 0, 0, width, height);
      wtu.glErrorShouldBe(gl, gl.NO_ERROR, "CopyTexSubImage2D should succeed.");
    }

    gl.deleteTexture(cubeTexture);
    gl.deleteTexture(texture);
    gl.deleteFramebuffer(fbo);
  });
}

description();
debug("This is a regression test for <a href='https://bugs.chromium.org/p/chromium/issues/detail?id=712117'>Chromium Issue 712117</a>");

var canvas = document.getElementById("canvas");
shouldBeNonNull("gl = wtu.create3DContext(canvas, undefined, 2)");

runTest();

var successfullyParsed = true;

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

</body>
</html>