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

Author: Brian Paul <[email protected]>
Date:   Thu Apr 10 19:03:58 2014 -0600

softpipe: add PIPE_CAP_MIN/MAX_TEXTURE_GATHER_OFFSET query cases

To silence compiler warnings.

Reviewed-by: Ilia Mirkin <[email protected]>

---

 src/gallium/drivers/softpipe/sp_screen.c |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/gallium/drivers/softpipe/sp_screen.c 
b/src/gallium/drivers/softpipe/sp_screen.c
index ce04fb8..b4ca728 100644
--- a/src/gallium/drivers/softpipe/sp_screen.c
+++ b/src/gallium/drivers/softpipe/sp_screen.c
@@ -192,6 +192,9 @@ softpipe_get_param(struct pipe_screen *screen, enum 
pipe_cap param)
       return 0;
    case PIPE_CAP_FAKE_SW_MSAA:
       return 1;
+   case PIPE_CAP_MIN_TEXTURE_GATHER_OFFSET:
+   case PIPE_CAP_MAX_TEXTURE_GATHER_OFFSET:
+      return 0;
    }
    /* should only get here on unhandled cases */
    debug_printf("Unexpected PIPE_CAP %d query\n", param);

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to