summaryrefslogtreecommitdiffstats
path: root/progs/xdemos
Commit message (Collapse)AuthorAgeFilesLines
* Rename 'mms-config.' to 'mms.config'.Michal Krol2007-10-291-1/+1
| | | | | It looks like Windows does not like filenames ending with a dot, in effect renaming it to 'mms-config'.
* Ignore generated files.José Fonseca2007-10-251-2/+7
|
* fix logic error, typosBrian2007-07-241-5/+4
|
* Improve this demo in a few ways.Brian2007-07-111-12/+22
| | | | | | | 1. Use more reasonable hither/yon clip planes to make better use of shallow (16-bit) z buffers. 2. Use different colors on cube faces to help detect Z fighting if it occurs. 3. Report GL_DEPTH_BITS on start-up.
* use glXGetProcAddress to get extension funcsBrian2007-05-291-3/+16
|
* set texcoords depending on GLX_Y_INVERTED_EXTBrian2007-05-211-5/+7
|
* GLX_EXT_texture_from_pixmap testBrian2007-05-192-0/+382
|
* Remove the xdemo.c program from PROGS since it doesn't work with GLX/DRI.Brian2006-12-131-1/+1
|
* Use XDisplayName() when reporting errors (bug 8079).Brian2006-12-1310-11/+11
|
* glxinfo: When direct rendering is not enabled, print some hints.Michel Dänzer2006-12-061-1/+13
| | | | | | | If indirect rendering is forced, say how. Otherwise, suggest setting LIBGL_DEBUG=verbose. Inspired by http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=379323 .
* Make git ignore files only generated at build time.Michel Dänzer2006-12-061-0/+0
|
* Added -clip option to test glCopyPixels beyond window bounds.Brian Paul2006-10-161-18/+17
| | | | | Clear dest window to black before copying. Use glWindowPos2iARB().
* LIB_DIR is now just 'lib' or 'lib64'Brian Paul2006-07-131-1/+1
| | | | | Replaced $(LIB_DIR) with $(TOP)/$(LIB_DIR), use LIB_DIR in install targets. Patch by Hanno Böck.
* call reshape() after init() to set initial projection/viewing transform (see ↵Brian Paul2006-05-171-2/+8
| | | | bug 6941)
* bug 6941: fixed initial rendering problems in glxgearsTilman Sauerbeck2006-05-161-0/+1
|
* added a few extension #ifdef testsBrian Paul2006-05-151-1/+12
|
* usage() functionBrian Paul2006-05-151-2/+15
|
* Expanded output with -l option: vertex/fragment program and vertex/fragmentBrian Paul2006-05-131-24/+157
| | | | | shader limits. Misc sync-ups with x.org copy of glxinfo.
* Use -I$(INCDIR) to get Mesa, not system headers (Dan Schikore)Brian Paul2006-04-131-5/+5
|
* Added -l option for explicit locking around Xlib and GLX calls inBrian Paul2006-03-231-5/+64
| | | | threaded code. Seems to improve reliability quite a bit.
* Added -p option to create a display connection per thread.Brian Paul2006-03-231-23/+88
| | | | | This seems more stabile than using one display connection for all threads. Still get an occasional Xlib: unexpected async reply error, unfortunately.
* updated some printfs, added comment about sched_yieldBrian Paul2006-03-151-3/+7
|
* Free visinfo object (Tilman Sauerbeck)Brian Paul2006-01-161-0/+2
|
* Committing in .Jouk Jansen2005-09-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | 1) change compilation on VMS to use IEEE floating points 2) one more problem with _mesa_sprintf solved Modified Files: Mesa/docs/README.VMS Mesa/progs/demos/descrip.mms Mesa/progs/tests/descrip.mms Mesa/progs/util/descrip.mms Mesa/progs/xdemos/descrip.mms Mesa/src/glu/mesa/descrip.mms Mesa/src/glu/sgi/descrip.mms Mesa/src/glut/glx/descrip.mms Mesa/src/mesa/array_cache/descrip.mms Mesa/src/mesa/drivers/common/descrip.mms Mesa/src/mesa/drivers/osmesa/descrip.mms Mesa/src/mesa/drivers/x11/descrip.mms Mesa/src/mesa/glapi/descrip.mms Mesa/src/mesa/main/descrip.mms Mesa/src/mesa/main/texobj.c Mesa/src/mesa/math/descrip.mms Mesa/src/mesa/shader/descrip.mms Mesa/src/mesa/shader/grammar/descrip.mms Mesa/src/mesa/shader/slang/descrip.mms Mesa/src/mesa/swrast/descrip.mms Mesa/src/mesa/swrast_setup/descrip.mms Mesa/src/mesa/tnl/descrip.mms ----------------------------------------------------------------------
* s/GLX_RGBA_BIT/GLX_RGBA_TYPE/ (bug 4237)Brian Paul2005-08-251-1/+1
|
* delete display lists upon exitBrian Paul2005-08-091-0/+3
|
* overlay planes testBrian Paul2005-07-192-0/+246
|
* Add $(CFLAGS) to the link commands. This makes 'make linux-x86Ian Romanick2005-07-021-5/+5
| | | | ARCH_FLAGS=-m32' work correctly on x86-64 systems.
* assorted warning clean-ups for x86_64, etc (Mikko T.)Brian Paul2005-05-071-6/+6
|
* added wrappers/helpers for creating/destroying rendering contextsBrian Paul2005-04-062-1/+45
|
* changed implementation of GetAllFBConfigs()Brian Paul2005-04-061-7/+4
|
* Make glxgears_fbconfig compile and respect the DISPLAY setting. Add itIan Romanick2005-04-052-3/+11
| | | | to the Makefile as well.
* use girl2.rgb by defaultDave Airlie2005-02-261-1/+1
|
* Add glXAllocateMemoryMESA demo app using ycbcr...Dave Airlie2005-02-262-1/+328
| | | | add girl2.rgb which is a slightly resized girl.rgb so client texturing works
* remove trailing slash from TOP definitionDaniel Borca2005-01-171-1/+1
|
* new test to exercise context and window create/deleteKeith Whitwell2005-01-122-0/+610
|
* remove a debug lineBrian Paul2005-01-101-1/+0
|
* tweak output formattting, fixed uninitialized var errorBrian Paul2005-01-102-46/+48
|
* improved animation rateBrian Paul2005-01-091-20/+29
|
* rotate at a reasonable rateBrian Paul2005-01-091-16/+27
|
* added GetAllFBConfigs()Brian Paul2005-01-071-0/+23
|
* New GetAllFBConfigs() function. Some FBConfigs weren't reported before.Brian Paul2005-01-062-23/+8
|
* Use the GLX 1.3 pbuffer/fbconfig functions in preference to the SGIX ones.Brian Paul2005-01-044-145/+295
| | | | Added more functions to pbutil.[ch] to better isolate API differences.
* Add a -fullscreen optionKeith Whitwell2004-12-201-1/+12
|
* removed unused visInfo varBrian Paul2004-12-121-3/+0
|
* added stereo option (Jacek Rosik)Brian Paul2004-10-261-17/+92
|
* wrap angle value (Philipp Klaus Krause)Brian Paul2004-10-231-0/+2
|
* silence warningsBrian Paul2004-09-162-2/+2
|
* Have the rendering contexts share textures.Brian Paul2004-09-141-9/+62
| | | | | Put simple checker pattern on the objects. Press 'd' to delete texture, 'u' to unbind it.
* silence a warningBrian Paul2004-08-132-3/+3
|