From 3c9faa448ccef15a514a5580fe76838822dd2a9e Mon Sep 17 00:00:00 2001 From: Daniel Borca Date: Tue, 12 Oct 2004 07:32:11 +0000 Subject: SWTC trick (disabled for now) --- src/mesa/drivers/x11/xm_dd.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'src/mesa/drivers/x11/xm_dd.c') diff --git a/src/mesa/drivers/x11/xm_dd.c b/src/mesa/drivers/x11/xm_dd.c index 4a290c84db..db94e40c21 100644 --- a/src/mesa/drivers/x11/xm_dd.c +++ b/src/mesa/drivers/x11/xm_dd.c @@ -1148,6 +1148,24 @@ test_proxy_teximage(GLcontext *ctx, GLenum target, GLint level, } +/** + * In SW, we don't really compress GL_COMPRESSED_RGB[A] textures! + */ +static const struct gl_texture_format * +choose_tex_format( GLcontext *ctx, GLint internalFormat, + GLenum format, GLenum type ) +{ + switch (internalFormat) { + case GL_COMPRESSED_RGB_ARB: + return &_mesa_texformat_rgb; + case GL_COMPRESSED_RGBA_ARB: + return &_mesa_texformat_rgba; + default: + return _mesa_choose_tex_format(ctx, internalFormat, format, type); + } +} + + /** * Initialize the device driver function table with the functions * we implement in this driver. @@ -1178,6 +1196,9 @@ void xmesa_init_driver_functions( XMesaVisual xmvisual, } #endif driver->TestProxyTexImage = test_proxy_teximage; +#if SWTC + driver->ChooseTextureFormat = choose_tex_format; +#endif } -- cgit v1.2.3