Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-03-14 | mesa: fix emit_clamp() so that we don't use an output register as temporary | Brian Paul | |
IR_CLAMP is decomposed into OPCODE_MIN+OPCODE_MAX. Allocate a temporary register for the intermediate value so we don't inadvertantly use an output register (which are write-only on some GPUs). | |||
2008-03-13 | fix state.lightprod ambient/specular w value (bug #14983) | Roland Scheidegger | |
2008-03-13 | mesa: fix (harmless?) assignment in assert | Keith Whitwell | |
2008-03-12 | mesa: set SamplersUsed bitmask when parsing ARB fragment programs | Brian | |
2008-03-10 | fix parsing of state.texenv.color (bug 14931) | Brian | |
2008-03-01 | state.depth.range alpha value should be 1, not 0 (bug #14733) | Roland Scheidegger | |
2008-02-28 | mesa: separate shader program object from shader object. | Xiang, Haihao | |
Currently a callback delete_shader_cb is used for deleting shader and shader program objects. Mesa detaches all attached shaders in _mesa_free_shader_program_data when deleting shader program objects. However it is likely that these shaders have been freed in _mesa_free_shader, which will result in unexpected behaviour. This fix uses a single callback for shader program objects and deletes shader program objects before shader objects. | |||
2008-02-27 | mesa: set input read only on success | Jerome Glisse | |
2008-02-27 | mesa: set input read only on success | Markus Amsler | |
2008-02-25 | Remove files of unsupported build systems. | José Fonseca | |
2008-02-20 | raise GL_INVALID_OPERATION if glProgramString compilation fails | Brian | |
2008-01-31 | regenerate glsl library functions | Roland Scheidegger | |
2008-01-31 | fix w component of glsl vec4 asin | Roland Scheidegger | |
2008-01-18 | s/varible/variable/ | Brian | |
2008-01-18 | set param type to PROGRAM_CONSTANT when parsing immediates | Brian | |
2008-01-16 | use NEGATE_X/Y/Z/W tokens | Brian | |
2008-01-16 | clean-up swizzle fields in fog code, fix NegateBase | Brian | |
2008-01-16 | copy UsesKill state in _mesa_combine_programs() | Brian | |
2008-01-15 | Fix the compile of disabled DEBUG_PARSING code. | Eric Anholt | |
2008-01-15 | Bug #13492: Only call ProgramStringNotify if program parsing succeeded. | Eric Anholt | |
Wine intentionally tries some out-of-spec programs to test strictness, and calling ProgramStringNotify on the results of a failed program parse resulted in crashes in the 965 driver. | |||
2008-01-01 | free program caches | Brian | |
2008-01-01 | fix a memleak | Brian | |
2008-01-01 | Convert to 0/1 when setting boolean uniforms | Bruce Merry | |
Also add some extra tests to the shader_api regression tests | |||
2008-01-01 | Make use of count in _mesa_uniform_matrix | Bruce Merry | |
2008-01-01 | More fixes to shader_api | Bruce Merry | |
- return GL_INVALID_OPERATION instead of GL_INVALID_VALUE if location is bad - correct the type-checking of uniforms from my previous commit - accept location of -1 in _mesa_uniform_matrix | |||
2008-01-01 | Fix several bugs relating to uniforms and attributes in GLSL API | Bruce Merry | |
- fix sizes for GL_FLOAT_MAT2x3 and GL_FLOAT_MAT4x3 in sizeof_glsl_type - fix size returns in _mesa_get_active_attrib - fix out-of-bounds array access to vec_types in _mesa_get_active_attrib - fix queries of matrix uniforms in _mesa_get_uniformfv - fix _mesa_get_uniformfv to only return one base, even from an array - allow location == -1 in _mesa_uniform - validate types in _mesa_uniform - allow array overruns in _mesa_uniform | |||
2007-12-20 | return correct size from glGetActiveUniform (bug 13751) | Brian | |
2007-12-11 | make sure state token values are fully initialized | Roland Scheidegger | |
2007-12-07 | Move _mesa_init_glsl_driver_functions() into shader_api.c | Brian | |
This allows making a bunch of functions static, and removes a state tracker dependency on driverfuncs.c | |||
2007-12-04 | Fix gl_FrontFacing compilation problem | Brian | |
2007-11-30 | Merge branch 'master' of git+ssh://joukj@git.freedesktop.org/git/mesa/mesa | joukj | |
2007-11-29 | Move _mesa_load_tracked_matrices() from TNL module to prog_statevars.c | Brian | |
2007-11-27 | set fp->UsesKill when emitting OPCODE_KIL | Brian | |
2007-11-23 | Consolidate texture fetch code and use partial derivatives when possible. | Brian | |
2007-11-23 | Fix parsing of gl_FrontLightModelProduct.sceneColor, don't segfault on ↵ | Brian | |
variable array indexes. | |||
2007-11-09 | alias ProgramEnvParameter4xyARB and ProgramParameter4xyNV (bug #12935) | Roland Scheidegger | |
these should be the same functions (as per spec). | |||
2007-11-01 | remove dead code in _mesa_new_program() | Brian | |
2007-10-31 | fix type for Samplers field | Brian | |
2007-10-31 | alloc caches for fixed-func vertex/fragment progs | Brian | |
2007-10-31 | Merge branch 'master' of git+ssh://joukj@git.freedesktop.org/git/mesa/mesa | Jouk | |
2007-10-30 | fix InputsRead bug in _mesa_combine_programs() | Brian | |
2007-10-30 | special-case KIL/KIL_NV | Brian | |
2007-10-30 | more additions for COLOR_MATRIX, etc | Brian | |
2007-10-30 | add state vars for color matrix, pixel transfer scale&bias | Brian | |
2007-10-30 | Program cache functions. | Brian | |
Generic version of cache code from texenvprogram.c and t_vp_build.c Not used by those files just yet, will also be used for pixel_transfer programs. | |||
2007-10-30 | check for NULL ptr in _mesa_print_parameter_list() | Brian | |
2007-10-30 | make _mesa_combine_programs() params const | Brian | |
2007-10-30 | Added _mesa_combine_programs() for concatenating two programs. | Brian | |
2007-10-30 | added _mesa_combine_parameter_lists() | Brian | |
2007-10-29 | Rename 'mms-config.' to 'mms.config'. | Michal Krol | |
It looks like Windows does not like filenames ending with a dot, in effect renaming it to 'mms-config'. |