From: Corbin Simpson Date: Fri, 9 Apr 2010 10:38:23 +0000 (-0700) Subject: st/xorg: Fix bad paramf. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8ddb4e2c81c88c9320ed7fb75464e0b37f4d4536;p=mesa.git st/xorg: Fix bad paramf. Should be an integer param, according to docs. --- diff --git a/src/gallium/state_trackers/xorg/xorg_driver.c b/src/gallium/state_trackers/xorg/xorg_driver.c index 8ac5179545a..d5dd0d761d0 100644 --- a/src/gallium/state_trackers/xorg/xorg_driver.c +++ b/src/gallium/state_trackers/xorg/xorg_driver.c @@ -676,10 +676,8 @@ drv_screen_init(int scrnIndex, ScreenPtr pScreen, int argc, char **argv) } if (ms->screen) { - float maxf; int max; - maxf = ms->screen->get_paramf(ms->screen, PIPE_CAP_MAX_TEXTURE_2D_LEVELS); - max = (1 << (int)(maxf - 1.0f)); + max = ms->screen->get_param(ms->screen, PIPE_CAP_MAX_TEXTURE_2D_LEVELS); max_width = max < max_width ? max : max_width; max_height = max < max_height ? max : max_height; }