diff options
author | Brian Paul <brianp@vmware.com> | 2009-08-25 17:37:38 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-08-25 17:46:10 -0600 |
commit | 2050baba9692600da7038dd18cbfee794caf4bf4 (patch) | |
tree | 76105c505bae029dadef67e18d18466759c83e96 | |
parent | fa6299cb31b62ff2418138cbb789b900d19a0bca (diff) |
mesa: use gl_texture_index type for gl_program::SamplerTargets
-rw-r--r-- | src/mesa/main/mtypes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 2d497ff2c6..53dc6360ea 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -1799,7 +1799,7 @@ struct gl_program /** Map from sampler unit to texture unit (set by glUniform1i()) */ GLubyte SamplerUnits[MAX_SAMPLERS]; /** Which texture target is being sampled (TEXTURE_1D/2D/3D/etc_INDEX) */ - GLubyte SamplerTargets[MAX_SAMPLERS]; + gl_texture_index SamplerTargets[MAX_SAMPLERS]; /** Logical counts */ /*@{*/ |