attachShader method

void attachShader(
  1. Program program,
  2. Shader shader
)

Implementation

void attachShader(Program program, Shader shader) {
  context.attachShader(program.program, shader.shader);
}