summaryrefslogtreecommitdiffstats
path: root/progs
Commit message (Collapse)AuthorAgeFilesLines
* progs/glsl: improve the mouse drag/rotate code a littleBrian Paul2010-03-292-11/+7
|
* progs/glsl: let the mouse rotate the sceneRALOVICH, Kristóf2010-03-292-31/+83
|
* progs: Comment out gallium/raw/SConscript from progs/SConscript.Vinson Lee2010-03-281-1/+1
| | | | | | | | | 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.
* progs/raw: add note about accessing utility functionsKeith Whitwell2010-03-281-0/+10
|
* gallium: new raw gallium interface to support standalone testsKeith Whitwell2010-03-283-0/+103
| | | | | | | | 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.
* progs/gallium: Add trivial gallium demosJakob Bornecrantz2010-03-264-0/+671
|
* progs/glsl: Fix vsraytrace GLSL compilation error.Vinson Lee2010-03-241-1/+1
| | | | | Fixes the following GLSL error on Mac OS X. '=' : assigning non-constant to 'const 3-component vector of float'
* progs/glsl: Add raytracing demos to SCons build.Vinson Lee2010-03-241-0/+2
|
* progs/demos: add other modes/patterns to dissolve demoBrian Paul2010-03-241-6/+131
|
* progs/glsl: remove/replace //-style commentsBrian Paul2010-03-242-3/+2
|
* progs/glsl: silence warnings, remove debug code, adjust window size, etcBrian Paul2010-03-242-31/+35
|
* demos: import GLSL raytracing demosRALOVICH, Kristóf2010-03-243-1/+751
|
* progs/egl: Link xeglthreads to libpthread.Chia-I Wu2010-03-241-1/+1
| | | | | This should hopefully fix a build failure reported by Chris Ball when binutils-gold is used.
* Change libX11 variables to not conflict with AC_PATH_XTRADan Nicholson2010-03-232-4/+4
| | | | | | | | 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 <[email protected]>
* Merge branch '7.8'Brian Paul2010-03-223-0/+234
|\ | | | | | | | | | | | | Conflicts: src/gallium/drivers/cell/ppu/cell_screen.c src/mesa/state_tracker/st_cb_drawpixels.c
| * progs/tests: Add cva_huge to SCons build.Vinson Lee2010-03-211-0/+1
| |
| * progs/tests: Include stddef.h for ptrdiff_t on all platforms.Vinson Lee2010-03-211-5/+1
| | | | | | | | | | | | stddef.h is the standard C header that defines ptrdiff_t. Fixes build of cva_huge on Mac OS X.
| * tests: Add test for huge client arrays that has to be split.Pauli Nieminen2010-03-212-0/+237
| | | | | | | | | | | | | | | | 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.
* | progs/tests: also test stencil INCR_WRAP mode if supportedBrian Paul2010-03-181-6/+47
| |
* | progs/tests: comments and clean-upsBrian Paul2010-03-181-11/+21
| |
* | progs/trivial: added commentsBrian Paul2010-03-171-0/+3
| |
* | progs/samples: improve copy.c demoBrian Paul2010-03-171-13/+14
| | | | | | | | | | | | | | 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.
* | progs/samples: silence warningsBrian Paul2010-03-171-2/+4
| |
* | progs/objviewer: remove debug codeBrian Paul2010-03-151-2/+2
| |
* | Use X_LIBS from pkg-config, instead of libdir, for locating libX11Jeff Smith2010-03-132-5/+5
| | | | | | | | | | Signed-off-by: Jeff Smith <[email protected]> Signed-off-by: Dan Nicholson <[email protected]>
* | Merge branch '7.8'Michel Dänzer2010-03-128-11/+25
|\|
| * Add programs to .gitignore in redbookJeff Smith2010-03-121-0/+13
| | | | | | | | | | Signed-off-by: Jeff Smith <[email protected]> Signed-off-by: Brian Paul <[email protected]>
| * Add programs to .gitignore in xdemosJeff Smith2010-03-121-3/+4
| | | | | | | | | | Signed-off-by: Jeff Smith <[email protected]> Signed-off-by: Brian Paul <[email protected]>
| * Add -L$(libdir) for xdemos and egl so that the right libX11 is foundJeff Smith2010-03-122-4/+4
| | | | | | | | | | Signed-off-by: Jeff Smith <[email protected]> Signed-off-by: Brian Paul <[email protected]>
| * Grammar and spelling fixesJeff Smith2010-03-124-4/+4
| | | | | | | | | | Signed-off-by: Jeff Smith <[email protected]> Signed-off-by: Brian Paul <[email protected]>
* | progs/demos: added 'f' key to toggle filtering mode in stex3d.cBrian Paul2010-03-111-4/+11
| |
* | progs/fpglsl: Fix GLSL compilation failures on Mac OS X.Vinson Lee2010-03-112-2/+2
| |
* | progs/trivial: use -c option to use glCopyPixels()Brian Paul2010-03-101-2/+4
| | | | | | | | | | | | | | | | 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.
* | progs/trivial: make clear-fbo-scissor.c work with other GL driversBrian Paul2010-03-101-1/+19
| | | | | | | | | | | | | | 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.
* | fpglsl: a few more useful glsl testsZack Rusin2010-03-105-0/+46
| |
* | fpglsl: set an integer uniform required by the loop exampleZack Rusin2010-03-101-0/+5
| |
* | fpglsl: add some for and while loopsZack Rusin2010-03-102-0/+18
| |
* | progs/trivial: add -t (RTT) option for clear-fbo-scissor.cBrian Paul2010-03-101-5/+33
| |
* | progs/trivial: added clear-fbo-scissor.c to test scissored clear of FBOBrian Paul2010-03-103-1/+189
| |
* | progs/tests: add additional FBO->window test paths (disabled)Brian Paul2010-03-101-9/+37
| | | | | | | | | | Normally use glReadPixels + glDrawPixels. Add debug/test paths for glCopyPixels and glBlitFramebuffer.
* | progs/tests: use first color attachementMaciej Cencora2010-03-093-9/+9
| | | | | | | | Allows the tests to be run on drivers that supports only one color attachement.
* | Merge branch 'gallium-vertexelementcso'Roland Scheidegger2010-03-091-1/+0
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * | gallium: remove redundant nr_components field from pipe_vertex_elementRoland Scheidegger2010-02-171-1/+0
| | | | | | | | | | | | | | | This is a property of the associated src_format pipe format. Hence use util_format_get_nr_components to query this when necessary instead.
* | | xdemos/omlsync: improve OML WaitMsc testJesse Barnes2010-03-081-4/+6
| | | | | | | | | | | | | | | 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.
* | | Merge branch '7.8'Brian Paul2010-03-082-0/+2
|\ \ \ | | |/ | |/|
| * | progs/demos: Add arbocclude2 to Makefile and .gitignore.Vinson Lee2010-03-052-0/+2
| | |
* | | progs/gallium/unit: Remove the test cases.José Fonseca2010-03-061-545/+11
| | |
* | | progs/gallium/unit: Skip test cases which cannot be represented in 4ub.José Fonseca2010-03-061-4/+23
| | |
* | | progs/gallium/unit: Use the shortened name to reconstruct the function being ↵José Fonseca2010-03-061-1/+1
| | | | | | | | | | | | tested.
* | | progs/gallium/unit: Cleanup/fix PIPE_FORMAT_R8SG8SB8UX8U_NORM test cases.José Fonseca2010-03-061-7/+6
|/ /