glPassThrough function

void glPassThrough(
  1. double token
)
GLAPI void GLAPIENTRY glPassThrough (GLfloat token)

Implementation

void glPassThrough(double token) {
  final glPassThroughLookupFunction = libGL.lookupFunction<
      Void Function(Float token), void Function(double token)>('glPassThrough');
  return glPassThroughLookupFunction(token);
}