summaryrefslogtreecommitdiff
path: root/progs
AgeCommit message (Collapse)Author
2008-04-28mesa: explicitly delete textures before creating new onesBrian Paul
Also, call glutDestroyWindow() upon exit.
2008-04-24trivial: simple edgeflag testKeith Whitwell
2008-04-23mesa: add dedicated point-wide-smooth test, restore original tri.c as tri-orig.cKeith Whitwell
2008-04-11mesa: new Z-compositing test (glDrawPixels(GL_DEPTH) + stencil)Brian Paul
2008-04-11add missing glViewport callsBrian Paul
cherry-picked from master
2008-04-11add missing glViewport callsBrian Paul
2008-04-10mesa: add a new test for glDrawPixels(GL_DEPTH_COMPONENT)Brian Paul
2008-04-09more make clean itemsBrian
2008-04-09use InitUniforms()Brian
2008-04-09Replace duplicated code with new shaderutil.c functionsBrian
2008-04-09shader utility functionsBrian
2008-04-08Only convert configs if screen creation was successful.Kristian Høgsberg
Thanks to Adam Jackson for pointing it out.
2008-04-04added glGetActiveUniform_funcBrian
2008-04-04mesa: add missing glPush/PopMatrix() callsBrian
2008-04-04mesa: add missing glPush/PopMatrix() callsBrian
2008-04-04mesa: test code to exercise more GLSL functionsBrian
2008-04-04mesa: added more ext funcs (from Mesa/master)Brian
2008-04-04mesa: add missing glPush/PopMatrix() callsBrian
2008-04-04mesa: add missing glPush/PopMatrix() callsBrian
2008-04-04test glStencilFuncSeparateATI()Brian
2008-04-03silence warningBrian
2008-04-01mesa: added a cast to avoid int overflow, plus rename texels->pixelsBrian
2008-04-01mesa: measure fill rate for drawing a large quad with basic shading/texture ↵Brian
modes
2008-04-01mesa: destroy window upon exitBrian
2008-03-27Add a couple of test apps for line/unfilled polygon clipping.Eric Anholt
2008-03-24mesa: call glutDestroyWindow (help find mem leaks)Brian Paul
2008-03-21Fix xdemos build on FreeBSD: <sys/types.h> before <netinet/tcp.h>Eric Anholt
2008-03-21mesa: minor code re-orgBrian Paul
2008-03-19better text labelsBrian Paul
2008-03-17mesa: new mipmap generation, lod bias demoBrian Paul
Show each of the mipmap levels side-by-side. Press 's' to toggle quad scaling to see mipmap level at actual size.
2008-03-14mesa: call glColorMask(1,1,1,1) before glClear()Brian Paul
Without this, second and subsequent redraws rendered incorrectly. Plus comments.
2008-03-11Fix include path for rain demo so glut.h is foundDan Nicholson
2008-03-10Darwin: Config/source fixes to now build glxdemo apps and OSMesaJeremy Huddleston
Also added darwin-fat-32bit darwin-fat-all configs and deleted old darwin-x86ppc config (cherry picked from commit 7120c0089d663a2b7e7b0c97da38f9bc233fbdd7)
2008-03-10Ignore more demo programsDan Nicholson
2008-02-29glxgears: oops, remove accidental commit of glFinish() hack.Kristian Høgsberg
2008-02-29Use __DRIextension mechanism providing loader functionality to the driver.Kristian Høgsberg
Instead of passing in a fixed struct, the loader now passes in a list of __DRIextension structs, to advertise the functionality it can provide to the driver. Each extension is individually versioned and can be extended or phased out as the interface develops.
2008-02-28Added calibrate_rast.c programBrian
Measures rasterization of points/lines/tris and suggests fixes/biases when something doesn't meet spec.
2008-02-28Convert crlf->lf line endings.José Fonseca
Windows/DOS users should enable core.autocrlf from now on: git config --global core.autocrlf true
2008-02-28Convert crlf->lf line endings.José Fonseca
Windows/DOS users should enable core.autocrlf from now on.
2008-02-25Added line smooth testBrian
2008-02-25Remove files of unsupported build systems.José Fonseca
2008-02-25Update git ignores.José Fonseca
2008-02-20Test calling glTexSubImage2D mid-way through a frame.Brian
2008-02-17Ignore glxgears_pixmapDan Nicholson
2008-02-16Added minmag.c testBrian
Test that different minification and magnification filters are chosen for the non-mipmapped texture case.
2008-02-16Added minmag.c testBrian
Test that different minification and magnification filters are chosen for the non-mipmapped texture case.
2008-02-15chmod a-x **/glslnoise.cAdam Jackson
2008-02-14Add GLXPixmap version of glxgears to show case new GLX Pixmap functionality.Kristian Høgsberg
2008-02-14gallium: new pgon-mode.c testBrian
A two-triangle strip is drawn such that the first tri is front-facing and the second tri is back-facing. Use different front/back polygon modes.
2008-02-12Fix broken test.Brian
As-is, if the texture was too large for the target, an assertion would fail. Now check proxy texture first and if it works, then test non-proxy target.