• Home
  • Raw
  • Download

Lines Matching refs:queryHandle

106     void CreatePerfQueryINTEL(uint queryId, uint *queryHandle);
108 void DeletePerfQueryINTEL(uint queryHandle);
110 void BeginPerfQueryINTEL(uint queryHandle);
112 void EndPerfQueryINTEL(uint queryHandle);
114 void GetPerfQueryDataINTEL(uint queryHandle, uint flags,
296 void CreatePerfQueryINTEL(uint queryId, uint *queryHandle);
298 The handle to newly created query instance is returned in queryHandle
303 is generated, and the location pointed by queryHandle returns NULL.
306 void DeletePerfQueryINTEL(uint queryHandle);
308 queryHandle must be a query instance handle returned by
315 void BeginPerfQueryINTEL(uint queryHandle);
317 where queryHandle must be a query instance handle returned by
334 void EndPerfQueryINTEL(uint queryHandle);
336 where queryHandle must be a query instance handle returned by
349 void GetPerfQueryDataINTEL(uint queryHandle, uint flags, sizei
353 the query session identified by queryHandle. The call may end without
380 If the measurement session indentified by queryHandle is completed then the
527 uint queryHandle;
595 uint queryHandle;
602 glCreatePerfQueryINTEL(queryId, &queryHandle);
604 glBeginPerfQueryINTEL(queryHandle); // Start query
608 glEndPerfQueryINTEL(queryHandle); // End query
621 queryHandle,
631 queryHandle,
652 glDeletePerfQueryINTEL(queryHandle); // query instance is released
666 UINT32 queryHandle[1000];
679 glCreatePerfQueryINTEL(queryId, &queryHandle[i]);
685 glBeginPerfQueryINTEL(queryHandle[currentDrawNumber]);
690 glEndPerfQueryINTEL(queryHandle[currentDrawNumber++]);
695 glBeginPerfQueryINTEL(queryHandle[currentDrawNumber]);
700 glEndPerfQueryINTEL(queryHandle[currentDrawNumber++]);
716 queryHandle[i],
744 glDeletePerfQueryINTEL(queryHandle[i]);