| Commit message (Expand) | Author | Age | Files | Lines |
* | mesa: use simple mtx in core mesa | Timothy Arceri | 2017-11-09 | 1 | -7/+7 |
* | mesa: formatting clean-up in syncobj.c | Brian Paul | 2017-08-21 | 1 | -10/+13 |
* | mesa: add KHR_no_error support to glDeleteSync() | Samuel Pitoiset | 2017-07-31 | 1 | -0/+8 |
* | mesa: add delete_sync() helper | Samuel Pitoiset | 2017-07-31 | 1 | -7/+15 |
* | mesa: add KHR_no_error support to glWaitSync() | Samuel Pitoiset | 2017-07-31 | 1 | -0/+10 |
* | mesa: add wait_sync() helper | Samuel Pitoiset | 2017-07-31 | 1 | -2/+10 |
* | mesa: remove gl_sync_object::Type field | Samuel Pitoiset | 2017-07-28 | 1 | -4/+1 |
* | mesa: drop fence type parameter from NewSyncObject() | Samuel Pitoiset | 2017-07-28 | 1 | -3/+2 |
* | mesa: add KHR_no_error support for glFenceSync() | Samuel Pitoiset | 2017-06-28 | 1 | -0/+8 |
* | mesa: add fence_sync() helper | Samuel Pitoiset | 2017-06-28 | 1 | -17/+25 |
* | mesa: add KHR_no_error support for glClientWaitSync() | Samuel Pitoiset | 2017-06-28 | 1 | -0/+10 |
* | mesa: add client_wait_sync() helper | Samuel Pitoiset | 2017-06-28 | 1 | -16/+26 |
* | mesa: throw error if bufSize negative in GetSynciv on OpenGL ES | Tapani Pälli | 2016-10-10 | 1 | -0/+8 |
* | mesa: Fix locking of GLsync objects. | Steinar H. Gunderson | 2016-02-05 | 1 | -37/+52 |
* | util/hash_set: Rework the API to know about hashing | Jason Ekstrand | 2015-01-15 | 1 | -9/+3 |
* | util: Move main/set to util/hash_set | Jason Ekstrand | 2015-01-15 | 1 | -1/+1 |
* | util: Move the open-addressing linear-probing hash_table to src/util. | Kenneth Graunke | 2014-08-04 | 1 | -1/+1 |
* | mesa: switch to c11 mutex functions | Brian Paul | 2014-03-03 | 1 | -7/+7 |
* | mesa: check for bufSize > 0 in _mesa_GetSynciv() | Brian Paul | 2013-10-01 | 1 | -1/+1 |
* | mesa: minor fix-ups for _mesa_validate_sync() | Brian Paul | 2013-10-01 | 1 | -2/+10 |
* | mesa: Ensure gl_sync_object is fully initialized. | Vinson Lee | 2013-09-10 | 1 | -1/+1 |
* | mesa: make _mesa_validate_sync() non-static | Timothy Arceri | 2013-09-04 | 1 | -1/+1 |
* | mesa: free object labels when deleting | Timothy Arceri | 2013-09-04 | 1 | -0/+1 |
* | mesa: remove #include "mfeatures.h" from numerous source files | Brian Paul | 2013-04-17 | 1 | -1/+0 |
* | mesa: Initially populate the display list with the exec list. | Eric Anholt | 2013-01-21 | 1 | -14/+0 |
* | mesa: Drop manual checks for outside begin/end. | Eric Anholt | 2013-01-21 | 1 | -3/+0 |
* | mesa syncobj: don't store a pointer to the set_entry | Jordan Justen | 2012-12-10 | 1 | -4/+10 |
* | mesa: validate that sync objects were created by mesa | Jordan Justen | 2012-12-06 | 1 | -8/+15 |
* | main/syncobj: return GL_INVALID_VALUE for invalid sync objects | Jordan Justen | 2012-12-06 | 1 | -4/+4 |
* | mesa: fix uint64 printing in syncobj.c | Brian Paul | 2012-12-03 | 1 | -1/+3 |
* | mesa: return INVALID_VALUE from WaitSync if timeout != GL_TIMEOUT_IGNORED | Matt Turner | 2012-11-15 | 1 | -5/+2 |
* | mesa: return INVALID_VALUE from WaitSync if flags != 0 | Matt Turner | 2012-11-15 | 1 | -1/+1 |
* | mesa: return INVALID_VALUE from ClientWaitSync if flags contains an unsupport... | Matt Turner | 2012-11-15 | 1 | -1/+1 |
* | mesa: remove FEATURE_ARB_sync define. | Oliver McFadden | 2012-09-15 | 1 | -3/+0 |
* | mesa: don't wait in _mesa_ClientWaitSync if timeout is 0 | Vadim Girlin | 2012-09-01 | 1 | -2/+6 |
* | mesa: Directly include mfeatures.h in files that perform feature tests. | Vinson Lee | 2011-01-07 | 1 | -0/+1 |
* | mesa: Include mtypes.h in files that use gl_context struct. | Vinson Lee | 2011-01-05 | 1 | -0/+1 |
* | Drop GLcontext typedef and use struct gl_context instead | Kristian Høgsberg | 2010-10-13 | 1 | -9/+9 |
* | mesa: Less FEATURE_ARB_sync tests. | Chia-I Wu | 2010-09-14 | 1 | -0/+15 |
* | Replace _mesa_malloc, _mesa_calloc and _mesa_free with plain libc versions | Kristian Høgsberg | 2010-02-19 | 1 | -1/+1 |
* | Remove _mesa_memcpy in favor of plain memcpy. | Kenneth Graunke | 2010-02-19 | 1 | -1/+1 |
* | mesa: Fix calling conventions of sync object api callbacks. | Michal Krol | 2009-09-07 | 1 | -6/+6 |
* | mesa: rename gl_sync_object::Status to StatusFlag | Brian Paul | 2009-09-03 | 1 | -5/+5 |
* | Don't dereference function pointers in calls. | Ian Romanick | 2009-09-03 | 1 | -7/+7 |
* | Whitespace and include file clean-up. | Ian Romanick | 2009-09-03 | 1 | -14/+0 |
* | Use MIN2 instead of open-coded version | Ian Romanick | 2009-09-03 | 1 | -1/+2 |
* | ARB sync: Fix delete behavior and context destruction behavior | Ian Romanick | 2009-09-03 | 1 | -23/+73 |
* | ARB sync: Add support for GL_ARB_sync to swrast | Ian Romanick | 2009-09-03 | 1 | -0/+372 |