Mesa (master): r300-gallium: Enable GLSL for r500.

Corbin Simpson csimpson at kemper.freedesktop.org
Mon May 18 04:44:43 UTC 2009


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

Author: Corbin Simpson <MostAwesomeDude at gmail.com>
Date:   Sun May 17 21:41:25 2009 -0700

r300-gallium: Enable GLSL for r500.

Before you get all excited, this is *not* to be construed as actual support
for GLSL shaders. The GL version is still 1.3, and stuff still sucks. Just
flicking it on so that it can be tested and developed a bit easier.

---

 src/gallium/drivers/r300/r300_screen.c |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/gallium/drivers/r300/r300_screen.c b/src/gallium/drivers/r300/r300_screen.c
index 04d6db8..a6f1efe 100644
--- a/src/gallium/drivers/r300/r300_screen.c
+++ b/src/gallium/drivers/r300/r300_screen.c
@@ -88,8 +88,11 @@ static int r300_get_param(struct pipe_screen* pscreen, int param)
                 return 0;
             }
         case PIPE_CAP_GLSL:
-            /* IN THEORY */
-            return 0;
+            if (r300screen->caps->is_r500) {
+                return 1;
+            } else {
+                return 0;
+            }
         case PIPE_CAP_S3TC:
             /* IN THEORY */
             return 0;




More information about the mesa-commit mailing list