summaryrefslogtreecommitdiff
path: root/progs
AgeCommit message (Collapse)Author
2010-03-12Merge branch '7.8'Michel Dänzer
2010-03-12Add programs to .gitignore in redbookJeff Smith
Signed-off-by: Jeff Smith <whydoubt@yahoo.com> Signed-off-by: Brian Paul <brianp@vmware.com>
2010-03-12Add programs to .gitignore in xdemosJeff Smith
Signed-off-by: Jeff Smith <whydoubt@yahoo.com> Signed-off-by: Brian Paul <brianp@vmware.com>
2010-03-12Add -L$(libdir) for xdemos and egl so that the right libX11 is foundJeff Smith
Signed-off-by: Jeff Smith <whydoubt@yahoo.com> Signed-off-by: Brian Paul <brianp@vmware.com>
2010-03-12Grammar and spelling fixesJeff Smith
Signed-off-by: Jeff Smith <whydoubt@yahoo.com> Signed-off-by: Brian Paul <brianp@vmware.com>
2010-03-11progs/demos: added 'f' key to toggle filtering mode in stex3d.cBrian Paul
2010-03-11progs/fpglsl: Fix GLSL compilation failures on Mac OS X.Vinson Lee
2010-03-10progs/trivial: use -c option to use glCopyPixels()Brian Paul
Otherwise we use glRead/DrawPixels to copy the off-screen FBO image into the window. Looks like NVIDIA's broken when using -c (the image is upside down), but OK with -c -t.
2010-03-10progs/trivial: make clear-fbo-scissor.c work with other GL driversBrian Paul
NVIDIA's driver requires that the texture that we're going to render into be complete. Need to set min/mag filters to non-mipmap modes. Plus added other error/debug checks.
2010-03-10fpglsl: a few more useful glsl testsZack Rusin
2010-03-10fpglsl: set an integer uniform required by the loop exampleZack Rusin
2010-03-10fpglsl: add some for and while loopsZack Rusin
2010-03-10progs/trivial: add -t (RTT) option for clear-fbo-scissor.cBrian Paul
2010-03-10progs/trivial: added clear-fbo-scissor.c to test scissored clear of FBOBrian Paul
2010-03-10progs/tests: add additional FBO->window test paths (disabled)Brian Paul
Normally use glReadPixels + glDrawPixels. Add debug/test paths for glCopyPixels and glBlitFramebuffer.
2010-03-09progs/tests: use first color attachementMaciej Cencora
Allows the tests to be run on drivers that supports only one color attachement.
2010-03-09Merge branch 'gallium-vertexelementcso'Roland Scheidegger
Conflicts: src/gallium/auxiliary/cso_cache/cso_context.c src/gallium/auxiliary/util/u_blit.c src/gallium/auxiliary/util/u_gen_mipmap.c src/gallium/drivers/i915/i915_context.h src/gallium/drivers/i965/brw_draw_upload.c src/gallium/drivers/r300/r300_blit.c src/gallium/drivers/r300/r300_context.h src/gallium/drivers/r300/r300_render.c src/gallium/drivers/r300/r300_state_derived.c src/mesa/state_tracker/st_cb_bitmap.c src/mesa/state_tracker/st_cb_clear.c
2010-03-08xdemos/omlsync: improve OML WaitMsc testJesse Barnes
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.
2010-03-08Merge branch '7.8'Brian Paul
2010-03-06progs/gallium/unit: Remove the test cases.José Fonseca
2010-03-06progs/gallium/unit: Skip test cases which cannot be represented in 4ub.José Fonseca
2010-03-06progs/gallium/unit: Use the shortened name to reconstruct the function being ↵José Fonseca
tested.
2010-03-06progs/gallium/unit: Cleanup/fix PIPE_FORMAT_R8SG8SB8UX8U_NORM test cases.José Fonseca
2010-03-05progs/demos: Add arbocclude2 to Makefile and .gitignore.Vinson Lee
2010-03-05progs/xdemos: fix up GLX extension checkingJesse Barnes
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.
2010-03-05xdemos/omlsync: add waitformsc and swap interval codeJesse Barnes
2010-03-05progs: Add arbocclude2 demo.Michal Krol
2010-03-04xdemos: add OML sync testJesse Barnes
Add program to test glXSwapBuffersMscOML behavior. Based on glsync.c.
2010-03-04fix getprocaddress testGeorge Sapountzis
2010-03-03progs/gallium/unit: Test (un)pack_4ub.José Fonseca
Most of them are failing.
2010-03-03progs/gallium/unit: Remove PIPE_FORMAT_R8G8B8X8_SNORM test cases.José Fonseca
2010-03-02progs/gallium/unit: Add test cases for single precision floats.José Fonseca
2010-03-02progs/gallium/unit: Add test cases for Nx16 and Nx32 integer formats.José Fonseca
2010-03-02progs/gallium/unit: Add more test cases.José Fonseca
2010-03-02progs/gallium/python: Rename pipe formats.José Fonseca
2010-03-02gallium/unit: Rename pipe formats.José Fonseca
2010-03-02rbug: Rename pipe formats.José Fonseca
2010-03-01progs/gallium/unit: Rename PIPE_FORMAT_A8B8G8R8_SNORM.José Fonseca
2010-03-01progs/gallium: Make a phony target "unit" to run unit tests.José Fonseca
2010-02-27progs/gallium: Add unit tests for pixel format packing/unpacking.José Fonseca
2010-02-26eglinfo: Wrap extension stringKristian Høgsberg
2010-02-26xeglgears: Add an case that exercises EGL_KHR_gl_renderbuffer_imageKristian Høgsberg
2010-02-26progs/tests: add compile-time option for coloring texture cornersBrian Paul
When debugging wrap modes it's helpful to set each corner of the texture image to a distinct color.
2010-02-26progs/glsl: Ensure CFLAGS are passed during linkingDan Nicholson
Commit ab6825b3e3fd04564b7840e945fa32b0a7b3c0c2 fixed an issue where the architecture option -m32 wasn't being passed to the compiler when linking .o files. This would only fix the issue with user's building with the hacky --enable-32-bit. The right way to fix this is to pass CFLAGS to the linker, which the GNU make builtin rules unfortunately don't do. Signed-off-by: Dan Nicholson <dbn.lists@gmail.com> Tested-by: Török Edwin <edwintorok@gmail.com>
2010-02-26xeglgears: Clean up the code a bitKristian Høgsberg
Still a mess...
2010-02-26progs/xdemos: fix typo in glxinfo helpBrian Paul
2010-02-26Fix up more stale references to gl(X)_API.xml which have moved.Michel Dänzer
AFAICT the getproc* stanzas in progs/{fp,trivial}/Makefile are completely unused at this point, so just remove them.
2010-02-26fix test progs from gl_API moveWil Reichert
Looks like these got missed.
2010-02-26drop header files and demos for dropped window systemsGeorge Sapountzis
2010-02-25progs/glsl: add ARCH_FLAGS to LDLIBSTörök Edvin
Allows building 32-bit demos on 64-bit Debian host. Signed-off-by: Brian Paul <brianp@vmware.com>