glInvalidateFramebuffer method

void glInvalidateFramebuffer(
  1. int target,
  2. List<int> attachments
)

Implementation

void glInvalidateFramebuffer(int target, List<int> attachments){
  gles.glInvalidateFramebuffer(gl, target, attachments.jsify());
}