From: Jakob Bornecrantz Date: Thu, 15 Dec 2011 12:04:56 +0000 (+0100) Subject: svga: Fix texture cube param cap X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2bb9c6448949d105cd95ac5b72c73efc1f960a63;p=mesa.git svga: Fix texture cube param cap Spotted by Thomas Hellstrom. Reviewed-by: Thomas Hellstrom Signed-off-by: Jakob Bornecrantz --- diff --git a/src/gallium/drivers/svga/svga_screen.c b/src/gallium/drivers/svga/svga_screen.c index e8970effcce..0b4da15e226 100644 --- a/src/gallium/drivers/svga/svga_screen.c +++ b/src/gallium/drivers/svga/svga_screen.c @@ -185,8 +185,8 @@ svga_get_param(struct pipe_screen *screen, enum pipe_cap param) * No mechanism to query the host, and at least limited to 2048x2048 on * certain hardware. */ - return MIN2(screen->get_paramf(screen, PIPE_CAP_MAX_TEXTURE_2D_LEVELS), - 12.0 /* 2048x2048 */); + return MIN2(screen->get_param(screen, PIPE_CAP_MAX_TEXTURE_2D_LEVELS), + 12 /* 2048x2048 */); case PIPE_CAP_BLEND_EQUATION_SEPARATE: /* req. for GL 1.5 */ return 1;