summaryrefslogtreecommitdiff
path: root/progs
AgeCommit message (Collapse)AuthorFilesLines
2010-05-05progs/egl: Fix eglut with OpenGL ES 2.0.Chia-I Wu1-1/+3
EGL_OPENGL_ES2_BIT is not set when choosing OpenGL ES 2.0 configs.
2010-05-04progs/demos: set line width back to 1.0 in DrawBox()Brian Paul1-0/+1
2010-05-04glxinfo: Get visual info when an fbconfig has an associated visualKristian Høgsberg1-8/+11
2010-05-03progs/egl/opengles2: Add es2gears demoKristian Høgsberg2-4/+429
Because every subdirectory under progs has to have a version of gears.
2010-05-03progs/demos: check for GL_ARB_imaging if convolutions is requestedBrian Paul1-0/+7
2010-05-01progs/tests: Remove meaningless const qualifiers.Vinson Lee12-12/+12
2010-05-01progs/demos: Remove meaningless const qualifier in vao_demo.c.Vinson Lee1-1/+1
2010-04-28progs/demos: added code to test compressed mipmap generation (disabled)Brian Paul1-0/+66
2010-04-28Merge branch '7.8'Brian Paul2-2/+6
Conflicts: src/glx/dri2_glx.c src/glx/glx_pbuffer.c
2010-04-27osdemos: replace assertion with error handlerBrian Paul1-1/+5
2010-04-27osmesa: don't need to link with -lGLBrian Paul1-1/+1
The gl entrypoints are in libOSMesa.so
2010-04-27progs/tests: Remove meaningless const qualifier in arraytexture.c.Vinson Lee1-1/+1
2010-04-27progs/egl: Add egl/eglut to PROGRAM_DIRS.Chia-I Wu4-13/+4
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 Paul1-17/+44
2010-04-22Merge branch '7.8'Brian Paul1-1/+1
Conflicts: src/mesa/state_tracker/st_format.c
2010-04-21progs/demos: Fix the progs/demos/rain help textAaron Plattner1-1/+1
Signed-off-by: Brian Paul <brianp@vmware.com>
2010-04-21progs/glsl: better commentsBrian Paul1-2/+2
2010-04-20progs/tests: asst. changes to antialias.cBrian Paul1-39/+32
2010-04-19egl: Fix demos to build with user specified XlibDan Nicholson5-9/+12
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 Nicholson1-1/+1
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 Nicholson2-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 <dbn.lists@gmail.com> (cherry picked from commit e725ef171b5a4d5425461f237d9ccab223806913)
2010-04-19Use X_LIBS from pkg-config, instead of libdir, for locating libX11Jeff Smith2-5/+5
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 Bornecrantz1-3/+14
2010-04-14progs/tests: added stencilreaddraw to SConscript, MakefileBrian Paul2-0/+2
2010-04-14progs/tests: new stencilreaddraw.c testBrian Paul1-0/+187
Based on the zreaddraw.c test.
2010-04-14glxinfo: Print drawable type in verbose modeKristian Høgsberg1-2/+28
2010-04-13progs/gallium: Move into src/gallium/testsJosé Fonseca88-6712/+0
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é Fonseca3-11/+11
Untested -- just the same changes done to progs/gallium/python.
2010-04-12progs/gallium/python: Try to fix most regressions.José Fonseca9-151/+123
Not enough for retrace to work again though.
2010-04-11progs/trivial: Update .gitignore.Vinson Lee1-0/+1
2010-04-12progs/egl: Add lib directories to OpenVG demosJakob Bornecrantz1-1/+1
2010-04-10progs/glsl: Update .gitignore.Vinson Lee1-0/+2
2010-04-10Fix copyright headers.Chia-I Wu1-5/+6
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 Paul1-0/+13
2010-04-09util: Get all depth stencil tests passing.José Fonseca1-10/+294
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é Fonseca1-28/+32
2010-04-09util: Add dedicated depth-stencil packing/unpacking functions.José Fonseca1-20/+20
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é Fonseca1-2/+2
2010-04-08progs/tests: added some debug code (disabled)Brian Paul1-0/+13
2010-04-07util: Remove the half typedef from p_compiler.h.José Fonseca1-2/+2
Unnecessary, and doesn't even guarantee size.
2010-04-07util: Implement YUV and subsampled RGB format conversion.José Fonseca1-4/+12
2010-04-06progs/egl: Correctly check GL_OES_EGL_image.Chia-I Wu1-1/+0
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 Wu1-1/+2
EGL requires eglSwapBuffers to be called on the current surface.
2010-04-06progs/egl: Port drawtex and torus to eglut.Chia-I Wu6-548/+150
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 Lee1-0/+1
Fixes Mac OS X SCons build.
2010-04-04Merge branch '7.8'Ian Romanick1-30/+15
2010-04-04progs/egl: Add an OpenGL ES demo for EGL_OES_image_pixmap.Chia-I Wu2-0/+583
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 Huddleston1-30/+15
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é Fonseca1-1/+7
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é Fonseca1-5/+69