summaryrefslogtreecommitdiff
path: root/progs
AgeCommit message (Collapse)AuthorFilesLines
2007-11-30better front-plane clip testBrian1-15/+28
2007-11-12remove dependency on libGLUBrian1-2/+1
2007-10-29specify app lib dependencies in Makefiles (patch 1/3)Dan Nicholson15-31/+52
(cherry-picked from commit c05aa5ec4cc29f949eff350582cb6f6c03dce3c6) Conflicts: progs/demos/Makefile progs/xdemos/Makefile
2007-10-25More ignored programs merged back from masterDan Nicholson3-1/+21
Some more entries in progs/*/.gitignore that were in master.
2007-10-10replace 'brick' with correct program name in printfsBrian4-10/+10
2007-10-10Ignore more generated files in progs/Dan Nicholson16-17/+180
Many of the directories in progs/ were missing .gitignore files or were tracking generated files. This patch is basically the process of running `make' in each directory and then finding the untracked files with `git-ls-files -o --exclude-per-directory=.gitignore'. The existing files were also sorted. Conflicts: progs/demos/.gitignore progs/tests/.gitignore progs/xdemos/.gitignore
2007-09-28add support for LDFLAGS env varDan Nicholson15-49/+49
2007-09-10clean-up (see bug 12317)Brian1-11/+11
2007-07-27More Mingw32 fixes from Zhang (zxpmyth@yahoo.com.cn)Brian1-18/+3
2007-07-26clamp float colorsBrian1-2/+5
2007-07-24fix logic error, typosBrian1-5/+4
2007-07-21Fix a number of MINGW32 issues (Zhang <zxpmyth@yahoo.com.cn>)mesa_7_0_1_rc1Brian1-4/+29
2007-07-06call glutInit(), bug 11486Xavier Bachelot5-7/+6
2007-05-09Tweak the shell scripting for descending into and building subdirs.Brian1-2/+2
In general, use this: @for dir in $(SUBDIRS) ; do \ if [ -d $$dir ] ; then \ (cd $$dir && $(MAKE)) || exit 1; \ fi \ done Basically, silently skip missing subdirs but generate an error and stop if there's a compilation or install problem. This was done inconsistantly before. In once case, a missing subdir was causing us to go into an infinte loop!
2007-05-08remove some debug codeBrian1-5/+0
2007-05-08a somewhat nicer demo w/ command line optionsBrian1-81/+163
2007-05-02get rid of normal vectorBrian1-2/+0
2007-05-02get rid of OSMESA stuffBrian1-6/+0
2007-05-02New test of the dFdx(), dFdy() functions.Brian2-0/+322
2007-04-27added glGetActiveAttribmesa_6_5_3Brian1-0/+2
2007-04-26Windows updatesBrian1-5/+18
2007-04-26move #include <GL/glut.h> after other #includes for WindowsBrian1-1/+1
2007-04-26use sqrt(), not sqrtf() for WindowsBrian2-2/+2
2007-04-21Fix FBO completeness bug in shadowtex.Ian Romanick1-2/+15
2007-04-21destroy window upon exitBrian2-4/+6
2007-04-20Remove unused Imakefiles.Brian2-322/+0
2007-04-16lots of changes, fixes, clean-upsBrian1-179/+185
2007-04-11restore 200x200 window size, animation, version checkBrian1-4/+6
2007-04-08fix some dependencies, remove some CFLAGSBrian1-5/+10
2007-04-08add 2.1 functionsBrian1-0/+14
2007-04-07added glActiveStencilFaceEXTBrian1-0/+4
2007-03-27disable MakeTexture()Brian1-2/+8
2007-03-26merge of glsl-compiler-1 branchBrian24-52/+3507
2007-03-25destroy window on exitBrian1-1/+3
2007-03-21disable assertionBrian1-1/+1
2007-03-12extra stuff for drawbuffers testBrian1-0/+8
2007-03-11added drawbuffers.cBrian1-0/+1
2007-03-11Test the GL_ARB_draw_buffers extension.Brian1-0/+298
Also requires GL_EXT_framebuffer_object and OpenGL 2.0 (for GLSL).
2007-03-09Merge branch 'origin' into glsl-compiler-1Brian5-14/+22
Conflicts: src/mesa/main/context.c
2007-03-06destroy window during cleanupBrian2-2/+7
2007-03-01fix clipping, display name, warningsBrian1-10/+12
2007-03-01s/unsigned int/size_t/ (bug 10135)Brian1-1/+1
2007-03-01include assert.hBrian1-0/+1
2007-02-28s/ARB/MESA/ in extension check (bug 10126)Brian1-1/+1
2007-02-25add texture rotationBrian2-2/+29
2007-02-25output texcoord in vertex programBrian1-0/+1
2007-02-22Merge branch 'origin' into glsl-compiler-1Brian23-18/+1263
Conflicts: src/mesa/main/state.c src/mesa/shader/program.c src/mesa/shader/program.h src/mesa/shader/programopt.c src/mesa/shader/slang/slang_execute.c src/mesa/sources src/mesa/swrast/s_arbshader.c src/mesa/swrast/s_context.c src/mesa/swrast/s_span.c src/mesa/swrast/s_zoom.c src/mesa/tnl/t_context.c src/mesa/tnl/t_save_api.c src/mesa/tnl/t_vb_arbprogram.c src/mesa/tnl/t_vp_build.c src/mesa/tnl/t_vtx_eval.c
2007-02-21Use gl_LightSource[0].position intead of a light position uniform.Brian1-13/+24
2007-02-03shading language texture demo/testBrian5-0/+637
2007-02-03added texdemo1Brian1-1/+16