Home
last modified time | relevance | path

Searched refs:CurrentClientDispatch (Results 1 – 6 of 6) sorted by relevance

/external/mesa3d/src/mesa/main/
Dglthread.c124 ctx->CurrentClientDispatch = ctx->MarshalExec; in _mesa_glthread_init()
173 ctx->CurrentClientDispatch = ctx->CurrentServerDispatch; in _mesa_glthread_restore_dispatch()
174 _glapi_set_dispatch(ctx->CurrentClientDispatch); in _mesa_glthread_restore_dispatch()
225 _glapi_set_dispatch(ctx->CurrentClientDispatch); in _mesa_glthread_flush_batch()
Dcontext.c1243 ctx->CurrentClientDispatch = ctx->CurrentServerDispatch = ctx->OutsideBeginEnd; in _mesa_initialize_context()
1744 _glapi_set_dispatch(newCtx->CurrentClientDispatch); in _mesa_make_current()
1858 return ctx->CurrentClientDispatch; in _mesa_get_dispatch()
Dmtypes.h4965 struct _glapi_table *CurrentClientDispatch; member
Ddlist.c13772 ctx->CurrentClientDispatch = ctx->CurrentServerDispatch; in _mesa_NewList()
13831 ctx->CurrentClientDispatch = ctx->CurrentServerDispatch; in _mesa_EndList()
13870 ctx->CurrentClientDispatch = ctx->CurrentServerDispatch; in _mesa_CallList()
13996 ctx->CurrentClientDispatch = ctx->CurrentServerDispatch; in _mesa_CallLists()
/external/mesa3d/src/mesa/vbo/
Dvbo_exec_api.c853 if (ctx->CurrentClientDispatch == ctx->MarshalExec) { in vbo_exec_Begin()
855 } else if (ctx->CurrentClientDispatch == ctx->OutsideBeginEnd) { in vbo_exec_Begin()
856 ctx->CurrentClientDispatch = ctx->Exec; in vbo_exec_Begin()
857 _glapi_set_dispatch(ctx->CurrentClientDispatch); in vbo_exec_Begin()
859 assert(ctx->CurrentClientDispatch == ctx->Save); in vbo_exec_Begin()
902 if (ctx->CurrentClientDispatch == ctx->MarshalExec) { in vbo_exec_End()
904 } else if (ctx->CurrentClientDispatch == ctx->BeginEnd) { in vbo_exec_End()
905 ctx->CurrentClientDispatch = ctx->Exec; in vbo_exec_End()
906 _glapi_set_dispatch(ctx->CurrentClientDispatch); in vbo_exec_End()
/external/mesa3d/src/mesa/state_tracker/
Dst_draw.c135 ctx->CurrentClientDispatch != ctx->MarshalExec && in prepare_draw()