diff options
author | marha <marha@users.sourceforge.net> | 2011-03-30 19:15:38 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-03-30 19:15:38 +0000 |
commit | 140242b0d4aed1d595d6565d088d9567c456d6b4 (patch) | |
tree | 2be8f8ce7a66c32ad440af80a236c071c01f5880 /xorg-server/glx/glxdriswrast.c | |
parent | aee5cfef9a419ee2845d66b0c31e476880bea663 (diff) | |
download | vcxsrv-140242b0d4aed1d595d6565d088d9567c456d6b4.tar.gz vcxsrv-140242b0d4aed1d595d6565d088d9567c456d6b4.tar.bz2 vcxsrv-140242b0d4aed1d595d6565d088d9567c456d6b4.zip |
xserver mesa git update 30 Mar 2011
Diffstat (limited to 'xorg-server/glx/glxdriswrast.c')
-rw-r--r-- | xorg-server/glx/glxdriswrast.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/xorg-server/glx/glxdriswrast.c b/xorg-server/glx/glxdriswrast.c index fb2316a62..9b65f3662 100644 --- a/xorg-server/glx/glxdriswrast.c +++ b/xorg-server/glx/glxdriswrast.c @@ -174,19 +174,6 @@ __glXDRIcontextCopy(__GLXcontext *baseDst, __GLXcontext *baseSrc, src->driContext, mask);
}
-static int
-__glXDRIcontextForceCurrent(__GLXcontext *baseContext)
-{
- __GLXDRIcontext *context = (__GLXDRIcontext *) baseContext;
- __GLXDRIdrawable *draw = (__GLXDRIdrawable *) baseContext->drawPriv;
- __GLXDRIdrawable *read = (__GLXDRIdrawable *) baseContext->readPriv;
- __GLXDRIscreen *screen = (__GLXDRIscreen *) context->base.pGlxScreen;
-
- return (*screen->core->bindContext)(context->driContext,
- draw->driDrawable,
- read->driDrawable);
-}
-
#ifdef __DRI_TEX_BUFFER
static int
@@ -289,7 +276,6 @@ __glXDRIscreenCreateContext(__GLXscreen *baseScreen, context->base.makeCurrent = __glXDRIcontextMakeCurrent;
context->base.loseCurrent = __glXDRIcontextLoseCurrent;
context->base.copy = __glXDRIcontextCopy;
- context->base.forceCurrent = __glXDRIcontextForceCurrent;
context->base.textureFromPixmap = &__glXDRItextureFromPixmap;
context->driContext =
|