summaryrefslogtreecommitdiff
path: root/progs
AgeCommit message (Collapse)Author
2010-04-28progs/demos: added code to test compressed mipmap generation (disabled)Brian Paul
2010-04-28Merge branch '7.8'Brian Paul
Conflicts: src/glx/dri2_glx.c src/glx/glx_pbuffer.c
2010-04-27osdemos: replace assertion with error handlerBrian Paul
2010-04-27osmesa: don't need to link with -lGLBrian Paul
The gl entrypoints are in libOSMesa.so
2010-04-27progs/tests: Remove meaningless const qualifier in arraytexture.c.Vinson Lee
2010-04-27progs/egl: Add egl/eglut to PROGRAM_DIRS.Chia-I Wu
Make sure eglut is built before the demos. This should work more reliably with make -j<N>.
2010-04-22progs/tests: asst. improvements to zreaddraw.cBrian Paul
2010-04-22Merge branch '7.8'Brian Paul
Conflicts: src/mesa/state_tracker/st_format.c
2010-04-21progs/demos: Fix the progs/demos/rain help textAaron Plattner
Signed-off-by: Brian Paul <brianp@vmware.com>
2010-04-21progs/glsl: better commentsBrian Paul
2010-04-20progs/tests: asst. changes to antialias.cBrian Paul
2010-04-19egl: Fix demos to build with user specified XlibDan Nicholson
Commit 88be2171e7 fixed the egl demos on the stable branch, but now they're spread out across multiple subdirectories. Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
2010-04-19egl: Pass flags to locate Xlib headers and librariesDan Nicholson
eglplatform.h pulls in Xlib.h on X11 platforms. Likewise, the egl glx driver and egl programs needs to link to libX11. Make sure we use the locations the user told us about. Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
2010-04-19Change libX11 variables to not conflict with AC_PATH_XTRADan 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> (cherry picked from commit e725ef171b5a4d5425461f237d9ccab223806913)
2010-04-19Use X_LIBS from pkg-config, instead of libdir, for locating libX11Jeff Smith
Signed-off-by: Jeff Smith <whydoubt@yahoo.com> Signed-off-by: Dan Nicholson <dbn.lists@gmail.com> (cherry picked from commit 8d86d395dcf6a5f192b6987485bb7aef49f1fefc)
2010-04-17progs/tests: IgnoresJakob Bornecrantz
2010-04-14progs/tests: added stencilreaddraw to SConscript, MakefileBrian Paul
2010-04-14progs/tests: new stencilreaddraw.c testBrian Paul
Based on the zreaddraw.c test.
2010-04-14glxinfo: Print drawable type in verbose modeKristian Høgsberg
2010-04-13progs/gallium: Move into src/gallium/testsJosé Fonseca
Two reasons: - progs will eventually have its own repository - it is just to easy to forget updating the code for interface changes when it is outside of src
2010-04-12progs/gallium/raw: Update symbols.José Fonseca
Untested -- just the same changes done to progs/gallium/python.
2010-04-12progs/gallium/python: Try to fix most regressions.José Fonseca
Not enough for retrace to work again though.
2010-04-11progs/trivial: Update .gitignore.Vinson Lee
2010-04-12progs/egl: Add lib directories to OpenVG demosJakob Bornecrantz
2010-04-10progs/glsl: Update .gitignore.Vinson Lee
2010-04-10Fix copyright headers.Chia-I Wu
Update the warranty disclaimer to use the more general "THE AUTHORS OR COPYRIGHT HOLDERS". This is done manually on files created by me. Hope that I do not miss anything.
2010-04-09Merge branch '7.8'Brian Paul
2010-04-09util: Get all depth stencil tests passing.José Fonseca
Note the tests don't test all the paths, in particular stride, and ensuring the old value is preserved.
2010-04-09util: Reorder format tests -- group by format.José Fonseca
2010-04-09util: Add dedicated depth-stencil packing/unpacking functions.José Fonseca
Depth-stencil manually written given that each one is very close to be a special case. u_format_zs.c's still untested.
2010-04-09gallium/unit: Silence warnings.José Fonseca
2010-04-08progs/tests: added some debug code (disabled)Brian Paul
2010-04-07util: Remove the half typedef from p_compiler.h.José Fonseca
Unnecessary, and doesn't even guarantee size.
2010-04-07util: Implement YUV and subsampled RGB format conversion.José Fonseca
2010-04-06progs/egl: Correctly check GL_OES_EGL_image.Chia-I Wu
The hack was added because GL_OES_EGL_image was not exported in the extension string.
2010-04-06progs/egl: Fix the blank window in pbuffer demo.Chia-I Wu
EGL requires eglSwapBuffers to be called on the current surface.
2010-04-06progs/egl: Port drawtex and torus to eglut.Chia-I Wu
This brings the demos also to KMS and removes about 400 duplicated lines of code.
2010-04-04progs: Include X11 headers and libraries in SCons build.Vinson Lee
Fixes Mac OS X SCons build.
2010-04-04Merge branch '7.8'Ian Romanick
2010-04-04progs/egl: Add an OpenGL ES demo for EGL_OES_image_pixmap.Chia-I Wu
The demo uses a Pixmap as its drawing area, and whatever is drawn on the pixmap will be used as a texture to draw a cube.
2010-04-03xdemos: Build object files firstJeremy Huddleston
This helps debugging on darwin. Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2010-04-03util: Revert unsolicited, untested, unreviewed, and broken changes to format ↵José Fonseca
support. Not all is bad, but I'm afraid I'll have to throw the baby with the water given they are all tied to together.
2010-04-03python/tests: Output test results in a format that Hudson CI can understand.José Fonseca
2010-04-02progs/gallium/unit: Silence uninitialized variable warnings.Vinson Lee
2010-04-01progs/gallium/unit: Move declaration before code.Vinson Lee
Fixes SCons build.
2010-04-02gallium/util: revert util_format_init additionLuca Barbieri
Putting calls to util_format_init all over the codebase is infeasible. Instead, half float tables are pregenerated, and the s3tc library is loaded on demand. I believe this is a solution that combines performance, cleanliness, flexibility and portability.
2010-04-02gallium/util: add util_format_is_supported to check for pack/unpackLuca Barbieri
This improves the code by making it more readable, and removes special knowledge of S3TC and other formats from softpipe.
2010-04-02progs/gallium: add unit test for u_halfLuca Barbieri
2010-04-02progs/egl: Update .gitignore.Chia-I Wu
2010-04-02progs/egl: Link to eglut first.Chia-I Wu
This moves eglut before EGL so that the symbols can be resolved.