Mesa (master): svga: Fix texture cube param cap

Jakob Bornecrantz wallbraker at kemper.freedesktop.org
Thu Jan 5 16:25:06 UTC 2012


Module: Mesa
Branch: master
Commit: 2bb9c6448949d105cd95ac5b72c73efc1f960a63
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=2bb9c6448949d105cd95ac5b72c73efc1f960a63

Author: Jakob Bornecrantz <jakob at vmware.com>
Date:   Thu Dec 15 13:04:56 2011 +0100

svga: Fix texture cube param cap

Spotted by Thomas Hellstrom.

Reviewed-by: Thomas Hellstrom <thellstrom at vmware.com>
Signed-off-by: Jakob Bornecrantz <jakob at vmware.com>

---

 src/gallium/drivers/svga/svga_screen.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/gallium/drivers/svga/svga_screen.c b/src/gallium/drivers/svga/svga_screen.c
index e8970ef..0b4da15 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;




More information about the mesa-commit mailing list