depthMask method

void depthMask(
  1. bool flag
)

Implementation

void depthMask(bool flag){
  startCheck('depthMask');
  gl.glDepthMask(flag?1:0);
  checkError('depthMask');
}