Lines Matching defs:sync
433 GLsync sync = ctx.glFenceSync(GL_SYNC_GPU_COMMANDS_COMPLETE, 0);
435 ctx.beginSection("GL_INVALID_VALUE is generated if sync is not the name of a sync object.");
441 ctx.glWaitSync(sync, 0x0010, GL_TIMEOUT_IGNORED);
446 ctx.glWaitSync(sync, 0, 0);
450 ctx.glDeleteSync(sync);
455 GLsync sync = ctx.glFenceSync(GL_SYNC_GPU_COMMANDS_COMPLETE, 0);
457 ctx.beginSection("GL_INVALID_VALUE is generated if sync is not the name of an existing sync object.");
463 ctx.glClientWaitSync(sync, 0x00000004, 10000);
467 ctx.glDeleteSync(sync);
472 ctx.beginSection("GL_INVALID_VALUE is generated if sync is neither zero or the name of a sync object.");