diff options
author | Brian <brian@i915.localnet.net> | 2007-06-21 09:11:43 -0600 |
---|---|---|
committer | Brian <brian@i915.localnet.net> | 2007-06-21 09:11:43 -0600 |
commit | fe11b2c04bf206bd50654c31e6789519c6c07563 (patch) | |
tree | 11f9b725dd1483f65da54c9fe312bbe5f183c1ab /src | |
parent | a4af3e5ab3fa0f45c25673c93d802cdff087145c (diff) |
rename _swrast_update_fragment_attribs()
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/swrast/s_context.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mesa/swrast/s_context.c b/src/mesa/swrast/s_context.c index cb3bc756a4..791850cb50 100644 --- a/src/mesa/swrast/s_context.c +++ b/src/mesa/swrast/s_context.c @@ -535,10 +535,11 @@ _swrast_update_texture_samplers(GLcontext *ctx) /** - * Update swrast->_ActiveAttribs, swrast->_NumActiveAttribs, swrast->_ActiveAtttribMask. + * Update swrast->_ActiveAttribs, swrast->_NumActiveAttribs, + * swrast->_ActiveAtttribMask. */ static void -_swrast_update_fragment_attribs(GLcontext *ctx) +_swrast_update_active_attribs(GLcontext *ctx) { SWcontext *swrast = SWRAST_CONTEXT(ctx); GLuint attribsMask; @@ -679,7 +680,7 @@ _swrast_validate_derived( GLcontext *ctx ) _NEW_LIGHT | _NEW_PROGRAM | _NEW_TEXTURE)) - _swrast_update_fragment_attribs(ctx); + _swrast_update_active_attribs(ctx); if (swrast->NewState & (_NEW_PROGRAM | _NEW_BUFFERS)) _swrast_update_color_outputs(ctx); |