summaryrefslogtreecommitdiffstats
path: root/progs/xdemos/omlsync.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove demos that have moved to git+ssh://git.freedesktop.org/git/mesa/demos.Eric Anholt2010-05-211-267/+0
| | | | | | | The remaining programs are ones I've had difficulty finding a build environment for to make the build system or are unit tests that should probably live next to their code instead. Hopefully people can bring over the build for remaining pieces they care about.
* xdemos/omlsync: improve OML WaitMsc testJesse Barnes2010-03-081-4/+6
| | | | | Use the divisor/remainder for the WaitForMscOML call if a wait_interval is passed. Allows for testing of the WaitMSC paths in the server & DDX.
* progs/xdemos: fix up GLX extension checkingJesse Barnes2010-03-051-8/+1
| | | | | | A few of my programs were using the client string in addition to the main extensions string to see if a feature was present. Correct this to only check for the currently available and working extensions.
* xdemos/omlsync: add waitformsc and swap interval codeJesse Barnes2010-03-051-5/+27
|
* xdemos: add OML sync testJesse Barnes2010-03-041-0/+250
Add program to test glXSwapBuffersMscOML behavior. Based on glsync.c.