summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/webgl-conf/checkout/js/tests/webgl-draw-buffers-utils.js
blob: ebd0c7ba6802e6dfdbe356e916b871bc3f7a0413 (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
/*
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.
*/

// This file contains utilities shared between tests for the WEBGL_draw_buffers extension and multiple draw buffers functionality in WebGL 2.0.

'use strict';

var WebGLDrawBuffersUtils = function(gl, ext) {

  var getMaxUsableColorAttachments = function() {
    var maxDrawingBuffers;
    var maxColorAttachments;
    if (ext) {
      // EXT_draw_buffers
      maxDrawingBuffers = gl.getParameter(ext.MAX_DRAW_BUFFERS_WEBGL);
      maxColorAttachments = gl.getParameter(ext.MAX_COLOR_ATTACHMENTS_WEBGL);
    } else {
      // WebGL 2.0
      maxDrawingBuffers = gl.getParameter(gl.MAX_DRAW_BUFFERS);
      maxColorAttachments = gl.getParameter(gl.MAX_COLOR_ATTACHMENTS);
    }
    var maxUniformVectors = gl.getParameter(gl.MAX_FRAGMENT_UNIFORM_VECTORS);
    return Math.min(maxDrawingBuffers, maxColorAttachments, maxUniformVectors);
  };

  var makeColorAttachmentArray = function(size) {
    var array = []
    for (var ii = 0; ii < size; ++ii) {
      array.push(gl.COLOR_ATTACHMENT0 + ii);
    }
    return array;
  }

  var checkProgram = wtu.setupTexturedQuad(gl);

  var checkAttachmentsForColorFn = function(attachments, colorFn) {
    gl.bindFramebuffer(gl.FRAMEBUFFER, null);
    gl.useProgram(checkProgram);
    attachments.forEach(function(attachment, index) {
      gl.bindTexture(gl.TEXTURE_2D, attachment.texture);
      wtu.clearAndDrawUnitQuad(gl);
      var expectedColor = colorFn(attachment, index);
      var tolerance = 0;
      expectedColor.forEach(function(v) {
        if (v != 0 && v != 255) {
          tolerance = 8;
        }
      });
      wtu.checkCanvas(gl, expectedColor, "attachment " + index + " should be " + expectedColor.toString(), tolerance);
    });
    debug("");
  };

  var checkAttachmentsForColor = function(attachments, color) {
    checkAttachmentsForColorFn(attachments, function(attachment, index) {
      return color || attachment.color;
    });
  };

  return {
    getMaxUsableColorAttachments: getMaxUsableColorAttachments,
    makeColorAttachmentArray: makeColorAttachmentArray,
    checkAttachmentsForColorFn: checkAttachmentsForColorFn,
    checkAttachmentsForColor: checkAttachmentsForColor
  };
};