This fixes it but why mipmaps still work?
authorAapo Tahkola <aet@rasterburn.org>
Sun, 16 Jan 2005 17:07:24 +0000 (17:07 +0000)
committerAapo Tahkola <aet@rasterburn.org>
Sun, 16 Jan 2005 17:07:24 +0000 (17:07 +0000)
It doesnt look like filter constants in r300_reg.h would define number of
levels.

src/mesa/drivers/dri/r300/r300_state.c
src/mesa/drivers/dri/r300/r300_texstate.c

index ea0c37b..cc6328b 100644 (file)
@@ -1160,9 +1160,6 @@ void r300_setup_textures(GLcontext *ctx)
                                fprintf(stderr, "Activating texture unit %d\n", i);
                        max_texture_unit=i;
                        r300->hw.txe.cmd[R300_TXE_ENABLE]|=(1<<i);
-                       
-                       t->filter &= R300_TX_MAG_FILTER_MASK | R300_TX_MIN_FILTER_MASK | R300_TX_MAX_ANISO_MASK
-                                       | R300_TX_WRAP_S_MASK | R300_TX_WRAP_T_MASK  | R300_TX_WRAP_Q_MASK;
                                        
                        r300->hw.tex.filter.cmd[R300_TEX_VALUE_0+i]=t->filter;
                        
index 3c6595f..c7b5e7d 100644 (file)
@@ -152,7 +152,7 @@ static void r300SetTexImages(r300ContextPtr rmesa,
        if (VALID_FORMAT(baseImage->TexFormat->MesaFormat)) {
                t->format =
                    tx_table[baseImage->TexFormat->MesaFormat].format;
-#if 1  
+#if 1
                t->filter |=
                    tx_table[baseImage->TexFormat->MesaFormat].filter;
 #endif         
@@ -270,7 +270,7 @@ static void r300SetTexImages(r300ContextPtr rmesa,
 
        /* Hardware state:
         */
-#if 1  
+#if 0
        t->filter &= ~R200_MAX_MIP_LEVEL_MASK;
        t->filter |= (numLevels - 1) << R200_MAX_MIP_LEVEL_SHIFT;
 #endif