summaryrefslogtreecommitdiffstats
path: root/progs
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'ext-provoking-vertex'Brian Paul2009-06-193-0/+631
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-092-0/+560
| |
| * tests: need tkmap.c for prim.cBrian Paul2009-06-091-0/+71
| |
* | progs/rbug: Add small program to add block rulesJakob Bornecrantz2009-06-183-0/+88
| |
* | Merge branch 'mesa_7_5_branch'Brian Paul2009-06-162-17/+20
|\ \ | | | | | | | | | | | | | | | Conflicts: src/mesa/main/api_validate.c
| * | progs/wgl: Quit after displaying usage for -h option.José Fonseca2009-06-161-0/+1
| | |
| * | progs/wgl: Use appropriate types to silence msvc warnings.José Fonseca2009-06-161-7/+7
| | |
| * | progs/wgl: Fix assertion failure in wglthreads' texture creation.José Fonseca2009-06-161-8/+10
| | |
| * | progs/tests: Use opaque colors.José Fonseca2009-06-151-2/+2
| | | | | | | | | | | | | | | Transparency is not relevant for this example, and leads to distraction due to different results in alpha visuals, when capturing images to disk.
* | | Merge branch 'mesa_7_5_branch'Thomas Hellstrom2009-06-153-38/+158
|\| | | | | | | | | | | | | | | | | Conflicts: progs/util/extfuncs.h
| * | demos: update fbotexture.c to use EXT or ARB functions exclusivelyBrian Paul2009-06-122-38/+77
| | | | | | | | | | | | | | | | | | | | | | | | | | | When the -arb option is specified we use GL_ARB_framebuffer_object intead of GL_EXT_framebuffer_object. For some vendors' OpenGL it's important to call the ARB entrypoints instead of the EXT entrypoints to get correct behaviour. Use some function pointer tricks to do this (instead of GLEW).
| * | util: additional function pointersBrian Paul2009-06-121-0/+101
| | |
* | | tests: added persp_hint.c testBrian Paul2009-06-123-0/+151
| | | | | | | | | | | | Test the effect of GL_PERSPECTIVE_CORRECTION_HINT on color interpolation.
* | | tests: added arbgpuprog, for compile-testing ARB vertex/fragment programsBrian Paul2009-06-122-0/+231
| | |
* | | progs/rbug: Add binary to bmp converter programJakob Bornecrantz2009-06-123-0/+113
| | |
* | | Merge branch 'mesa_7_5_branch'José Fonseca2009-06-1110-26/+50
|\| | | | | | | | | | | | | | | | | Conflicts: src/mesa/state_tracker/st_cb_fbo.c src/mesa/state_tracker/st_framebuffer.c
| * | progs: Port fp programs to GLEW.José Fonseca2009-06-1110-26/+50
| | |
* | | Merge branch 'mesa_7_5_branch'Jakob Bornecrantz2009-06-095-0/+312
|\| | | | | | | | | | | | | | | | | | | | | | | | | | 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-085-0/+312
| | |
* | | tests: check for GL_EXT/ARB_framebuffer_objectBrian Paul2009-06-091-1/+3
| | |
* | | tests: also test glGetTexImage with render to textureBrian Paul2009-06-091-11/+103
| | | | | | | | | | | | | | | Also, adjust texture dims for the original test. And use GLEW.
* | | tests: quick and dirty glGetTexImage() test programBrian Paul2009-06-092-1/+125
| | |
* | | Merge branch 'mesa_7_5_branch'Brian Paul2009-06-045-22/+109
|\| | | | | | | | | | | | | | | | | Conflicts: src/mesa/main/context.c
| * | progs/vpglsl: add similar support for point rendering as progs/vpKeith Whitwell2009-06-013-6/+64
| | |
| * | trivial/tri-z: add controls for depthrange min/maxKeith Whitwell2009-06-011-10/+40
| | | | | | | | | | | | | | | Also add key to set up quake-1 style ztrick rendering with clear depth 1.0, deptrange(1.0, 0.0) and depthfunc GL_GREATER.
| * | progs/wgl: Small cleanup to wglinfo.José Fonseca2009-06-011-5/+4
| | |
| * | progs/wgl: Use an invisible window in wglinfo.José Fonseca2009-06-011-1/+1
| | |
* | | Merge branch 'mesa_7_5_branch'Brian Paul2009-06-011-10/+11
|\| |
| * | demos: add missing dependencies for util filesBrian Paul2009-06-011-10/+11
| | |
| * | demos: fix multitex.c VertCoord attribute mappingBrian Paul2009-05-221-1/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the multitex.vert shader uses the VertCoord generic vertex attribute instead of the pre-defined gl_Vertex attribute, we need to make sure that VertCoord gets bound to generic vertex attribute zero. That's because we need to call glVertexAttrib2fv(0, xy) after all the other vertex attributes have been set since setting generic attribute 0 triggers vertex submission. Before, we wound up issuing the vertex attributes in the order 0, 1, 2 which caused the first vertex to be submitted before all the attributes were set. Now, the attributes are set in 1, 2, 0 order.
* | | progs/rbug: Add small remote debugging cli applicationsJakob Bornecrantz2009-06-0111-0/+800
| |/ |/|
* | demos: remove some old debug/test codeBrian Paul2009-05-271-5/+2
| |
* | demos: extend glsl/multitex.c to use a vertex buffer objectBrian Paul2009-05-221-6/+87
| |
* | demos/util: add funcs for GL_ARB_buffer_objectBrian Paul2009-05-221-0/+19
| |
* | progs/trivial: update .gitignore with new binariesJoakim Sindholt2009-05-121-0/+3
| |
* | Merge branch 'mesa_7_5_branch'Brian Paul2009-05-111-0/+1
|\| | | | | | | | | | | | | Conflicts: Makefile src/mesa/main/version.h
| * trivial: destroy window upon exitBrian Paul2009-05-111-0/+1
| |
| * progs/trivial: add test for vertex program invarient transformKeith Whitwell2009-05-083-0/+149
| |
| * progs/trivial: add vbo-noninterleaved testKeith Whitwell2009-05-083-0/+141
| |
| * trivial: add line-flat.cKeith Whitwell2009-05-083-0/+149
| |
* | demos: delete vertex array objects upon exitBrian Paul2009-05-071-0/+2
| |
* | progs/trivial: add test for vertex program invarient transformKeith Whitwell2009-05-053-0/+149
| |
* | progs/trivial: add vbo-noninterleaved testKeith Whitwell2009-05-053-0/+141
| |
* | trivial: add line-flat.cKeith Whitwell2009-05-053-0/+149
|/
* demos: silence warningBrian Paul2009-04-301-1/+1
|
* progs/tests: Update ignoresJakob Bornecrantz2009-04-291-8/+6
|
* progs/tests: Add mipmap_comp for mipmap testing with compressed texturesJakob Bornecrantz2009-04-294-0/+298
|
* progs: add fflushes for cygwinKeith Whitwell2009-04-282-0/+5
|
* demos: asst. updates, clean-upsBrian Paul2009-04-281-23/+20
|
* demos: Clean up allocated Textures and Display Lists when demo quitShuang He2009-04-274-0/+47
|