diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2003-05-01 22:44:02 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2003-05-01 22:44:02 +0000 |
commit | 92f9785c727ea10ff5f8dc9770f0e8f388fcea70 (patch) | |
tree | 10335899a8205128723f6b459d827e918bbc2d86 /src/mesa/array_cache | |
parent | 09b00c5ded8e6211c9c79be600bb8c8ecad0d8fc (diff) | |
download | external_mesa3d-92f9785c727ea10ff5f8dc9770f0e8f388fcea70.zip external_mesa3d-92f9785c727ea10ff5f8dc9770f0e8f388fcea70.tar.gz external_mesa3d-92f9785c727ea10ff5f8dc9770f0e8f388fcea70.tar.bz2 |
Use ctx->Const.MaxTextureImageUnits and MaxTextureCoordUnits in more places.
Misc vertex array / vertex program changes.
Diffstat (limited to 'src/mesa/array_cache')
-rw-r--r-- | src/mesa/array_cache/ac_import.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/array_cache/ac_import.c b/src/mesa/array_cache/ac_import.c index 3a2434f..5d5c24f 100644 --- a/src/mesa/array_cache/ac_import.c +++ b/src/mesa/array_cache/ac_import.c @@ -268,7 +268,7 @@ static void import_texcoord( GLcontext *ctx, GLuint unit, struct gl_client_array *from = &ac->Raw.TexCoord[unit]; struct gl_client_array *to = &ac->Cache.TexCoord[unit]; - ASSERT(unit < ctx->Const.MaxTextureUnits); + ASSERT(unit < ctx->Const.MaxTextureCoordUnits); /* Limited choices at this stage: */ @@ -482,7 +482,7 @@ struct gl_client_array *_ac_import_texcoord( GLcontext *ctx, { ACcontext *ac = AC_CONTEXT(ctx); - ASSERT(unit < ctx->Const.MaxTextureUnits); + ASSERT(unit < ctx->Const.MaxTextureCoordUnits); /* Can we keep the existing version? */ |