diff options
author | Adam Jackson <ajax@redhat.com> | 2009-10-29 14:01:29 -0400 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-12-14 14:34:15 -0800 |
commit | 77221c9155a3c96cb63b210a048db1ea71a5e359 (patch) | |
tree | 33cf2ffc017cd4f188205611936aac5a45d1474d /glx | |
parent | a72c65e9176c51de95db2fdbf4c5d946a4911695 (diff) |
glx: swrast can do GLX 1.4 too
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Signed-off-by: Adam Jackson <ajax@redhat.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'glx')
-rw-r--r-- | glx/glxdriswrast.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/glx/glxdriswrast.c b/glx/glxdriswrast.c index 44f658fa9..20f9f90d6 100644 --- a/glx/glxdriswrast.c +++ b/glx/glxdriswrast.c @@ -510,6 +510,9 @@ __glXDRIscreenProbe(ScreenPtr pScreen) __glXScreenInit(&screen->base, pScreen); + screen->base.GLXmajor = 1; + screen->base.GLXminor = 4; + LogMessage(X_INFO, "AIGLX: Loaded and initialized %s\n", filename); |