Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-08-16 | check for null swrast (pipe work-around) | Brian | |
2007-07-04 | Be more consistant with paths in #includes. Eventually, eliminate a bunch ↵ | Brian | |
of -I flags. | |||
2007-06-21 | rename _swrast_update_fragment_attribs() | Brian | |
2007-05-24 | fix logic for calling _swrast_update_deferred_texture() | Brian | |
2007-05-22 | don't treat FRAG_BIT_WPOS as a generic attribute (fixes depth peel regression) | Brian | |
2007-05-20 | Overhaul/simplify SWvertex and SWspan attribute handling. | Brian | |
Instead of separate fog/specular/texcoord/varying code, just treat all of them as generic attributes. Simplifies the point/line/triangle functions. | |||
2007-04-25 | fix attribsMask (re-fixes depth peeling algorithm) | Brian | |
2007-04-23 | disable some errant code | Brian | |
2007-04-23 | remove SWvertex->fog field, use attrib field | Brian | |
2007-04-23 | Improve the code for interpolating fragment attributes a little. More to ↵ | Brian | |
come... | |||
2007-04-18 | improved fog comment | Brian | |
2007-04-17 | Enable texture sampling for vertex programs/shaders. | Brian | |
This is a bit of a hack for now because the tnl module is using the swrast module to fetch texels. The texture fetch/filter code should probably be moved into the main/ module since it doesn't really depend upon other swrast code. | |||
2007-04-07 | fix references to non-existant sz4 field | Richard Hughes | |
2007-03-11 | Implement support for GL_ARB_draw_buffers with GL_MAX_DRAW_BUFFERS > 1. | Brian | |
GL_MAX_DRAW_BUFFERS is currently 4. Added gl_FragData[] output for fragment programs. In _swrast_write_rgba_span() loop over the color outputs/renderbuffers. | |||
2007-03-10 | clean-up formatting | Brian | |
2007-02-24 | Remove unneeded _Fragment/VertexShaderPresent fields, update comments. | Brian | |
2007-02-22 | Merge branch 'origin' into glsl-compiler-1 | Brian | |
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-05 | Merge SWvertex texcoord and varying fields into attrib[] array field. | Brian | |
Fragment texcoords and varying code is now unified in the point/line/triangle rasterization code. In the future, merge color, fog, etc. attribs. | |||
2007-02-02 | get rid of unused span->start field | Brian | |
2007-01-23 | silence C++ warnings | Brian | |
2007-01-08 | Remove if (tObj) conditional so that texture units without a texture image | Brian | |
return black (0,0,0,1) when sampled. | |||
2006-12-19 | Overhaul of GLSL API functions, dispatching, etc. | Brian | |
2006-12-16 | don't allow fog when using a fragment shader (bug 9346) | Brian | |
2006-12-14 | Updated includes. | Brian | |
2006-12-13 | Checkpoint for GLSL compiler changes. | Brian | |
In brief: Check for enabled fragment program by looking at ctx->FragmentProgram._Current. New code for varying variables. | |||
2006-11-02 | always load frag prog state params for now (see comments) | Brian Paul | |
2006-10-31 | make use of Parameters->StateFlags in _swrast_update_fragment_program() | Brian Paul | |
2006-10-31 | We need to call _mesa_load_state_parameters() whenever a fragment program | Brian Paul | |
is enabled and we've changed any GL state that might be referenced by a fragment program (such as state.fog.params). Do this during swrast validation, not in _swrast_exec_fragment_program(). | |||
2006-10-01 | New SWspan and SWspanarrays typedefs. | Brian Paul | |
2006-09-29 | more changes for runtime renderbuffer depths | Brian Paul | |
2006-09-25 | Initial work for supporting different renderbuffer color depths at runtime. | Brian Paul | |
2006-09-22 | Use _Enabled rather than _Active when checking for fragment shaders | Keith Whitwell | |
2006-08-29 | Move call to _swrast_update_rasterflags() since it depends on the | Brian Paul | |
results of _swrast_update_fog_state(). Fixes bug where first frame of progs/samples/fog.c does not show fog. | |||
2006-07-20 | Some structure renaming. Prefix vertex/fragment-related structs with | Brian Paul | |
"gl_" to match other structs. | |||
2006-05-23 | Add const qualifiers in a number of places. | Brian Paul | |
2006-04-14 | Replace ctx->Const.MaxTextureUnits w/ ctx->Const.MaxTexture[Coord/Image]Units | Brian Paul | |
in various places. Note that ctx->Texture.CurrentUnit needs to be tested against Coord/Image limits when referenced, not just in glActiveTexture(). | |||
2006-03-26 | merge from texman branch | Brian Paul | |
2006-03-25 | remove carriage returns | Brian Paul | |
2006-03-21 | GLSL fixes: | Michal Krol | |
- generate error on NULL pointers in glShaderSourceARB; - reinstall program object, if current, in glLinkProgramARB; - vertex and fragment shaders are optional in program object; - floor asm was wrongly computed for x86 back-end; - allow for (void) idiom in function prototypes; - all fixed-state uniforms are updated; - local variable initializers are working; - implement texture* and shadow* functions for vertex processor; - generate error if too many arguments in general constructor; - trim unused data in general constructor; - struct r-value field select was badly relocated; Changes: - add derived state gl_fog_attrib::_Scale; - add derived state gl_light::_CosCutoffNeg; | |||
2006-02-28 | check for active shader, set FRAGPROG_BIT in raster mask | Brian Paul | |
2006-01-26 | New comments, clean-up of fields related to point/line/triangle validation. | Brian Paul | |
2005-11-12 | Added OSMesaColorClamp(), bug 4917 | Brian Paul | |
2005-11-12 | Move stuff common to vertex/fragment_program into the base class, including: | Brian Paul | |
Instructions, InputsRead, OutputsWritten, and Parameters. Also, added debug functions: _mesa_print_instruction(), _mesa_print_program_parameters() and revamp _mesa_print_program(). | |||
2005-11-05 | remove unneeded #include | Brian Paul | |
2005-10-31 | check swrast->_FogEnabled instead of ctx->Fog.Enabled | Brian Paul | |
2005-09-16 | Rework the texture filtering functions a bit. | Brian Paul | |
No need to pass the texture unit number as an argument. | |||
2005-09-16 | more GLuint->GLbitfield changes | Brian Paul | |
2005-09-15 | Replace GLuint with GLbitfield where appropriate. Also replace GLuint | Brian Paul | |
with GLboolean in a few places. | |||
2005-09-15 | Update includes post-splitting of s_texture.c | Brian Paul | |
2005-09-05 | remove obsolete CurrentBufferBit | Brian Paul | |