aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/main/syncobj.c
Commit message (Expand)AuthorAgeFilesLines
* remove final imports.h and imports.c bitsDylan Baker2020-04-211-1/+1
* replace malloc macros in imports.h with u_memory.h versionsDylan Baker2020-04-211-0/+1
* Move compiler.h and imports.h/c from src/mesa/main into src/utilMarek Olšák2020-03-271-1/+1
* mesa: include dispatch.h lessMarek Olšák2018-04-121-1/+0
* mesa: use simple mtx in core mesaTimothy Arceri2017-11-091-7/+7
* mesa: formatting clean-up in syncobj.cBrian Paul2017-08-211-10/+13
* mesa: add KHR_no_error support to glDeleteSync()Samuel Pitoiset2017-07-311-0/+8
* mesa: add delete_sync() helperSamuel Pitoiset2017-07-311-7/+15
* mesa: add KHR_no_error support to glWaitSync()Samuel Pitoiset2017-07-311-0/+10
* mesa: add wait_sync() helperSamuel Pitoiset2017-07-311-2/+10
* mesa: remove gl_sync_object::Type fieldSamuel Pitoiset2017-07-281-4/+1
* mesa: drop fence type parameter from NewSyncObject()Samuel Pitoiset2017-07-281-3/+2
* mesa: add KHR_no_error support for glFenceSync()Samuel Pitoiset2017-06-281-0/+8
* mesa: add fence_sync() helperSamuel Pitoiset2017-06-281-17/+25
* mesa: add KHR_no_error support for glClientWaitSync()Samuel Pitoiset2017-06-281-0/+10
* mesa: add client_wait_sync() helperSamuel Pitoiset2017-06-281-16/+26
* mesa: throw error if bufSize negative in GetSynciv on OpenGL ESTapani Pälli2016-10-101-0/+8
* mesa: Fix locking of GLsync objects.Steinar H. Gunderson2016-02-051-37/+52
* util/hash_set: Rework the API to know about hashingJason Ekstrand2015-01-151-9/+3
* util: Move main/set to util/hash_setJason Ekstrand2015-01-151-1/+1
* util: Move the open-addressing linear-probing hash_table to src/util.Kenneth Graunke2014-08-041-1/+1
* mesa: switch to c11 mutex functionsBrian Paul2014-03-031-7/+7
* mesa: check for bufSize > 0 in _mesa_GetSynciv()Brian Paul2013-10-011-1/+1
* mesa: minor fix-ups for _mesa_validate_sync()Brian Paul2013-10-011-2/+10
* mesa: Ensure gl_sync_object is fully initialized.Vinson Lee2013-09-101-1/+1
* mesa: make _mesa_validate_sync() non-staticTimothy Arceri2013-09-041-1/+1
* mesa: free object labels when deletingTimothy Arceri2013-09-041-0/+1
* mesa: remove #include "mfeatures.h" from numerous source filesBrian Paul2013-04-171-1/+0
* mesa: Initially populate the display list with the exec list.Eric Anholt2013-01-211-14/+0
* mesa: Drop manual checks for outside begin/end.Eric Anholt2013-01-211-3/+0
* mesa syncobj: don't store a pointer to the set_entryJordan Justen2012-12-101-4/+10
* mesa: validate that sync objects were created by mesaJordan Justen2012-12-061-8/+15
* main/syncobj: return GL_INVALID_VALUE for invalid sync objectsJordan Justen2012-12-061-4/+4
* mesa: fix uint64 printing in syncobj.cBrian Paul2012-12-031-1/+3
* mesa: return INVALID_VALUE from WaitSync if timeout != GL_TIMEOUT_IGNOREDMatt Turner2012-11-151-5/+2
* mesa: return INVALID_VALUE from WaitSync if flags != 0Matt Turner2012-11-151-1/+1
* mesa: return INVALID_VALUE from ClientWaitSync if flags contains an unsupport...Matt Turner2012-11-151-1/+1
* mesa: remove FEATURE_ARB_sync define.Oliver McFadden2012-09-151-3/+0
* mesa: don't wait in _mesa_ClientWaitSync if timeout is 0Vadim Girlin2012-09-011-2/+6
* mesa: Directly include mfeatures.h in files that perform feature tests.Vinson Lee2011-01-071-0/+1
* mesa: Include mtypes.h in files that use gl_context struct.Vinson Lee2011-01-051-0/+1
* Drop GLcontext typedef and use struct gl_context insteadKristian Høgsberg2010-10-131-9/+9
* mesa: Less FEATURE_ARB_sync tests.Chia-I Wu2010-09-141-0/+15
* Replace _mesa_malloc, _mesa_calloc and _mesa_free with plain libc versionsKristian Høgsberg2010-02-191-1/+1
* Remove _mesa_memcpy in favor of plain memcpy.Kenneth Graunke2010-02-191-1/+1
* mesa: Fix calling conventions of sync object api callbacks.Michal Krol2009-09-071-6/+6
* mesa: rename gl_sync_object::Status to StatusFlagBrian Paul2009-09-031-5/+5
* Don't dereference function pointers in calls.Ian Romanick2009-09-031-7/+7
* Whitespace and include file clean-up.Ian Romanick2009-09-031-14/+0
* Use MIN2 instead of open-coded versionIan Romanick2009-09-031-1/+2