diff options
author | Emil Velikov <[email protected]> | 2014-02-21 23:09:16 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-08-15 17:35:36 +0100 |
commit | d10ba8b7c04b6f0f7f8e62715b7006494fb3915f (patch) | |
tree | de3101f870d1f3543696fbd9368a523cded44023 /src/glx/drisw_glx.c | |
parent | ffb8e884f7c466c36cf64bf56ff63c52a833fa66 (diff) |
glx/drisw: Move private structure declarations to a header file
v2: Reff the correct file wrt copyright, spotted by Chia-I
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/glx/drisw_glx.c')
-rw-r--r-- | src/glx/drisw_glx.c | 41 |
1 files changed, 1 insertions, 40 deletions
diff --git a/src/glx/drisw_glx.c b/src/glx/drisw_glx.c index fcb5d8f5789..fab9e70d63a 100644 --- a/src/glx/drisw_glx.c +++ b/src/glx/drisw_glx.c @@ -27,46 +27,7 @@ #include "glxclient.h" #include <dlfcn.h> #include "dri_common.h" - -struct drisw_display -{ - __GLXDRIdisplay base; -}; - -struct drisw_context -{ - struct glx_context base; - __DRIcontext *driContext; - -}; - -struct drisw_screen -{ - struct glx_screen base; - - __DRIscreen *driScreen; - __GLXDRIscreen vtable; - const __DRIcoreExtension *core; - const __DRIswrastExtension *swrast; - const __DRItexBufferExtension *texBuffer; - const __DRIcopySubBufferExtension *copySubBuffer; - - const __DRIconfig **driver_configs; - - void *driver; -}; - -struct drisw_drawable -{ - __GLXDRIdrawable base; - - GC gc; - GC swapgc; - - __DRIdrawable *driDrawable; - XVisualInfo *visinfo; - XImage *ximage; -}; +#include "drisw_priv.h" static Bool XCreateDrawable(struct drisw_drawable * pdp, |