Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-10-11 | Example of cooperative rendering into one window by two processes | Brian | |
2007-10-11 | New glxsnoop demo to display another window's z/stencil/back buffer. | Brian | |
2007-10-10 | replace 'brick' with correct program name in printfs | Brian | |
2007-10-10 | Ignore 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-28 | add support for LDFLAGS env var | Dan Nicholson | |
2007-09-24 | Fix progs/tests/ build with BSD make. | Eric Anholt | |
2007-09-24 | Update .gitignore for tests and xdemos. | Eric Anholt | |
2007-09-24 | Just use stddef.h to get ptrdiff_t instead of obsolete malloc.h. | Eric Anholt | |
2007-09-19 | Update .gitignore for demos. | Eric Anholt | |
2007-09-14 | added copypix.c test (test glCopyPixels w/ pixel zoom) | Brian | |
2007-09-10 | clean-up (see bug 12317) | Brian | |
2007-08-27 | added --noclear option to demonstrate rendering without glClear | Brian | |
2007-08-14 | xdemo case: Wei Wang's patch for bug#9759 | Xiang, Haihao | |
2007-08-07 | parse standard -geometry option | Brian | |
2007-08-07 | glxgears: Add an x/y window size parameter. | Ingo Molnar | |
2007-08-01 | triangle rasterization with frag shader | Brian | |
2007-08-01 | added trirast program | Brian | |
2007-07-30 | misc comments, clean-ups | Brian | |
2007-07-29 | added a few more functions | Brian | |
2007-07-29 | Added shader points and shader bitmap demos | Brian | |
2007-07-27 | more Mingw32 fixes | Zhang | |
2007-07-26 | clamp float colors | Brian | |
2007-07-24 | fix logic error, typos | Brian | |
2007-07-21 | Fix a number of MINGW32 issues | Zhang | |
2007-07-11 | Improve 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-07-06 | call glutInit(), bug 11486 | Xavier Bachelot | |
2007-07-04 | support more modes, added -f cmd line option | Brian | |
2007-06-28 | use larger point/sprite size | Brian | |
2007-06-21 | Random state-change / primitive rendering. Good for hammering on a driver... | Brian | |
2007-06-08 | fix glReadPixels parameters to handle odd-width windows correctly | Brian | |
2007-06-08 | disable shader program before glDrawPixels | Brian | |
2007-06-07 | Add support for shadow mapping with vertex and fragment programs | Ian Romanick | |
2007-06-07 | Refactor shadow map modelview and projection code | Ian Romanick | |
Explicitly store the modelview matrix and projection matrix used when the shadow map is created. These matrices only need be updated when RenderShadowMap is called. Previously, slightly different code was used to draw and project the shadow map. | |||
2007-06-07 | Remove '#if defined' tests for ARB extensions. | Ian Romanick | |
2007-05-29 | use glXGetProcAddress to get extension funcs | Brian | |
2007-05-21 | set texcoords depending on GLX_Y_INVERTED_EXT | Brian | |
2007-05-19 | GLX_EXT_texture_from_pixmap test | Brian | |
2007-05-16 | Add simple program to test GL_MESA_texture_array. | Ian Romanick | |
2007-05-09 | Tweak the shell scripting for descending into and building subdirs. | Brian | |
In general, use this: @for dir in $(SUBDIRS) ; do \ if [ -d $$dir ] ; then \ (cd $$dir && $(MAKE)) || exit 1; \ fi \ done Basically, silently skip missing subdirs but generate an error and stop if there's a compilation or install problem. This was done inconsistantly before. In once case, a missing subdir was causing us to go into an infinte loop! | |||
2007-05-08 | remove some debug code | Brian | |
2007-05-08 | a somewhat nicer demo w/ command line options | Brian | |
2007-05-02 | get rid of normal vector | Brian | |
2007-05-02 | get rid of OSMESA stuff | Brian | |
2007-05-02 | New test of the dFdx(), dFdy() functions. | Brian | |
2007-04-27 | added glGetActiveAttrib | Brian | |
2007-04-26 | Windows updates | Brian | |
2007-04-26 | move #include <GL/glut.h> after other #includes for Windows | Brian | |
2007-04-26 | use sqrt(), not sqrtf() for Windows | Brian | |
2007-04-21 | Fix FBO completeness bug in shadowtex. | Ian Romanick | |
2007-04-21 | destroy window upon exit | Brian | |