summaryrefslogtreecommitdiff
path: root/src/mesa/shader
AgeCommit message (Collapse)AuthorFilesLines
2007-07-27Merge branch 'mesa_7_0_branch' of ↵Julien Cristau6-41/+55
git://anongit.freedesktop.org/git/mesa/mesa into debian-experimental
2007-07-26Fix function call bug 11731. Also, fix up IR_CALL/IR_FUNC confusion.Brian4-34/+45
2007-07-26generate error upon writing to varying var in fragment program (bug 11733)Brian1-5/+8
2007-07-24call ctx->Driver.NewProgram() instead of _mesa_new_program()Brian2-2/+2
2007-07-23Merge branch 'mesa_7_0_branch' of ↵Julien Cristau4-58/+73
git://anongit.freedesktop.org/git/mesa/mesa into debian-experimental
2007-07-13fix shader/info string length queries (bug 11588)Jan Dvorak1-3/+3
2007-07-12fix swizzle-related bug 11534Brian1-2/+3
2007-07-03added vec2(vec4) constructor, bug 11404Brian2-53/+59
2007-07-03add code for stpq, rgba writemasks in make_writemask(), bug 11404Brian1-0/+8
2007-06-27Merge branch 'upstream-experimental' into debian-experimentalDavid Nusinow10-898/+802
Conflicts: .gitignore progs/miniglx/miniglxtest.c src/glx/mini/Makefile src/glx/mini/miniglx.c src/mesa/drivers/dri/r300/.gitignore
2007-05-18fix STATE_HALF_VECTOR value (bug 10987)Brian1-8/+8
2007-05-14comment about fixing uniform structsBrian1-0/+13
2007-05-11user-declared uniform structs not supported yet (see bug 10908)Brian1-3/+16
2007-05-11don't ignore return value of _slang_codegen_global_variable()Brian1-1/+2
2007-05-10regeneratedBrian1-524/+528
2007-05-10Implement exp() in terms of __asm float_power. Fix typo in mod(vec4) function.Brian1-11/+15
exp() was using __asm float_exp (OPCODE_EXP) but that computes base two, not e. See bug 10907.
2007-05-09Check that texture units/samplers specified with glUniform1i() are legal.Brian1-1/+9
2007-05-02Resuscitate some of the DDX,DDY code.Brian2-243/+51
Only works for program input registers at this time. Good enough for the common case of texcoords, though.
2007-05-02fix some DDX,DDY mix-upsBrian1-1/+1
2007-05-01regeneratedBrian1-78/+85
2007-05-01implement acos(), asin(), atan()Brian1-9/+14
2007-05-01Rewrite of slang_inline_asm_function() to do full parameter/argument ↵Brian1-31/+64
substitution. We had been taking a short-cut w/ asm inlines by just using parameters in order rather than doing full formal parameter -> actual argument substitution like ordinary inlined function calls. This worked in all cases but one: mix() in which the parameters were used in a different order. This fixes bug 10821.
2007-04-29Merge branch 'upstream-experimental' into debian-experimentalDavid Nusinow3-688/+723
2007-04-28fix GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB bug (10787)Brian1-4/+12
2007-04-27asin(), acos(), atan() just return 0.5 for now to avoid crashing. Fix someday.Brian2-680/+688
2007-04-26Added error check that all varying vars needed by the fragment shader are ↵Brian1-8/+35
produced by vertex shader.
2007-04-25Merge tag 'mesa_6_5_3_rc3' into debian-experimentalJulien Cristau2-3/+3
2007-04-24assorted fixes for Windows/VC8Karl Schultz1-1/+1
2007-04-24fix double const, move an assertionKarl Schultze1-2/+2
2007-04-22Merge branch 'upstream-experimental' into debian-experimentalJulien Cristau25-201/+554
2007-04-21Remove all the USE_MEMPOOL debug code.Brian15-434/+78
2007-04-21Use new memory pool allocator. Lots of debug code still in place...Brian17-29/+511
2007-04-21Merge branch 'upstream-experimental' into debian-experimentalJulien Cristau103-19931/+24422
Conflicts: doxygen/Makefile doxygen/common.doxy doxygen/doxy.bat doxygen/glapi.doxy doxygen/header.html doxygen/main.doxy doxygen/math.doxy doxygen/shader.doxy doxygen/swrast.doxy doxygen/swrast_setup.doxy doxygen/tnl.doxy doxygen/tnl_dd.doxy progs/tests/Makefile progs/tests/fbotest1.c progs/tests/fbotest2.c progs/tests/fbotexture.c progs/tests/mipmap_limits.c progs/tests/sharedtex.c progs/tools/trace/gltrace_support.cc progs/trivial/Makefile src/egl/docs/EGL_MESA_screen_surface src/egl/main/egllog.c src/glx/mini/Makefile src/glx/mini/driver.h src/mesa/drivers/allegro/amesa.c src/mesa/drivers/windows/gldirect/dx7/gld_driver_dx7.c src/mesa/drivers/windows/gldirect/dx7/gld_ext_dx7.c src/mesa/drivers/windows/gldirect/dx7/gld_primitive_dx7.c src/mesa/drivers/windows/gldirect/dx8/gld_driver_dx8.c src/mesa/drivers/windows/gldirect/dx8/gld_ext_dx8.c src/mesa/drivers/windows/gldirect/dx8/gld_primitive_dx8.c src/mesa/drivers/windows/gldirect/dx9/gld_driver_dx9.c src/mesa/drivers/windows/gldirect/dx9/gld_ext_dx9.c src/mesa/drivers/windows/gldirect/dx9/gld_primitive_dx9.c src/mesa/drivers/windows/gldirect/mesasw/gld_wgl_mesasw.c
2007-04-21call grammar_alloc_free() to fix memleaksBrian1-0/+2
2007-04-21remove more unused vars, assertionsBrian1-4/+2
2007-04-21remove unused vars, assertionsBrian1-4/+2
2007-04-21Memory pool manager.Brian2-0/+201
Instead of doing intricate malloc/free tracking during compiling, allocate everything (which would be discarded after compiling) from a pool that can be freed en masse when done.
2007-04-21fix instruction comment codeBrian2-1/+9
2007-04-21another bit of debug codeBrian1-0/+3
2007-04-21free subroutine array (fix mem leak)Brian1-1/+8
2007-04-21new varnames in slang_operation_insert()Brian1-17/+17
2007-04-21fix memleak in slang_operation_insert()Brian1-0/+2
2007-04-21free shProg->Attributes in _mesa_free_shader_program_data()Brian1-0/+5
2007-04-21move allocation of shProg->Attributes earlier in functionBrian1-3/+3
2007-04-19Fix valgrind problem caused by reading text[-1].Brian1-3/+5
2007-04-19remove invalid assertionBrian1-1/+0
2007-04-19fix crash when program has invalid structure fieldBrian1-3/+4
2007-04-19init A.curFuncEndLabel = NULLBrian1-0/+1
2007-04-18fix an uninitialized variable and a warningBrian1-2/+2
2007-04-18comments, assertionsBrian1-2/+3