glBeginPerfQueryIntel function

void glBeginPerfQueryIntel(
  1. 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);
}