summaryrefslogtreecommitdiff
path: root/progs
AgeCommit message (Collapse)Author
2010-01-28progs/tests: Remove unnecessary headers.Vinson Lee
2010-01-28progs/glsl: Fix bump GLSL compilation error on Mac OS.Vinson Lee
2010-01-28progs/glsl: Remove unused variable in bump.c.Vinson Lee
2010-01-28progs/glsl: Remove unnecessary header from samplers.c.Vinson Lee
2010-01-26support an 'embedded' platform target which turns off most parts of theAlan Hourihane
build.
2010-01-26glxgears: Support GLX_EXT_swap_control for querying the current swap interval.Aaron Plattner
Signed-off-by: Aaron Plattner <aplattner@nvidia.com> Signed-off-by: Brian Paul <brianp@vmware.com>
2010-01-26progs/tests: use glDrawRangeElements() in bufferobj.cBrian Paul
2010-01-25Merge branch 'mesa_7_7_branch'Brian Paul
Conflicts: src/mesa/drivers/dri/intel/intel_screen.c src/mesa/drivers/dri/intel/intel_swapbuffers.c src/mesa/drivers/dri/r300/r300_emit.c src/mesa/drivers/dri/r300/r300_ioctl.c src/mesa/drivers/dri/r300/r300_tex.c src/mesa/drivers/dri/r300/r300_texstate.c
2010-01-23progs/demos: Remove unnecessary header from shadowtex.c.Vinson Lee
2010-01-23Merge branch 'arb_half_float_vertex'Dave Airlie
2010-01-23Revert "add segl"Chia-I Wu
This reverts commit fe33b7083b0081b91ee338acbe966400c6b9a7b9. It was not supposed to be pushed yet.
2010-01-23progs: add trivial ARB_half_float_vertex support.Dave Airlie
This is just a trivial port of vp-array.c Signed-off-by: Dave Airlie <airlied@redhat.com>
2010-01-23add seglChia-I Wu
2010-01-22Merge branch 'mesa_7_7_branch'Brian Paul
Conflicts: src/gallium/auxiliary/draw/draw_context.c src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c src/gallium/auxiliary/pipebuffer/Makefile src/gallium/auxiliary/pipebuffer/SConscript src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.c src/gallium/auxiliary/tgsi/tgsi_scan.c src/gallium/drivers/i915/i915_surface.c src/gallium/drivers/i915/i915_texture.c src/gallium/drivers/llvmpipe/lp_setup.c src/gallium/drivers/llvmpipe/lp_tex_sample_c.c src/gallium/drivers/llvmpipe/lp_texture.c src/gallium/drivers/softpipe/sp_prim_vbuf.c src/gallium/state_trackers/xorg/xorg_dri2.c src/gallium/winsys/drm/intel/gem/intel_drm_api.c src/gallium/winsys/drm/nouveau/drm/nouveau_drm_api.c src/gallium/winsys/drm/radeon/core/radeon_drm.c src/gallium/winsys/drm/vmware/core/vmw_screen_dri.c src/mesa/state_tracker/st_cb_clear.c
2010-01-22progs/xdemos: add z/Z keys for scaling the renderingBrian Paul
2010-01-21progs/trivial: Remove unnecessary header from tri-fbo-tex-mip.c.Vinson Lee
2010-01-21progs/fp: testcases for GL_ARB_fragment_coord_conventionsBrian Paul
Based on a patch from Luca Barbieri but moved the comments after the !!ARBfp1.0 header
2010-01-20Merge remote branch 'origin/opengl-es-v2'Chia-I Wu
2010-01-18glxgears: unbind current context before "destroying" itMarcin Slusarz
glXDestroyContext does not destroy the context if it's still connected to some window. Unbind context from window to test it. Signed-off-by: Brian Paul <brianp@vmware.com>
2010-01-18progs/egl: Pass EGLDisplay to eglCopyBuffers.Chia-I Wu
X Display was wrongly passed to eglCopyBuffers.
2010-01-14Merge branch 'mesa_7_7_branch'Jakob Bornecrantz
Conflicts: src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.c src/gallium/auxiliary/util/Makefile src/gallium/drivers/r300/r300_state_derived.c
2010-01-14progs/trivial: test user clip plane in tri-point-line-clipped.cBrian Paul
2010-01-14progs/trivial: test glPolygonMode(POINT/LINE) with frustum clippingBrian Paul
Note whether the new verts introduced by clipping show up as points and lines along the edge of the window...
2010-01-11progs/xdemos: Remove unnecessary header from corender.c.Vinson Lee
2010-01-11progs/trivial: Remove unnecessary headers from tri-fbo-tex.c.Vinson Lee
2010-01-11progs/trivial: Remove unnecessary header from tri-fbo-tex-mip.c.Vinson Lee
2010-01-11progs/tests: Remove duplicate included header in vparray.c.Vinson Lee
2010-01-11progs/tests: Add newline to end of printf in vparray.c.Vinson Lee
2010-01-11progs/redbook: Remove unnecessary header from aapoly.c.Vinson Lee
2010-01-11progs/glsl: Remove duplicate included header from shtest.c.Vinson Lee
2010-01-11progs/demos: Remove unnecessary header from morph3d.c.Vinson Lee
2010-01-12progs/es2: Correctly set renderable type and client version.Chia-I Wu
Correctly set EGL_RENDERABLE_TYPE and EGL_CONTEXT_CLIENT_VERSION for OpenGL ES 2.0. Because es2_info is copied from es1_info, the fix for it actually goes to es1_info. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2010-01-12progs/es1: Bind texture image after rendering.Chia-I Wu
Unlike FBO, eglBindTexImage is supposed to be called after rendering. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2010-01-12Merge branch 'master' into opengl-es-v2Chia-I Wu
Conflicts: src/mesa/main/dd.h
2010-01-11progs/tests: Silence fprintf format warning.Vinson Lee
2010-01-11progs/demos: Remove unnecessary header from isosurf.c.Vinson Lee
2010-01-12progs/egl: Fix screen surface demos.Chia-I Wu
Set the screen surface size to the mode size, as the spec requires the screen surface size to be larger than the mode size. Besides, bind the API to OpenGL as they are written in it. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2010-01-12progs/egl: glGenTextures is called too early in xeglbindtex.Chia-I Wu
It should be called after eglMakeCurrent. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2010-01-12progs: Check the number of configs returned by eglChooseConfig.Chia-I Wu
A successful eglChooseConfig call does not imply there are valid configs. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2010-01-12progs: Add missing EGL_RENDERABLE_TYPE for EGL demos.Chia-I Wu
The default value of EGL_RENDERABLE_TYPE is EGL_OPENGL_ES_BIT. The proper values should be specified if we are not using OpenGL ES. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2010-01-11Merge branch 'master' of ssh://people.freedesktop.org/~jbarnes/mesaJesse Barnes
Conflicts due to DRI1 removal: src/mesa/drivers/dri/intel/intel_context.c src/mesa/drivers/dri/intel/intel_screen.c
2010-01-08xdemos/glsync: handle no sync method betterJesse Barnes
Print out count, finish rendering, etc. Makes the -sn option more useful.
2010-01-08xdemos/glsync: check glXMakeCurrent return valueJesse Barnes
Since this program is used for testing, catching this case can be helpful.
2010-01-08xdemos/glsync: Make glsync test draw a rectangleJesse Barnes
Doing simple buffer clears isn't enough to actually allocate render buffers, we need to do real drawing.
2010-01-08xdemos/glsync: Add swap interval support to glsync testJesse Barnes
2010-01-08DRI2: add OML_sync_control supportJesse Barnes
Add OML_sync_control support, along with a simple program for testing it. This means adding support for the DRI2GetMSC, DRI2WaitMSC and DRI2WaitSBC requests. Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
2010-01-08Merge branch 'mesa_7_7_branch'Brian Paul
Conflicts: src/mesa/drivers/dri/i965/brw_wm_emit.c
2010-01-07progs/fp: increase buffer size to read larger shadersBrian Paul
2010-01-07progs/fp: remove invalid tri-inv.c testBrian Paul
INV is not a valid instruction.
2010-01-06progs/demos: Assert that input to malloc is valid.Vinson Lee