summaryrefslogtreecommitdiff
path: root/src/mesa/main/syncobj.c
AgeCommit message (Expand)AuthorFilesLines
2014-08-04util: Move the open-addressing linear-probing hash_table to src/util.Kenneth Graunke1-1/+1
2014-03-03mesa: switch to c11 mutex functionsBrian Paul1-7/+7
2013-10-01mesa: check for bufSize > 0 in _mesa_GetSynciv()Brian Paul1-1/+1
2013-10-01mesa: minor fix-ups for _mesa_validate_sync()Brian Paul1-2/+10
2013-09-10mesa: Ensure gl_sync_object is fully initialized.Vinson Lee1-1/+1
2013-09-04mesa: make _mesa_validate_sync() non-staticTimothy Arceri1-1/+1
2013-09-04mesa: free object labels when deletingTimothy Arceri1-0/+1
2013-04-17mesa: remove #include "mfeatures.h" from numerous source filesBrian Paul1-1/+0
2013-01-21mesa: Initially populate the display list with the exec list.Eric Anholt1-14/+0
2013-01-21mesa: Drop manual checks for outside begin/end.Eric Anholt1-3/+0
2012-12-10mesa syncobj: don't store a pointer to the set_entryJordan Justen1-4/+10
2012-12-06mesa: validate that sync objects were created by mesaJordan Justen1-8/+15
2012-12-06main/syncobj: return GL_INVALID_VALUE for invalid sync objectsJordan Justen1-4/+4
2012-12-03mesa: fix uint64 printing in syncobj.cBrian Paul1-1/+3
2012-11-15mesa: return INVALID_VALUE from WaitSync if timeout != GL_TIMEOUT_IGNOREDMatt Turner1-5/+2
2012-11-15mesa: return INVALID_VALUE from WaitSync if flags != 0Matt Turner1-1/+1
2012-11-15mesa: return INVALID_VALUE from ClientWaitSync if flags contains an unsupport...Matt Turner1-1/+1
2012-09-15mesa: remove FEATURE_ARB_sync define.Oliver McFadden1-3/+0
2012-09-01mesa: don't wait in _mesa_ClientWaitSync if timeout is 0Vadim Girlin1-2/+6
2011-01-07mesa: Directly include mfeatures.h in files that perform feature tests.Vinson Lee1-0/+1
2011-01-05mesa: Include mtypes.h in files that use gl_context struct.Vinson Lee1-0/+1
2010-10-13Drop GLcontext typedef and use struct gl_context insteadKristian Høgsberg1-9/+9
2010-09-14mesa: Less FEATURE_ARB_sync tests.Chia-I Wu1-0/+15
2010-02-19Replace _mesa_malloc, _mesa_calloc and _mesa_free with plain libc versionsKristian Høgsberg1-1/+1
2010-02-19Remove _mesa_memcpy in favor of plain memcpy.Kenneth Graunke1-1/+1
2009-09-07mesa: Fix calling conventions of sync object api callbacks.Michal Krol1-6/+6
2009-09-03mesa: rename gl_sync_object::Status to StatusFlagBrian Paul1-5/+5
2009-09-03Don't dereference function pointers in calls.Ian Romanick1-7/+7
2009-09-03Whitespace and include file clean-up.Ian Romanick1-14/+0
2009-09-03Use MIN2 instead of open-coded versionIan Romanick1-1/+2
2009-09-03ARB sync: Fix delete behavior and context destruction behaviorIan Romanick1-23/+73
2009-09-03ARB sync: Add support for GL_ARB_sync to swrastIan Romanick1-0/+372