/external/mesa3d/src/mesa/main/ |
D | performance_query.c | 408 _mesa_CreatePerfQueryINTEL(GLuint queryId, GLuint *queryHandle) in _mesa_CreatePerfQueryINTEL() argument 430 if (queryHandle == NULL) { in _mesa_CreatePerfQueryINTEL() 460 *queryHandle = id; in _mesa_CreatePerfQueryINTEL() 464 _mesa_DeletePerfQueryINTEL(GLuint queryHandle) in _mesa_DeletePerfQueryINTEL() argument 468 struct gl_perf_query_object *obj = lookup_object(ctx, queryHandle); in _mesa_DeletePerfQueryINTEL() 487 _mesa_EndPerfQueryINTEL(queryHandle); in _mesa_DeletePerfQueryINTEL() 494 _mesa_HashRemove(ctx->PerfQuery.Objects, queryHandle); in _mesa_DeletePerfQueryINTEL() 499 _mesa_BeginPerfQueryINTEL(GLuint queryHandle) in _mesa_BeginPerfQueryINTEL() argument 503 struct gl_perf_query_object *obj = lookup_object(ctx, queryHandle); in _mesa_BeginPerfQueryINTEL() 552 _mesa_EndPerfQueryINTEL(GLuint queryHandle) in _mesa_EndPerfQueryINTEL() argument [all …]
|
D | performance_query.h | 64 _mesa_CreatePerfQueryINTEL(GLuint queryId, GLuint *queryHandle); 67 _mesa_DeletePerfQueryINTEL(GLuint queryHandle); 70 _mesa_BeginPerfQueryINTEL(GLuint queryHandle); 73 _mesa_EndPerfQueryINTEL(GLuint queryHandle); 76 _mesa_GetPerfQueryDataINTEL(GLuint queryHandle, GLuint flags,
|
/external/mesa3d/include/GLES2/ |
D | gl2ext.h | 2313 typedef void (GL_APIENTRYP PFNGLBEGINPERFQUERYINTELPROC) (GLuint queryHandle); 2314 typedef void (GL_APIENTRYP PFNGLCREATEPERFQUERYINTELPROC) (GLuint queryId, GLuint *queryHandle); 2315 typedef void (GL_APIENTRYP PFNGLDELETEPERFQUERYINTELPROC) (GLuint queryHandle); 2316 typedef void (GL_APIENTRYP PFNGLENDPERFQUERYINTELPROC) (GLuint queryHandle); 2320 typedef void (GL_APIENTRYP PFNGLGETPERFQUERYDATAINTELPROC) (GLuint queryHandle, GLuint flags, GLsiz… 2324 GL_APICALL void GL_APIENTRY glBeginPerfQueryINTEL (GLuint queryHandle); 2325 GL_APICALL void GL_APIENTRY glCreatePerfQueryINTEL (GLuint queryId, GLuint *queryHandle); 2326 GL_APICALL void GL_APIENTRY glDeletePerfQueryINTEL (GLuint queryHandle); 2327 GL_APICALL void GL_APIENTRY glEndPerfQueryINTEL (GLuint queryHandle); 2331 GL_APICALL void GL_APIENTRY glGetPerfQueryDataINTEL (GLuint queryHandle, GLuint flags, GLsizei data…
|
/external/swiftshader/include/GLES2/ |
D | gl2ext.h | 2374 typedef void (GL_APIENTRYP PFNGLBEGINPERFQUERYINTELPROC) (GLuint queryHandle); 2375 typedef void (GL_APIENTRYP PFNGLCREATEPERFQUERYINTELPROC) (GLuint queryId, GLuint *queryHandle); 2376 typedef void (GL_APIENTRYP PFNGLDELETEPERFQUERYINTELPROC) (GLuint queryHandle); 2377 typedef void (GL_APIENTRYP PFNGLENDPERFQUERYINTELPROC) (GLuint queryHandle); 2381 typedef void (GL_APIENTRYP PFNGLGETPERFQUERYDATAINTELPROC) (GLuint queryHandle, GLuint flags, GLsiz… 2385 GL_APICALL void GL_APIENTRY glBeginPerfQueryINTEL (GLuint queryHandle); 2386 GL_APICALL void GL_APIENTRY glCreatePerfQueryINTEL (GLuint queryId, GLuint *queryHandle); 2387 GL_APICALL void GL_APIENTRY glDeletePerfQueryINTEL (GLuint queryHandle); 2388 GL_APICALL void GL_APIENTRY glEndPerfQueryINTEL (GLuint queryHandle); 2392 GL_APICALL void GL_APIENTRY glGetPerfQueryDataINTEL (GLuint queryHandle, GLuint flags, GLsizei data…
|
/external/swiftshader/include/GL/ |
D | glcorearb.h | 4704 typedef void (APIENTRYP PFNGLBEGINPERFQUERYINTELPROC) (GLuint queryHandle); 4705 typedef void (APIENTRYP PFNGLCREATEPERFQUERYINTELPROC) (GLuint queryId, GLuint *queryHandle); 4706 typedef void (APIENTRYP PFNGLDELETEPERFQUERYINTELPROC) (GLuint queryHandle); 4707 typedef void (APIENTRYP PFNGLENDPERFQUERYINTELPROC) (GLuint queryHandle); 4711 typedef void (APIENTRYP PFNGLGETPERFQUERYDATAINTELPROC) (GLuint queryHandle, GLuint flags, GLsizei … 4715 GLAPI void APIENTRY glBeginPerfQueryINTEL (GLuint queryHandle); 4716 GLAPI void APIENTRY glCreatePerfQueryINTEL (GLuint queryId, GLuint *queryHandle); 4717 GLAPI void APIENTRY glDeletePerfQueryINTEL (GLuint queryHandle); 4718 GLAPI void APIENTRY glEndPerfQueryINTEL (GLuint queryHandle); 4722 GLAPI void APIENTRY glGetPerfQueryDataINTEL (GLuint queryHandle, GLuint flags, GLsizei dataSize, vo…
|
D | glext.h | 9209 typedef void (APIENTRYP PFNGLBEGINPERFQUERYINTELPROC) (GLuint queryHandle); 9210 typedef void (APIENTRYP PFNGLCREATEPERFQUERYINTELPROC) (GLuint queryId, GLuint *queryHandle); 9211 typedef void (APIENTRYP PFNGLDELETEPERFQUERYINTELPROC) (GLuint queryHandle); 9212 typedef void (APIENTRYP PFNGLENDPERFQUERYINTELPROC) (GLuint queryHandle); 9216 typedef void (APIENTRYP PFNGLGETPERFQUERYDATAINTELPROC) (GLuint queryHandle, GLuint flags, GLsizei … 9220 GLAPI void APIENTRY glBeginPerfQueryINTEL (GLuint queryHandle); 9221 GLAPI void APIENTRY glCreatePerfQueryINTEL (GLuint queryId, GLuint *queryHandle); 9222 GLAPI void APIENTRY glDeletePerfQueryINTEL (GLuint queryHandle); 9223 GLAPI void APIENTRY glEndPerfQueryINTEL (GLuint queryHandle); 9227 GLAPI void APIENTRY glGetPerfQueryDataINTEL (GLuint queryHandle, GLuint flags, GLsizei dataSize, vo…
|
/external/mesa3d/include/GL/ |
D | glcorearb.h | 4673 typedef void (APIENTRYP PFNGLBEGINPERFQUERYINTELPROC) (GLuint queryHandle); 4674 typedef void (APIENTRYP PFNGLCREATEPERFQUERYINTELPROC) (GLuint queryId, GLuint *queryHandle); 4675 typedef void (APIENTRYP PFNGLDELETEPERFQUERYINTELPROC) (GLuint queryHandle); 4676 typedef void (APIENTRYP PFNGLENDPERFQUERYINTELPROC) (GLuint queryHandle); 4680 typedef void (APIENTRYP PFNGLGETPERFQUERYDATAINTELPROC) (GLuint queryHandle, GLuint flags, GLsizei … 4684 GLAPI void APIENTRY glBeginPerfQueryINTEL (GLuint queryHandle); 4685 GLAPI void APIENTRY glCreatePerfQueryINTEL (GLuint queryId, GLuint *queryHandle); 4686 GLAPI void APIENTRY glDeletePerfQueryINTEL (GLuint queryHandle); 4687 GLAPI void APIENTRY glEndPerfQueryINTEL (GLuint queryHandle); 4691 GLAPI void APIENTRY glGetPerfQueryDataINTEL (GLuint queryHandle, GLuint flags, GLsizei dataSize, GL…
|
D | glext.h | 9176 typedef void (APIENTRYP PFNGLBEGINPERFQUERYINTELPROC) (GLuint queryHandle); 9177 typedef void (APIENTRYP PFNGLCREATEPERFQUERYINTELPROC) (GLuint queryId, GLuint *queryHandle); 9178 typedef void (APIENTRYP PFNGLDELETEPERFQUERYINTELPROC) (GLuint queryHandle); 9179 typedef void (APIENTRYP PFNGLENDPERFQUERYINTELPROC) (GLuint queryHandle); 9183 typedef void (APIENTRYP PFNGLGETPERFQUERYDATAINTELPROC) (GLuint queryHandle, GLuint flags, GLsizei … 9187 GLAPI void APIENTRY glBeginPerfQueryINTEL (GLuint queryHandle); 9188 GLAPI void APIENTRY glCreatePerfQueryINTEL (GLuint queryId, GLuint *queryHandle); 9189 GLAPI void APIENTRY glDeletePerfQueryINTEL (GLuint queryHandle); 9190 GLAPI void APIENTRY glEndPerfQueryINTEL (GLuint queryHandle); 9194 GLAPI void APIENTRY glGetPerfQueryDataINTEL (GLuint queryHandle, GLuint flags, GLsizei dataSize, GL…
|
/external/mesa3d/prebuilt-intermediates/main/ |
D | marshal_generated.c | 563 _mesa_marshal_GetPerfQueryDataINTEL(GLuint queryHandle, GLuint flags, GLsizei dataSize, GLvoid * da… in _mesa_marshal_GetPerfQueryDataINTEL() argument 568 …CALL_GetPerfQueryDataINTEL(ctx->CurrentServerDispatch, (queryHandle, flags, dataSize, data, bytesW… in _mesa_marshal_GetPerfQueryDataINTEL() 7952 GLuint queryHandle; member 7957 const GLuint queryHandle = cmd->queryHandle; in _mesa_unmarshal_BeginPerfQueryINTEL() local 7958 CALL_BeginPerfQueryINTEL(ctx->CurrentServerDispatch, (queryHandle)); in _mesa_unmarshal_BeginPerfQueryINTEL() 7961 _mesa_marshal_BeginPerfQueryINTEL(GLuint queryHandle) in _mesa_marshal_BeginPerfQueryINTEL() argument 7969 cmd->queryHandle = queryHandle; in _mesa_marshal_BeginPerfQueryINTEL() 7976 CALL_BeginPerfQueryINTEL(ctx->CurrentServerDispatch, (queryHandle)); in _mesa_marshal_BeginPerfQueryINTEL() 14546 GLuint queryHandle; member 14551 const GLuint queryHandle = cmd->queryHandle; in _mesa_unmarshal_DeletePerfQueryINTEL() local [all …]
|