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

content / test / data / gpu / pixel_canvas_low_latency_webgl_draw_image.html [blame]

<!DOCTYPE HTML>
<html>
<head>
<title>Low Latency WebGL Canvas drawImage Test</title>
<style type="text/css">
.nomargin {
  margin: 0px auto;
}
</style>
<script>
let g_swapsBeforeAck = 15;

function waitForFinish()
{
  if (g_swapsBeforeAck == 0) {
    domAutomationController.send("SUCCESS");
  } else {
    g_swapsBeforeAck--;
    window.requestAnimationFrame(waitForFinish);
  }
}

function main()
{
  let canvas_gl = document.getElementById("c3d");
  let gl = canvas_gl.getContext("webgl", {"desynchronized": true});

  let width = canvas_gl.width;
  let height = canvas_gl.height;

  gl.enable(gl.SCISSOR_TEST);
  gl.scissor(0, 0, width, height);
  gl.clearColor(1, 0, 0, 1);
  gl.clear(gl.COLOR_BUFFER_BIT);

  gl.scissor(0, 0, width / 2, height / 2);
  gl.clearColor(0, 1, 0, 1);
  gl.clear(gl.COLOR_BUFFER_BIT);

  gl.scissor(width / 2, height / 2, width / 2, height / 2);
  gl.clearColor(0, 0, 1, 1);
  gl.clear(gl.COLOR_BUFFER_BIT);

  let canvas_2d = document.getElementById("c2d");
  let ctx_2d = canvas_2d.getContext("2d");

  ctx_2d.drawImage(canvas_gl, 0, 0);

  waitForFinish();
}
</script>
</head>
<body onload="main()">
<div id="container" style="position:absolute; top:0px; left:0px">
<canvas id="c3d" width="100" height="100" class="nomargin"></canvas>
<canvas id="c2d" width="100" height="100" class="nomargin"></canvas>
</div>
</body>
</html>