diff options
author | Kristian Høgsberg <[email protected]> | 2008-10-11 20:41:14 -0400 |
---|---|---|
committer | Alan Hourihane <[email protected]> | 2008-10-15 11:18:05 +0100 |
commit | d533a5d00ae2d0669e9da41718ee847de0c343aa (patch) | |
tree | 3d5cf489a68979fa1c117532d25cdeabacb5f25d /src/glx/x11/glxclient.h | |
parent | e5ef0beb0549b2b613c379553cc51f9f1ae72299 (diff) |
Update DRI2 implementation according to new specification.
Diffstat (limited to 'src/glx/x11/glxclient.h')
-rw-r--r-- | src/glx/x11/glxclient.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/glx/x11/glxclient.h b/src/glx/x11/glxclient.h index 2d530eabdb9..80f28332b7c 100644 --- a/src/glx/x11/glxclient.h +++ b/src/glx/x11/glxclient.h @@ -138,6 +138,8 @@ struct __GLXDRIscreenRec { const __GLcontextModes *modes); void (*swapBuffers)(__GLXDRIdrawable *pdraw); + void (*copySubBuffer)(__GLXDRIdrawable *pdraw, + int x, int y, int width, int height); }; struct __GLXDRIcontextRec { @@ -493,7 +495,7 @@ struct __GLXscreenConfigsRec { __GLXDRIscreen *driScreen; #ifdef __DRI_COPY_SUB_BUFFER - const __DRIcopySubBufferExtension *copySubBuffer; + const __DRIcopySubBufferExtension *driCopySubBuffer; #endif #ifdef __DRI_SWAP_CONTROL |