glBindTexture method

void glBindTexture(
  1. int type,
  2. dynamic texture
)

Implementation

void glBindTexture(int type, dynamic texture) {
  gles.glBindTexture(gl, type, texture);
}