From ecc0e1ec2e5f8283ccae39e3fd18528fa9c3c95b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Fonseca?= Date: Fri, 30 Jan 2009 22:04:15 +0000 Subject: gallium: Don't ask winsys name -- let pipe screen do that if it wants. Allows to leave screen->winsys NULL. --- src/mesa/state_tracker/st_cb_strings.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/mesa/state_tracker/st_cb_strings.c b/src/mesa/state_tracker/st_cb_strings.c index 27e396ab46..2036ccafbf 100644 --- a/src/mesa/state_tracker/st_cb_strings.c +++ b/src/mesa/state_tracker/st_cb_strings.c @@ -36,8 +36,6 @@ #include "main/version.h" #include "pipe/p_context.h" #include "pipe/p_screen.h" -/* We want the name of the winsys we're running on*/ -#include "pipe/internal/p_winsys_screen.h" #include "st_context.h" #include "st_cb_strings.h" @@ -68,10 +66,9 @@ st_get_string(GLcontext * ctx, GLenum name) } case GL_RENDERER: - util_snprintf(st->renderer, sizeof(st->renderer), "Gallium %s, %s on %s", + util_snprintf(st->renderer, sizeof(st->renderer), "Gallium %s on %s", ST_VERSION_STRING, - screen->get_name( screen ), - screen->winsys->get_name( screen->winsys )); + screen->get_name( screen )); return (GLubyte *) st->renderer; -- cgit v1.2.3