diff options
author | Dave Airlie <[email protected]> | 2009-02-03 09:49:45 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2009-02-03 09:49:45 +1000 |
commit | d9cf1319252e053a894dd49583064e4cd063d119 (patch) | |
tree | f0495c56950619ca249e90e6795c9a0ce9685bc6 /src/mesa/drivers/dri/r300/r300_tex.c | |
parent | dbf72bdd3dda73384381a9ae8a94b522b7f786c2 (diff) |
r300: fixup mipmap + texsubimage issues
This fixes a few regression in piglit, and adds some debug to the mipmap code
Diffstat (limited to 'src/mesa/drivers/dri/r300/r300_tex.c')
-rw-r--r-- | src/mesa/drivers/dri/r300/r300_tex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_tex.c b/src/mesa/drivers/dri/r300/r300_tex.c index 11e89ffd0f0..989aa462aea 100644 --- a/src/mesa/drivers/dri/r300/r300_tex.c +++ b/src/mesa/drivers/dri/r300/r300_tex.c @@ -334,7 +334,7 @@ void r300InitTextureFuncs(struct dd_function_table *functions) functions->CompressedTexImage2D = radeonCompressedTexImage2D; functions->CompressedTexSubImage2D = radeonCompressedTexSubImage2D; - functions->GenerateMipmap = radeon_generate_mipmap; + functions->GenerateMipmap = radeonGenerateMipmap; driInitTextureFormats(); } |