summaryrefslogtreecommitdiff
path: root/progs/xdemos
AgeCommit message (Collapse)Author
2008-05-07updated options/helpBrian Paul
2008-05-05Ignore xdemos/sharedtexDan Nicholson
2008-04-30added xdemos/sharedtex.c testBrian Paul
Test that modifications to a texture object in one rendering context are seen in a second rendering context. Press 't' to change the texture's image/colors.
2008-04-03silence warningBrian
2008-03-21Fix xdemos build on FreeBSD: <sys/types.h> before <netinet/tcp.h>Eric Anholt
2008-03-10Darwin: Config/source fixes to now build glxdemo apps and OSMesaJeremy Huddleston
Also added darwin-fat-32bit darwin-fat-all configs and deleted old darwin-x86ppc config (cherry picked from commit 7120c0089d663a2b7e7b0c97da38f9bc233fbdd7)
2008-02-29glxgears: oops, remove accidental commit of glFinish() hack.Kristian Høgsberg
2008-02-29Use __DRIextension mechanism providing loader functionality to the driver.Kristian Høgsberg
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.
2008-02-17Ignore glxgears_pixmapDan Nicholson
2008-02-14Add GLXPixmap version of glxgears to show case new GLX Pixmap functionality.Kristian Høgsberg
2008-01-22glxinfo: Fix multisample visual reporting.Adam Jackson
strstr() == 0 tests for the string _not_ being present. Originally Red Hat bug #351871.
2008-01-22Don't build yuvrect_client by defaultBrian
Added 'extra' rule to build optional yuvrect_client, shape, xdemo programs
2008-01-22remove unused varBrian
2008-01-22define M_PI if neededAlexey Sokolov
2007-11-12remove dependency on libGLUBrian
2007-10-29specify app lib dependencies in Makefiles (patch 1/3)Dan Nicholson
2007-10-25Ignore new programsDan Nicholson
2007-10-18glxinfo: Try creating a GLX context using an fbconfig if no visuals are ↵Kristian Høgsberg
available.
2007-10-17pbutil: Do not require GLX_SGIX_pbuffer for fbconfig only-functions.Kristian Høgsberg
2007-10-17glxinfo: Also print number of fbconfigs.Kristian Høgsberg
2007-10-17Fixup a couple of thinkos in glxinfo changes.Kristian Høgsberg
2007-10-16Implement support for printing glx fbconfigs in glxinfo.Kristian Høgsberg
2007-10-16glxinfo: Only print visuals that actually support GLX.Kristian Høgsberg
2007-10-13Do XSync() before resetting error handler.Kristian Høgsberg
2007-10-11Example of cooperative rendering into one window by two processesBrian
2007-10-11New glxsnoop demo to display another window's z/stencil/back buffer.Brian
2007-10-10Ignore more generated files in progs/Dan Nicholson
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.
2007-09-28add support for LDFLAGS env varDan Nicholson
2007-09-24Update .gitignore for tests and xdemos.Eric Anholt
2007-09-10clean-up (see bug 12317)Brian
2007-08-14xdemo case: Wei Wang's patch for bug#9759Xiang, Haihao
2007-08-07parse standard -geometry optionBrian
2007-08-07glxgears: Add an x/y window size parameter.Ingo Molnar
2007-07-24fix logic error, typosBrian
2007-07-11Improve this demo in a few ways.Brian
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.
2007-05-29use glXGetProcAddress to get extension funcsBrian
2007-05-21set texcoords depending on GLX_Y_INVERTED_EXTBrian
2007-05-19GLX_EXT_texture_from_pixmap testBrian
2006-12-13Remove the xdemo.c program from PROGS since it doesn't work with GLX/DRI.Brian
2006-12-13Use XDisplayName() when reporting errors (bug 8079).Brian
2006-12-06glxinfo: When direct rendering is not enabled, print some hints.Michel Dänzer
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 .
2006-12-06Make git ignore files only generated at build time.Michel Dänzer
2006-10-16Added -clip option to test glCopyPixels beyond window bounds.Brian Paul
Clear dest window to black before copying. Use glWindowPos2iARB().
2006-07-13LIB_DIR is now just 'lib' or 'lib64'Brian Paul
Replaced $(LIB_DIR) with $(TOP)/$(LIB_DIR), use LIB_DIR in install targets. Patch by Hanno Böck.
2006-05-17call reshape() after init() to set initial projection/viewing transform (see ↵Brian Paul
bug 6941)
2006-05-16bug 6941: fixed initial rendering problems in glxgearsTilman Sauerbeck
2006-05-15added a few extension #ifdef testsBrian Paul
2006-05-15usage() functionBrian Paul
2006-05-13Expanded output with -l option: vertex/fragment program and vertex/fragmentBrian Paul
shader limits. Misc sync-ups with x.org copy of glxinfo.
2006-04-13Use -I$(INCDIR) to get Mesa, not system headers (Dan Schikore)Brian Paul