summaryrefslogtreecommitdiffstats
path: root/progs/tests/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* tests: Add test for huge client arrays that has to be split.Pauli Nieminen2010-03-211-0/+1
| | | | | | | | 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.
* fix test progs from gl_API moveWil Reichert2010-02-261-1/+1
| | | | Looks like these got missed.
* progs/tests: new zbitmap.c test to exercize Z testing of glBitmapBrian Paul2010-02-191-0/+1
|
* progs/tests: new test program for exercising cylindrical tex wrap modeBrian Paul2010-02-091-0/+1
|
* progs/tests: add another FBO test to exercise a RGBA vs. Z texture bugBrian Paul2010-02-011-0/+1
| | | | See comments in file for more details.
* progs/tests: added test for GL_EXT_draw_buffers2Brian Paul2009-12-311-0/+1
| | | | | | Render into two color buffers (render targets). Display half of each buffer in the window. Use different color masks for each render target. Only enable blending for the second render target.
* progs/tests: added conditional rendering test programBrian Paul2009-12-311-0/+1
|
* Add 'texture leak' test.Michel Dänzer2009-12-051-0/+1
|
* progs/tests: added new blitfb.c testBrian Paul2009-10-271-0/+1
| | | | | | | | Tests glBlitFramebuffer() between two texture/renderbuffer surfaces. In particular, blit from level[1] of a cube map face to a 2D texture. Used to find/fix bug in intel do_copy_texsubimage(). See commit aef1ab1073f3e30d699b99dae17518ed48b57c72
* progs/tests: Add tests to Makefile.Vinson Lee2009-10-091-0/+7
|
* Merge branch 'mesa_7_5_branch'Jakob Bornecrantz2009-07-031-0/+1
|\ | | | | | | | | | | Conflicts: src/mesa/main/dlist.c src/mesa/vbo/vbo_save_api.c
| * progs/tests: Add tests for glCompressedTexSubImageJakob Bornecrantz2009-06-301-0/+1
| |
* | progs/tests: Add yet another mipmap testJakob Bornecrantz2009-06-141-0/+1
| |
* | Merge branch 'ext-provoking-vertex'Brian Paul2009-06-191-0/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: docs/relnotes-7.6.html progs/tests/Makefile src/gallium/drivers/softpipe/sp_prim_vbuf.c src/glx/x11/indirect.c src/mesa/glapi/Makefile src/mesa/glapi/dispatch.h src/mesa/glapi/glapioffsets.h src/mesa/glapi/glapitable.h src/mesa/glapi/glapitemp.h src/mesa/glapi/glprocs.h src/mesa/main/dlist.c src/mesa/main/enums.c src/mesa/sparc/glapi_sparc.S src/mesa/x86-64/glapi_x86-64.S src/mesa/x86/glapi_x86.S
| * | tests: prim.c demo, modified for GL_EXT_provoking_vertexBrian Paul2009-06-091-0/+1
| | |
* | | tests: added persp_hint.c testBrian Paul2009-06-121-0/+1
| | | | | | | | | | | | Test the effect of GL_PERSPECTIVE_CORRECTION_HINT on color interpolation.
* | | tests: added arbgpuprog, for compile-testing ARB vertex/fragment programsBrian Paul2009-06-121-0/+1
| | |
* | | Merge branch 'mesa_7_5_branch'Jakob Bornecrantz2009-06-091-0/+2
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | Conflicts: Makefile src/mesa/main/version.h src/mesa/shader/slang/slang_preprocess.c src/mesa/state_tracker/st_cb_bufferobjects.c
| * | progs/tests: Add some scissor testsJakob Bornecrantz2009-06-081-0/+2
| |/
* / tests: quick and dirty glGetTexImage() test programBrian Paul2009-06-091-1/+2
|/
* progs/tests: Add mipmap_comp for mipmap testing with compressed texturesJakob Bornecrantz2009-04-291-0/+1
|
* demos: move demos/texobj.c to tests/Brian Paul2009-04-181-0/+1
|
* demos: move tests/dinoshade.c to demos/Brian Paul2009-04-181-1/+0
|
* demos: move tests/projtex.c to demos/Brian Paul2009-04-181-1/+0
| | | | And fix compiler warnings.
* demos: move tests/fbotexture.c to demos/Brian Paul2009-04-181-1/+0
|
* demos: move texdown.c to tests/Brian Paul2009-04-181-0/+1
|
* demos: move glutfx demo to tests/Brian Paul2009-04-181-0/+1
|
* demos: move streaming_rect.c demo to tests/Brian Paul2009-04-181-0/+1
|
* mesa: asst. progs/test/Makefile filesBrian Paul2009-04-101-3/+3
|
* tests: add simplest mipgen testKeith Whitwell2009-03-181-0/+1
|
* progs/tests: Update mipmap_limits to show image and colorsJakob Bornecrantz2009-03-181-0/+5
|
* mesa test prog for ATI_envmap_bumpmapRoland Scheidegger2009-03-121-0/+7
|
* tests: add new mapbufrange.c test to test GL_ARB_map_buffer_rangeBrian Paul2009-03-041-1/+2
| | | | This only tests the most basic functionality for now.
* tests: new mapvbo.c testBrian Paul2009-02-271-0/+1
| | | | | Test that glDrawArrays() isn't effected by a glMapBuffer()/modify/glUnmapBuffer() immediately afterward.
* Merge commit 'origin/master' into gallium-0.2Alan Hourihane2009-01-221-0/+2
|\ | | | | | | | | | | | | Conflicts: windows/VC8/mesa/osmesa/osmesa.vcproj windows/VC8/progs/demos/gears.vcproj windows/VC8/progs/progs.sln
| * tests: test pseudo-XOR blend mode.Brian Paul2009-01-191-0/+2
| | | | | | | | | | GL_XOR logicop mode can be approximated with blending by computing 1 - dst. Here's a couple test programs for that.
* | Merge commit 'origin/master' into gallium-0.2Brian Paul2008-12-161-1/+21
|\|
| * demos: updated tests/floattex.c (doesn't work just yet).Brian Paul2008-12-151-1/+21
| |
* | Merge commit 'origin/gallium-0.1' into gallium-0.2Keith Whitwell2008-09-111-20/+21
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: Makefile progs/demos/Makefile progs/glsl/Makefile progs/redbook/Makefile progs/samples/Makefile progs/tests/Makefile progs/trivial/Makefile progs/xdemos/Makefile src/gallium/Makefile src/mesa/main/attrib.c src/mesa/main/bufferobj.c src/mesa/vbo/vbo_exec_draw.c
| * | define new APP_CC configuration variable for building apps/demos/testsBrian Paul2008-09-111-20/+20
| | | | | | | | | | | | | | | For Cell, need to use different compilers for the libraries vs. the demos/tests to avoid strange link error regarding "_Unwind_GetIPInfo@GCC_4.2.0"
| * | simple quad drawing testBrian Paul2008-09-111-0/+1
| | |
* | | Merge branch 'gallium-0.1' into gallium-0.2Keith Whitwell2008-09-111-0/+22
|\| | | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A first attempt at moving gallium onto a branch directly off master... It will be interesting to see how much work this takes to get running. Have resolved the conflicts semi-arbitarily, not compiled or tested. Conflicts: .gitignore Makefile configs/config.mgw configs/darwin configs/darwin-x86ppc configs/default configs/freebsd-dri configs/linux-dri configs/linux-dri-xcb configs/linux-fbdev configs/linux-static configs/linux-x86-64-static configs/linux-x86-static doxygen/Makefile include/GL/gl.h progs/demos/Makefile progs/demos/descrip.mms progs/demos/texenv.c progs/egl/.gitignore progs/egl/Makefile progs/glsl/.gitignore progs/glsl/Makefile progs/glsl/convolutions.c progs/samples/Makefile.mgw progs/tests/.gitignore progs/trivial/.gitignore progs/trivial/point-param.c progs/trivial/tri.c progs/xdemos/.gitignore progs/xdemos/glthreads.c src/egl/drivers/demo/Makefile src/egl/drivers/dri/Makefile src/egl/main/Makefile src/glu/Makefile src/glu/sgi/Makefile src/glu/sgi/Makefile.mgw src/glut/glx/Makefile.mgw src/glut/os2/WarpWin.cpp src/glut/os2/glut_cindex.cpp src/glut/os2/glut_gamemode.cpp src/glut/os2/glut_win.cpp src/glut/os2/glut_winmisc.cpp src/glut/os2/os2_glx.cpp src/glut/os2/os2_menu.cpp src/glut/os2/os2_winproc.cpp src/glw/Makefile src/glx/x11/dri_glx.c src/glx/x11/glxext.c src/mesa/Makefile src/mesa/Makefile.mgw src/mesa/descrip.mms src/mesa/drivers/beos/Makefile src/mesa/drivers/common/descrip.mms src/mesa/drivers/common/driverfuncs.c src/mesa/drivers/directfb/Makefile src/mesa/drivers/dri/Makefile.template src/mesa/drivers/dri/common/dri_bufmgr.c src/mesa/drivers/dri/common/dri_bufmgr.h src/mesa/drivers/dri/common/dri_util.c src/mesa/drivers/dri/common/extension_helper.h src/mesa/drivers/dri/common/mmio.h src/mesa/drivers/dri/common/utils.c src/mesa/drivers/dri/common/utils.h src/mesa/drivers/dri/glcore/Makefile src/mesa/drivers/dri/i810/i810screen.c src/mesa/drivers/dri/i915/intel_ioctl.c src/mesa/drivers/dri/i915/intel_ioctl.h src/mesa/drivers/dri/i915/intel_screen.c src/mesa/drivers/dri/i915/server/i830_common.h src/mesa/drivers/dri/i915/server/i830_dri.h src/mesa/drivers/dri/i965/intel_screen.c src/mesa/drivers/dri/i965/server/i830_common.h src/mesa/drivers/dri/i965/server/i830_dri.h src/mesa/drivers/dri/mach64/mach64_screen.c src/mesa/drivers/dri/nouveau/nouveau_context.h src/mesa/drivers/dri/nouveau/nouveau_fifo.c src/mesa/drivers/dri/nouveau/nouveau_fifo.h src/mesa/drivers/dri/nouveau/nouveau_screen.c src/mesa/drivers/dri/nouveau/nouveau_screen.h src/mesa/drivers/dri/r128/r128_tex.h src/mesa/drivers/dri/savage/savageioctl.h src/mesa/drivers/fbdev/Makefile src/mesa/drivers/osmesa/Makefile src/mesa/drivers/osmesa/descrip.mms src/mesa/drivers/x11/Makefile src/mesa/drivers/x11/descrip.mms src/mesa/drivers/x11/xm_dd.c src/mesa/glapi/glapi.c src/mesa/glapi/glthread.c src/mesa/main/api_validate.c src/mesa/main/attrib.c src/mesa/main/bufferobj.c src/mesa/main/bufferobj.h src/mesa/main/buffers.c src/mesa/main/config.h src/mesa/main/context.c src/mesa/main/descrip.mms src/mesa/main/drawpix.c src/mesa/main/enums.c src/mesa/main/fbobject.c src/mesa/main/glheader.h src/mesa/main/imports.c src/mesa/main/mipmap.c src/mesa/main/mm.c src/mesa/main/mm.h src/mesa/main/mtypes.h src/mesa/main/points.c src/mesa/main/sources src/mesa/main/state.c src/mesa/main/texcompress_fxt1.c src/mesa/main/texenvprogram.c src/mesa/main/texobj.c src/mesa/main/texstate.c src/mesa/main/texstore.c src/mesa/math/descrip.mms src/mesa/shader/arbprogram.c src/mesa/shader/descrip.mms src/mesa/shader/prog_execute.c src/mesa/shader/prog_statevars.c src/mesa/shader/prog_statevars.h src/mesa/shader/prog_uniform.c src/mesa/shader/program.c src/mesa/shader/program.h src/mesa/shader/shader_api.c src/mesa/shader/slang/descrip.mms src/mesa/shader/slang/library/slang_vertex_builtin_gc.h src/mesa/sources src/mesa/swrast/descrip.mms src/mesa/swrast/s_drawpix.c src/mesa/swrast/s_fragprog.c src/mesa/swrast/s_readpix.c src/mesa/swrast/s_span.c src/mesa/swrast_setup/descrip.mms src/mesa/tnl/descrip.mms src/mesa/tnl/t_context.h src/mesa/tnl/t_vp_build.c src/mesa/tnl/tnl.h src/mesa/vbo/descrip.mms src/mesa/vbo/vbo_context.c src/mesa/vbo/vbo_exec_array.c src/mesa/x86-64/xform4.S src/mesa/x86/rtasm/x86sse.c src/mesa/x86/rtasm/x86sse.h windows/VC6/progs/glut/glut.dsp windows/VC7/mesa/gdi/gdi.vcproj windows/VC7/mesa/glu/glu.vcproj windows/VC7/mesa/mesa.sln windows/VC7/mesa/mesa/mesa.vcproj windows/VC7/mesa/osmesa/osmesa.vcproj windows/VC7/progs/glut/glut.vcproj windows/VC8/mesa/gdi/gdi.vcproj windows/VC8/mesa/glu/glu.vcproj windows/VC8/mesa/mesa.sln windows/VC8/mesa/mesa/mesa.vcproj windows/VC8/progs/glut/glut.vcproj
| * tests: Added a test for a strange bug in texstore_a8Jakob Bornecrantz2008-06-181-0/+1
| |
| * mesa: new Z-compositing test (glDrawPixels(GL_DEPTH) + stencil)Brian Paul2008-04-111-0/+1
| |
| * mesa: add a new test for glDrawPixels(GL_DEPTH_COMPONENT)Brian Paul2008-04-101-0/+1
| |
| * mesa: measure fill rate for drawing a large quad with basic shading/texture ↵Brian2008-04-011-0/+8
| | | | | | | | modes
| * mesa: new mipmap generation, lod bias demoBrian Paul2008-03-171-0/+9
| | | | | | | | | | Show each of the mipmap levels side-by-side. Press 's' to toggle quad scaling to see mipmap level at actual size.
| * Added calibrate_rast.c programBrian2008-02-281-0/+1
| | | | | | | | | | Measures rasterization of points/lines/tris and suggests fixes/biases when something doesn't meet spec.
| * Test calling glTexSubImage2D mid-way through a frame.Brian2008-02-201-0/+1
| |
| * Added minmag.c testBrian2008-02-161-0/+1
| | | | | | | | | | Test that different minification and magnification filters are chosen for the non-mipmapped texture case.