Mesa (master): softpipe: Report some sane values for constant buffer CAP queries.

Michał Król michal at kemper.freedesktop.org
Thu Jan 28 13:12:28 UTC 2010


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

Author: Michal Krol <michal at vmware.com>
Date:   Mon Jan 25 14:31:32 2010 +0100

softpipe: Report some sane values for constant buffer CAP queries.

---

 src/gallium/drivers/softpipe/sp_screen.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/gallium/drivers/softpipe/sp_screen.c b/src/gallium/drivers/softpipe/sp_screen.c
index bd3532d..69f40dc 100644
--- a/src/gallium/drivers/softpipe/sp_screen.c
+++ b/src/gallium/drivers/softpipe/sp_screen.c
@@ -91,6 +91,10 @@ softpipe_get_param(struct pipe_screen *screen, int param)
       return 1;
    case PIPE_CAP_BLEND_EQUATION_SEPARATE:
       return 1;
+   case PIPE_CAP_MAX_CONST_BUFFERS:
+      return PIPE_MAX_CONSTANT_BUFFERS;
+   case PIPE_CAP_MAX_CONST_BUFFER_SIZE:
+      return 4096 * 4 * sizeof(float);
    default:
       return 0;
    }




More information about the mesa-commit mailing list