diff options
author | Brian Paul <brianp@vmware.com> | 2009-01-29 15:56:19 -0700 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-01-30 16:03:32 -0700 |
commit | 81ca8b93f212d1946c70660041ce97d98f352608 (patch) | |
tree | 95b3adedc0254651c666668b259fe3002d2e6a3f /src/mesa/swrast/s_texcombine.c | |
parent | bd944ef78397fd96dc2b239f542066643b06274a (diff) |
swrast: replace macro with inline function
Diffstat (limited to 'src/mesa/swrast/s_texcombine.c')
-rw-r--r-- | src/mesa/swrast/s_texcombine.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_texcombine.c b/src/mesa/swrast/s_texcombine.c index 1b8775bf30..38b5633887 100644 --- a/src/mesa/swrast/s_texcombine.c +++ b/src/mesa/swrast/s_texcombine.c @@ -87,7 +87,7 @@ texture_combine( const GLcontext *ctx, GLuint unit, GLuint n, ASSERT(ctx->Extensions.EXT_texture_env_combine || ctx->Extensions.ARB_texture_env_combine); - ASSERT(SWRAST_CONTEXT(ctx)->_AnyTextureCombine); + ASSERT(CONST_SWRAST_CONTEXT(ctx)->_AnyTextureCombine); /* printf("modeRGB 0x%x modeA 0x%x srcRGB1 0x%x srcA1 0x%x srcRGB2 0x%x srcA2 0x%x\n", |