Mesa (master): r600: increase max texture units to 16

Andre Maasikas andrem at kemper.freedesktop.org
Wed Jan 27 09:28:50 UTC 2010


Module: Mesa
Branch: master
Commit: 07d47cb92d7401b7a5ed21a8f97949f4bd2f66bc
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=07d47cb92d7401b7a5ed21a8f97949f4bd2f66bc

Author: Andre Maasikas <amaasikas at gmail.com>
Date:   Wed Jan 27 11:22:56 2010 +0200

r600: increase max texture units to 16

---

 src/mesa/drivers/dri/r600/r600_context.c |    6 ++----
 src/mesa/drivers/dri/r600/r600_tex.h     |    2 +-
 2 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/src/mesa/drivers/dri/r600/r600_context.c b/src/mesa/drivers/dri/r600/r600_context.c
index 68112c4..2ac0e7c 100644
--- a/src/mesa/drivers/dri/r600/r600_context.c
+++ b/src/mesa/drivers/dri/r600/r600_context.c
@@ -248,10 +248,8 @@ static void r600InitConstValues(GLcontext *ctx, radeonScreenPtr screen)
 {
 	context_t *r600 = R700_CONTEXT(ctx);
 
-	ctx->Const.MaxTextureImageUnits =
-	    driQueryOptioni(&r600->radeon.optionCache, "texture_image_units");
-	ctx->Const.MaxTextureCoordUnits =
-	    driQueryOptioni(&r600->radeon.optionCache, "texture_coord_units");
+	ctx->Const.MaxTextureImageUnits = 16;
+	ctx->Const.MaxTextureCoordUnits = 8;
 	ctx->Const.MaxTextureUnits =
 	    MIN2(ctx->Const.MaxTextureImageUnits,
 		 ctx->Const.MaxTextureCoordUnits);
diff --git a/src/mesa/drivers/dri/r600/r600_tex.h b/src/mesa/drivers/dri/r600/r600_tex.h
index c2141ef..1d75a2e 100644
--- a/src/mesa/drivers/dri/r600/r600_tex.h
+++ b/src/mesa/drivers/dri/r600/r600_tex.h
@@ -42,7 +42,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 /* Texel pitch is 8 alignment. */
 #define R700_TEXEL_PITCH_ALIGNMENT_MASK 0x7
 
-#define R700_MAX_TEXTURE_UNITS 8 /* TODO : should be 16, lets make it work, review later */
+#define R700_MAX_TEXTURE_UNITS 16
 
 extern void r600SetDepthTexMode(struct gl_texture_object *tObj);
 




More information about the mesa-commit mailing list