glShaderSource method

void glShaderSource(
  1. int shader,
  2. String shaderSource
)

Implementation

void glShaderSource(int shader, String shaderSource) {
  gl.shaderSource(shader, shaderSource);
}