Lines Matching refs:semaphores
762 _mesa_GenSemaphoresEXT(GLsizei n, GLuint *semaphores)
769 _mesa_debug(ctx, "%s(%d, %p)", func, n, semaphores);
781 if (!semaphores)
785 if (_mesa_HashFindFreeKeys(ctx->Shared->SemaphoreObjects, semaphores, n)) {
788 semaphores[i], &DummySemaphoreObject, true);
796 _mesa_DeleteSemaphoresEXT(GLsizei n, const GLuint *semaphores)
803 _mesa_debug(ctx, "%s(%d, %p)\n", func, n, semaphores);
816 if (!semaphores)
821 if (semaphores[i] > 0) {
823 = _mesa_lookup_semaphore_object_locked(ctx, semaphores[i]);
827 semaphores[i]);