Lines Matching refs:timeout
115 GLbitfield flags, GLuint64 timeout)
120 (void) timeout;
123 * the state of the sync object changes or the timeout expires.
299 _mesa_ClientWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout)
323 * if <sync> was signaled, even if the value of <timeout> is zero.
329 if (timeout == 0) {
332 ctx->Driver.ClientWaitSync(ctx, syncObj, flags, timeout);
344 _mesa_WaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout)
362 * If the value of <timeout> is zero, then WaitSync does nothing.
364 if (timeout == 0) {
368 ctx->Driver.ServerWaitSync(ctx, syncObj, flags, timeout);