attachShader method
Implementation
void attachShader(Program program, WebGLShader shader) {
_gl.attachShader(program.id, shader.id);
checkError('attachShader');
}
void attachShader(Program program, WebGLShader shader) {
_gl.attachShader(program.id, shader.id);
checkError('attachShader');
}