summaryrefslogtreecommitdiffstats
path: root/progs/xdemos
Commit message (Collapse)AuthorAgeFilesLines
* Darwin: Config/source fixes to now build glxdemo apps and OSMesaJeremy Huddleston2008-03-101-1/+1
| | | | | Also added darwin-fat-32bit darwin-fat-all configs and deleted old darwin-x86ppc config (cherry picked from commit 7120c0089d663a2b7e7b0c97da38f9bc233fbdd7)
* glxgears: oops, remove accidental commit of glFinish() hack.Kristian Høgsberg2008-02-291-1/+0
|
* Use __DRIextension mechanism providing loader functionality to the driver.Kristian Høgsberg2008-02-291-0/+1
| | | | | | | Instead of passing in a fixed struct, the loader now passes in a list of __DRIextension structs, to advertise the functionality it can provide to the driver. Each extension is individually versioned and can be extended or phased out as the interface develops.
* Ignore glxgears_pixmapDan Nicholson2008-02-171-0/+1
|
* Add GLXPixmap version of glxgears to show case new GLX Pixmap functionality.Kristian Høgsberg2008-02-142-0/+548
|
* glxinfo: Fix multisample visual reporting.Adam Jackson2008-01-221-1/+1
| | | | | strstr() == 0 tests for the string _not_ being present. Originally Red Hat bug #351871.
* Don't build yuvrect_client by defaultBrian2008-01-221-6/+17
| | | | Added 'extra' rule to build optional yuvrect_client, shape, xdemo programs
* remove unused varBrian2008-01-221-1/+0
|
* define M_PI if neededAlexey Sokolov2008-01-221-0/+4
|
* remove dependency on libGLUBrian2007-11-121-2/+1
|
* specify app lib dependencies in Makefiles (patch 1/3)Dan Nicholson2007-10-291-7/+9
|
* Ignore new programsDan Nicholson2007-10-251-0/+2
|
* glxinfo: Try creating a GLX context using an fbconfig if no visuals are ↵Kristian Høgsberg2007-10-181-13/+46
| | | | available.
* pbutil: Do not require GLX_SGIX_pbuffer for fbconfig only-functions.Kristian Høgsberg2007-10-172-26/+48
|
* glxinfo: Also print number of fbconfigs.Kristian Høgsberg2007-10-171-1/+1
|
* Fixup a couple of thinkos in glxinfo changes.Kristian Høgsberg2007-10-171-5/+2
|
* Implement support for printing glx fbconfigs in glxinfo.Kristian Høgsberg2007-10-161-31/+195
|
* glxinfo: Only print visuals that actually support GLX.Kristian Høgsberg2007-10-161-5/+10
|
* Do XSync() before resetting error handler.Kristian Høgsberg2007-10-131-0/+1
|
* Example of cooperative rendering into one window by two processesBrian2007-10-114-1/+687
|
* New glxsnoop demo to display another window's z/stencil/back buffer.Brian2007-10-112-0/+378
|
* Ignore more generated files in progs/Dan Nicholson2007-10-101-2/+2
| | | | | | | | Many of the directories in progs/ were missing .gitignore files or were tracking generated files. This patch is basically the process of running `make' in each directory and then finding the untracked files with `git-ls-files -o --exclude-per-directory=.gitignore'. The existing files were also sorted.
* add support for LDFLAGS env varDan Nicholson2007-09-281-5/+5
|
* Update .gitignore for tests and xdemos.Eric Anholt2007-09-241-0/+5
|
* clean-up (see bug 12317)Brian2007-09-101-11/+11
|
* xdemo case: Wei Wang's patch for bug#9759Xiang, Haihao2007-08-141-0/+5
|
* parse standard -geometry optionBrian2007-08-071-9/+6
|
* glxgears: Add an x/y window size parameter.Ingo Molnar2007-08-071-1/+11
|
* 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 ----------------------------------------------------------------------