Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-10-04 | mesa: handle vertex program enabled case also in texenvprogram.c | Keith Whitwell | |
2008-10-03 | intel: Don't advertise unsupported extensions on pre-965 hardware | Ian Romanick | |
Move GL_ARB_texture_non_power_of_two and GL_ATI_separate_stencil from the generic extension list to the 965-specific list. Neither extension is supported on i830-class hardware, and GL_ATI_separate_stencil is not supported on i915-class hardare. GL_ARB_texture_non_power_of_two is supported on i915-class hardare and is already in the i915-specific list. | |||
2008-10-03 | mesa: avoid generating constant vertex attributes in fixedfunc programs | Keith Whitwell | |
Keep track of enabled/active vertex attributes. Keep track of potential vertex program outputs. When generating fragment program, replace references to fragment attributes which are effectively non-varying and non-computed passthrough attributes with references to the new CURRENT_ATTRIB tracked state value. Only downside is slight ugliness in VBO code where we need to validate state twice in succession. | |||
2008-10-03 | Mesa: short-circuit case when looking up the same program twice in cache | Keith Whitwell | |
2008-10-03 | mesa: add new internal state for tracking current vertex attribs | Keith Whitwell | |
2008-10-03 | mesa: add missing state dependencies for various tracked constants | Keith Whitwell | |
2008-10-03 | mesa: shrink texenvprogram state key struct | Keith Whitwell | |
2008-10-02 | mesa: Fix compiler warnings on Windows. | Michal Krol | |
2008-10-02 | mesa: fix temp register allocation problems. | Brian Paul | |
Complex texcombine modes were running out of registers (>32 registers for 8 tex units). | |||
2008-10-01 | Unify ARB_depth_texture and SGIX_depth_texture | Ian Romanick | |
The ARB extension is a superset of the older SGIX extension. Any hardware that can support the SGIX version can also support the ARB version. In Mesa, any driver that supports one also supports the other. This unification just simplifies some bits of code. | |||
2008-10-01 | i965: sampler default color ends up in texture cache, not instructions. | Eric Anholt | |
See volume 4, SAMPLER_BORDER_COLOR_STATE programming notes. | |||
2008-10-01 | i965: Fix overwriting of depth override for SetTexOffset. | Eric Anholt | |
Fixes black borders around windows in compiz. Bug #17233. | |||
2008-10-01 | mesa: Fix compiler warnings on Windows. | Michal Krol | |
2008-09-30 | cell: Fixed usage of MAX_INSTRUCTIONS to use new MAX_PROGRAM_INSTRUCTIONS ↵ | Jonathan White | |
instead of old MAX_NV_XXX definitions in order to allow Cell TGSI fragment program generator to work again. | |||
2008-09-29 | intel: Clean-up the extension string madness! | Ian Romanick | |
- Sort extensions by ARB, then EXT, then vendor by name - Remove redundant (only one of GL_{ARB,EXT,NV}_texture_rectangle) or duplicate extension strings | |||
2008-09-29 | GLSL: Implement GL_OBJECT_TYPE_ARB query | Ian Romanick | |
The GL_OBJECT_TYPE_ARB query is handled directly in _mesa_GetObjectParamterivARB because it is only supported in the extension version of the shanding language API. glGetProgramiv and glGetShaderiv should not accept this enum. | |||
2008-09-29 | GLSL: Implement _mesa_get_handle | Ian Romanick | |
Implementing _mesa_get_handle in using glGetIntegerv(GL_CURRENT_PROGRAM, ...) allows glGetHandleARB to work. | |||
2008-09-29 | GLSL: AttachShader returns INVALID_OPERATION for repeated attach | Ian Romanick | |
The GL_ARB_shader_objects spec says that glAttachShaderARB is supposed to return GL_INVALID_OPERATION if a shader is attached to a program where it is already attached. _mesa_attach_shader perviously returned without error in this case. | |||
2008-09-29 | mesa: asst updates for VMS | Jouk Jansen | |
2008-09-29 | mesa: drop calloc from _mesa_get_fixed_func_vertex_program | Shunichi Fuji | |
Signed-off-by: Shunichi Fuji <palglowr@gmail.com> | |||
2008-09-28 | Use 3Dnow! x86-64 routines only on processors that support 3Dnow! | Ian Romanick | |
Added an x86-64 CPUID function and use it to detect 3Dnow! If 3Dnow! is available, use _mesa_3dnow_transform_points4_3d_no_rot, _mesa_3dnow_transform_points4_perspective, _mesa_3dnow_transform_points4_2d_no_rot, and _mesa_3dnow_transform_points4_2d. This fixes long standing bug #8724. | |||
2008-09-28 | Remove TNL-to-VP tracking from i965 | Ian Romanick | |
The i965 driver previously had it's own set of code to convert fixed-function TNL state to a vertex program. Core Mesa has code to do this, so there is no reason to duplicate that effort in the driver. In fact, this duplication leads to bugs when other aspects of the Mesa infrastructure change. | |||
2008-09-27 | glapi: add DISPATCH_FUNCTION_SIZE | Tobias Jakobi | |
2008-09-27 | glapi: add gl_dispatch_functions_start and end | Tobias Jakobi | |
2008-09-26 | mesa: fix temp register allocation problems. | Brian Paul | |
Complex texcombine modes were running out of registers (>32 registers for 8 tex units). | |||
2008-09-26 | intel: Fix a number of memory leaks on context destroy. | Eric Anholt | |
2008-09-26 | st: add prototype for st_get_framebuffer_dimensions() | Alan Hourihane | |
2008-09-26 | st: export st_get_framebuffer_dimensions() to retrieve | Alan Hourihane | |
the width & height of the fb | |||
2008-09-26 | mesa: remove invalid assertions that programs have parameters | Brian Paul | |
Fixes failure with demos/fplight.c | |||
2008-09-26 | mesa: fix assertion in _mesa_reference_program() | Brian Paul | |
2008-09-26 | mesa: fix param indexing | Brad King | |
2008-09-26 | mesa: fix incorrect parameter order | Brian Paul | |
2008-09-26 | mesa: remove const qualifiers to match device driver interface function | Brian Paul | |
2008-09-26 | gallium: rename tgsi_translate_mesa_program() to st_translate_mesa_program() | Brian Paul | |
2008-09-26 | mesa: add some braces | Brian Paul | |
2008-09-26 | mesa: fix/simplify initialization of vertex/fragment program limits | Brian Paul | |
Defaults for program length, num ALU instructions, num indirections, etc. basically indicate no limit for software rendering. Driver should override as needed. | |||
2008-09-26 | mesa: increase MAX_INSTRUCTIONS | Brian Paul | |
2008-09-26 | mesa: fix swizzle failure, fix typo | Brian Paul | |
2008-09-26 | mesa: fix default buffer object access value | Brian Paul | |
2008-09-26 | gallium: rename tgsi_translate_mesa_program() to st_translate_mesa_program() | Brian Paul | |
2008-09-26 | mesa: add some braces | Brian Paul | |
2008-09-26 | st: change from ** to * for st_unreference_framebuffer() | Alan Hourihane | |
2008-09-26 | mesa: fix indenting | Keith Whitwell | |
2008-09-26 | dri: remove unused files present only on gallium-0.2 branch | Keith Whitwell | |
2008-09-26 | Merge commit 'origin/master' into HEAD | Keith Whitwell | |
Conflicts: src/mesa/vbo/vbo.h src/mesa/vbo/vbo_exec_api.c src/mesa/vbo/vbo_exec_draw.c | |||
2008-09-25 | mesa: fix cast/conversion for optional code | Brian | |
2008-09-25 | mesa: fix/simplify initialization of vertex/fragment program limits | Brian Paul | |
Defaults for program length, num ALU instructions, num indirections, etc. basically indicate no limit for software rendering. Driver should override as needed. | |||
2008-09-25 | mesa: fix typo (s/feadback/feedback/). Fixes broken selection/feedback. | Brian Paul | |
2008-09-25 | mesa: increase MAX_INSTRUCTIONS | Brian Paul | |
2008-09-25 | mesa: fix swizzle failure, fix typo | Brian Paul | |