Home | History | Annotate | Download | only in main

Lines Matching refs:driver

129 _mesa_init_sync_object_functions(struct dd_function_table *driver)
131 driver->NewSyncObject = _mesa_new_sync_object;
132 driver->FenceSync = _mesa_fence_sync;
133 driver->DeleteSyncObject = _mesa_delete_sync_object;
134 driver->CheckSync = _mesa_check_sync;
138 driver->ClientWaitSync = _mesa_wait_sync;
139 driver->ServerWaitSync = _mesa_wait_sync;
203 ctx->Driver.DeleteSyncObject(ctx, syncObj);
270 syncObj = ctx->Driver.NewSyncObject(ctx, GL_SYNC_FENCE);
285 ctx->Driver.FenceSync(ctx, syncObj, condition, flags);
325 ctx->Driver.CheckSync(ctx, syncObj);
332 ctx->Driver.ClientWaitSync(ctx, syncObj, flags, timeout);
368 ctx->Driver.ServerWaitSync(ctx, syncObj, flags, timeout);
399 /* Update the state of the sync by dipping into the driver. Note that
401 * data from the current driver state.
403 ctx->Driver.CheckSync(ctx, syncObj);