diff options
author | Oliver McFadden <[email protected]> | 2007-05-09 21:44:07 +0000 |
---|---|---|
committer | Oliver McFadden <[email protected]> | 2007-05-09 22:43:01 +0000 |
commit | 672ecba175d4062b983031df15b686ee39f45d17 (patch) | |
tree | baabb12de516391c252c3bb14a46f8da2479d9c4 /src/mesa/drivers/dri/r300/r300_texstate.c | |
parent | 0dcea4bf8eeddf5d1f3b40c6ba5eedec298b040c (diff) |
r300: Removed the "texmicrotile" variable; the tiling code is disabled via a
compiler conditional anyway; probably broken?
Diffstat (limited to 'src/mesa/drivers/dri/r300/r300_texstate.c')
-rw-r--r-- | src/mesa/drivers/dri/r300/r300_texstate.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_texstate.c b/src/mesa/drivers/dri/r300/r300_texstate.c index 7bd7cf22e89..49231d415f5 100644 --- a/src/mesa/drivers/dri/r300/r300_texstate.c +++ b/src/mesa/drivers/dri/r300/r300_texstate.c @@ -221,8 +221,7 @@ static void r300SetTexImages(r300ContextPtr rmesa, /* figure out if this texture is suitable for tiling. */ #if 0 /* Disabled for now */ if (texelBytes) { - if (rmesa->texmicrotile - && (tObj->Target != GL_TEXTURE_RECTANGLE_NV) && + if ((tObj->Target != GL_TEXTURE_RECTANGLE_NV) && /* texrect might be able to use micro tiling too in theory? */ (baseImage->Height > 1)) { |