glIsQueryAngle function
define glIsQueryANGLE GLEW_GET_FUN(__glewIsQueryANGLE)
GLEW_FUN_EXPORT PFNGLISQUERYANGLEPROC __glewIsQueryANGLE
typedef GLboolean (GLAPIENTRY * PFNGLISQUERYANGLEPROC) (GLuint id)
Implementation
int glIsQueryAngle(int id) {
final glIsQueryAngleAsFunction = _glIsQueryAngle
.cast<NativeFunction<Uint8 Function(Uint32 id)>>()
.asFunction<int Function(int id)>();
return glIsQueryAngleAsFunction(id);
}