glPassThrough function
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);
}