summaryrefslogtreecommitdiffstats
path: root/progs
Commit message (Collapse)AuthorAgeFilesLines
* progs/egl: Replace egltri by xegl_tri.Chia-I Wu2010-04-013-356/+88
| | | | | With the switch to eglut, xegl_tri supports both X11 and EGL_MESA_screen_surface. Have it replace egltri.
* progs/egl: Porg xegl_tri to eglut.Chia-I Wu2010-04-012-254/+30
|
* progs/egl: Port eglgears to eglut.Chia-I Wu2010-04-012-219/+59
|
* progs/egl: Add eglut.Chia-I Wu2010-04-016-0/+880
| | | | | eglut is a simple library with GLUT-like API. It is intended to be used by simple EGL demos.
* progs/openvg: Move OpenVG demos to a subdirectory of progs/egl.Chia-I Wu2010-04-0133-2/+3
| | | | | | | That is, move progs/openvg/demos to progs/egl/openvg, progs/openvg/trivial to progs/egl/openvg/trivial.
* progs/es: Move OpenGL ES demos to subdirectories of progs/egl.Chia-I Wu2010-04-0121-19/+19
| | | | | | | | Move progs/es1/xegl -> progs/egl/opengles1, progs/es1/screen -> progs/egl/opengles1/screen, progs/es2/xegl -> progs/egl/opengles2.
* progs/egl: Move demos a level deeper.Chia-I Wu2010-04-0113-1/+1
| | | | Move the demos to "opengl" subdirectory.
* gallium/unit: Invoke util_half_init_tables().José Fonseca2010-04-011-0/+2
| | | | half float formats now pass the tests.
* util: Add support for other DXTn RGBA formats.José Fonseca2010-04-011-2/+2
|
* util: Get DXT1_RGB format working correctly.José Fonseca2010-04-011-2/+19
|
* util: Add test case for PIPE_FORMAT_DXT1_RGB.José Fonseca2010-04-011-5/+37
|
* util: Allow to have block format test casesJosé Fonseca2010-04-011-68/+145
|
* gallium/unit: Install test in build/xxx/binJosé Fonseca2010-04-011-0/+2
|
* util: Make the accessors bidimensional again.José Fonseca2010-03-311-4/+4
| | | | Otherwise there's no way to unpack blocks with height >1
* util: Add callback to fetch a single pixel.José Fonseca2010-03-311-0/+34
|
* python/tests: Read the number of tests to execute from command line.José Fonseca2010-03-311-1/+4
|
* util: Put the format pack/unpack functions in the description table.José Fonseca2010-03-311-20/+25
|
* util: Make pack/unpack operate on spans.José Fonseca2010-03-311-4/+4
|
* util: Make util_format_xxx_pack_xxx take pointer as arguments.José Fonseca2010-03-311-2/+6
|
* python/tests: Run trhough tests randomly.José Fonseca2010-03-312-55/+52
|
* python/tests: Rename test name.José Fonseca2010-03-311-0/+0
| | | | We only test blitting from a surface -- we don't test any sampler state.
* python/tests: Test all existing gallium formats.José Fonseca2010-03-312-86/+57
|
* python/tests: Speed up the tests by reusing the same pipe context.José Fonseca2010-03-312-4/+6
|
* python/tests: Get the tests running again.José Fonseca2010-03-315-32/+97
|
* Merge branch '7.8'Michel Dänzer2010-03-301-1/+0
|\ | | | | | | | | | | | | | | Conflicts: Makefile src/mesa/main/version.h Resolved by keeping version strings from master (also in the intel driver).
| * progs/tests: Remove duplicate texcompress2 in SConscript.Vinson Lee2010-03-271-1/+0
| |
* | progs/glsl: Add workarounds for Apple GLSL compiler crash.Vinson Lee2010-03-292-0/+14
| | | | | | | | | | | | 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.
* | progs/glsl: Remove inline keyword.Vinson Lee2010-03-292-6/+6
| | | | | | | | Fixes MSVC build.
* | progs/gallium/python: Get tri.py sample working again.José Fonseca2010-03-291-10/+10
| |
* | 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
| |