Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-03-31 | python/tests: Speed up the tests by reusing the same pipe context. | José Fonseca | |
2010-03-31 | python/tests: Get the tests running again. | José Fonseca | |
2010-03-30 | Merge branch '7.8' | Michel Dänzer | |
Conflicts: Makefile src/mesa/main/version.h Resolved by keeping version strings from master (also in the intel driver). | |||
2010-03-29 | progs/glsl: Add workarounds for Apple GLSL compiler crash. | Vinson Lee | |
fsraytrace and vsraytrace were crashing on Mac OS X 10.6.3 in the Apple GLSL compiler function TPPStreamCompiler::assignOperands. Removing some const qualifers made the crashes go away. | |||
2010-03-29 | progs/glsl: Remove inline keyword. | Vinson Lee | |
Fixes MSVC build. | |||
2010-03-29 | progs/gallium/python: Get tri.py sample working again. | José Fonseca | |
2010-03-29 | progs/glsl: improve the mouse drag/rotate code a little | Brian Paul | |
2010-03-29 | progs/glsl: let the mouse rotate the scene | RALOVICH, Kristóf | |
2010-03-28 | progs: Comment out gallium/raw/SConscript from progs/SConscript. | Vinson Lee | |
Commit db5c2235d1accc2adcf1746aec2342bfa67237ba broke the default SCons build. NameError: name 'graw' is not defined: This patch allows the default SCons build to work again until a proper fix is available. | |||
2010-03-28 | progs/raw: add note about accessing utility functions | Keith Whitwell | |
2010-03-28 | gallium: new raw gallium interface to support standalone tests | Keith Whitwell | |
Provides basic window system integration behind a simple interface, allowing tests to be written without dependency on either the driver or window system. With a lot of work, could turn into something like glut for gallium. | |||
2010-03-27 | progs/tests: Remove duplicate texcompress2 in SConscript. | Vinson Lee | |
2010-03-26 | progs/gallium: Add trivial gallium demos | Jakob Bornecrantz | |
2010-03-24 | progs/glsl: Fix vsraytrace GLSL compilation error. | Vinson Lee | |
Fixes the following GLSL error on Mac OS X. '=' : assigning non-constant to 'const 3-component vector of float' | |||
2010-03-24 | progs/glsl: Add raytracing demos to SCons build. | Vinson Lee | |
2010-03-24 | progs/demos: add other modes/patterns to dissolve demo | Brian Paul | |
2010-03-24 | progs/glsl: remove/replace //-style comments | Brian Paul | |
2010-03-24 | progs/glsl: silence warnings, remove debug code, adjust window size, etc | Brian Paul | |
2010-03-24 | demos: import GLSL raytracing demos | RALOVICH, Kristóf | |
2010-03-24 | progs/egl: Link xeglthreads to libpthread. | Chia-I Wu | |
This should hopefully fix a build failure reported by Chris Ball when binutils-gold is used. | |||
2010-03-23 | Change libX11 variables to not conflict with AC_PATH_XTRA | Dan Nicholson | |
The variable X_LIBS from AC_PATH_XTRA contains only the -L searchdir parameter and not the -lX11 to link to Xlib. Use X11 prefixed build vars for linking with Xlib to avoid the conflict. Signed-off-by: Dan Nicholson <dbn.lists@gmail.com> | |||
2010-03-22 | Merge branch '7.8' | Brian Paul | |
Conflicts: src/gallium/drivers/cell/ppu/cell_screen.c src/mesa/state_tracker/st_cb_drawpixels.c | |||
2010-03-21 | progs/tests: Add cva_huge to SCons build. | Vinson Lee | |
2010-03-21 | progs/tests: Include stddef.h for ptrdiff_t on all platforms. | Vinson Lee | |
stddef.h is the standard C header that defines ptrdiff_t. Fixes build of cva_huge on Mac OS X. | |||
2010-03-21 | tests: Add test for huge client arrays that has to be split. | Pauli Nieminen | |
When running this test case in valgrind report includes read of unitialized value in _tnl_draw_prims. The bug doesn't cause any vissible errors. Bug is caused by vbo_split_copy that is calling draw function with max_index one past the end instead of the end. | |||
2010-03-18 | progs/tests: also test stencil INCR_WRAP mode if supported | Brian Paul | |
2010-03-18 | progs/tests: comments and clean-ups | Brian Paul | |
2010-03-17 | progs/trivial: added comments | Brian Paul | |
2010-03-17 | progs/samples: improve copy.c demo | Brian Paul | |
If the test image was larger than the window, nothing was drawn because of invalid raster position. Use glWindowPos instead of glRasterPos. Also, use integer src/dst coordinates to avoid grabbing black pixels outside of the src image region. | |||
2010-03-17 | progs/samples: silence warnings | Brian Paul | |
2010-03-15 | progs/objviewer: remove debug code | Brian Paul | |
2010-03-13 | Use X_LIBS from pkg-config, instead of libdir, for locating libX11 | Jeff Smith | |
Signed-off-by: Jeff Smith <whydoubt@yahoo.com> Signed-off-by: Dan Nicholson <dbn.lists@gmail.com> | |||
2010-03-12 | Merge branch '7.8' | Michel Dänzer | |
2010-03-12 | Add programs to .gitignore in redbook | Jeff Smith | |
Signed-off-by: Jeff Smith <whydoubt@yahoo.com> Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-03-12 | Add programs to .gitignore in xdemos | Jeff Smith | |
Signed-off-by: Jeff Smith <whydoubt@yahoo.com> Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-03-12 | Add -L$(libdir) for xdemos and egl so that the right libX11 is found | Jeff Smith | |
Signed-off-by: Jeff Smith <whydoubt@yahoo.com> Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-03-12 | Grammar and spelling fixes | Jeff Smith | |
Signed-off-by: Jeff Smith <whydoubt@yahoo.com> Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-03-11 | progs/demos: added 'f' key to toggle filtering mode in stex3d.c | Brian Paul | |
2010-03-11 | progs/fpglsl: Fix GLSL compilation failures on Mac OS X. | Vinson Lee | |
2010-03-10 | progs/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-10 | progs/trivial: make clear-fbo-scissor.c work with other GL drivers | Brian 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-10 | fpglsl: a few more useful glsl tests | Zack Rusin | |
2010-03-10 | fpglsl: set an integer uniform required by the loop example | Zack Rusin | |
2010-03-10 | fpglsl: add some for and while loops | Zack Rusin | |
2010-03-10 | progs/trivial: add -t (RTT) option for clear-fbo-scissor.c | Brian Paul | |
2010-03-10 | progs/trivial: added clear-fbo-scissor.c to test scissored clear of FBO | Brian Paul | |
2010-03-10 | progs/tests: add additional FBO->window test paths (disabled) | Brian Paul | |
Normally use glReadPixels + glDrawPixels. Add debug/test paths for glCopyPixels and glBlitFramebuffer. | |||
2010-03-09 | progs/tests: use first color attachement | Maciej Cencora | |
Allows the tests to be run on drivers that supports only one color attachement. | |||
2010-03-09 | Merge 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-08 | xdemos/omlsync: improve OML WaitMsc test | Jesse 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. |