glPassThrough function opengl
GLAPI void GLAPIENTRY glPassThrough( GLfloat token )
Implementation
void glPassThrough(double token) {
  final glPassThroughAsFunction = _glPassThrough
      .cast<NativeFunction<Void Function(Float token)>>()
      .asFunction<void Function(double token)>();
  return glPassThroughAsFunction(token);
}