compileShader method

void compileShader(
  1. WebGLShader shader
)

Implementation

void compileShader(WebGLShader shader) {
  startCheck("compileShader");
  glCompileShader(_gl, shader.id);
  checkError('compileShader');
}