function drawScene() {
  // Clear the canvas before we start drawing on it.
  gl.clearColor(0, 0.5 + 0.1 * Math.random(1), 0, 1);
  gl.clearDepth(1.0);
  gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);