glBeginPerfQueryIntel function
void
glBeginPerfQueryIntel(
- int queryHandle
)
define glBeginPerfQueryINTEL GLEW_GET_FUN(__glewBeginPerfQueryINTEL)
GLEW_FUN_EXPORT PFNGLBEGINPERFQUERYINTELPROC __glewBeginPerfQueryINTEL
typedef void (GLAPIENTRY * PFNGLBEGINPERFQUERYINTELPROC) (GLuint queryHandle)
Implementation
void glBeginPerfQueryIntel(int queryHandle) {
final glBeginPerfQueryIntelAsFunction = _glBeginPerfQueryIntel
.cast<NativeFunction<Void Function(Uint32 queryHandle)>>()
.asFunction<void Function(int queryHandle)>();
return glBeginPerfQueryIntelAsFunction(queryHandle);
}