summaryrefslogtreecommitdiff
path: root/src/gallium/winsys/xlib/xlib_softpipe.h
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2009-01-13 18:08:24 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2009-01-13 19:46:18 +0000
commit2f19fecd583a4406385708de6362b3bdef23811e (patch)
treeea10148c44d8d65ccd091a16759249ca5da44e9a /src/gallium/winsys/xlib/xlib_softpipe.h
parenta2d5031b1e133523591f1683527c2c96f58aa606 (diff)
xlib: allow winsys's to register themselves with glx/xlib state tracker
Diffstat (limited to 'src/gallium/winsys/xlib/xlib_softpipe.h')
-rw-r--r--src/gallium/winsys/xlib/xlib_softpipe.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/src/gallium/winsys/xlib/xlib_softpipe.h b/src/gallium/winsys/xlib/xlib_softpipe.h
deleted file mode 100644
index 0de96cc4c6..0000000000
--- a/src/gallium/winsys/xlib/xlib_softpipe.h
+++ /dev/null
@@ -1,50 +0,0 @@
-
-#ifndef XLIB_SOFTPIPE_H
-#define XLIB_SOFTPIPE_H
-
-struct pipe_winsys;
-struct pipe_screen;
-struct pipe_context;
-struct pipe_surface;
-struct xmesa_buffer;
-
-
-struct pipe_winsys *
-xlib_create_softpipe_winsys( void );
-
-struct pipe_screen *
-xlib_create_softpipe_screen( struct pipe_winsys *pws );
-
-struct pipe_context *
-xlib_create_softpipe_context( struct pipe_screen *screen,
- void *context_priv );
-
-void
-xlib_softpipe_display_surface( struct xmesa_buffer *,
- struct pipe_surface * );
-
-/***********************************************************************
- * Cell piggybacks on softpipe code still.
- *
- * Should be untangled sufficiently to live in a separate file, at
- * least. That would mean removing #ifdef GALLIUM_CELL's from above
- * and creating cell-specific versions of either those functions or
- * the entire file.
- */
-struct pipe_winsys *
-xlib_create_cell_winsys( void );
-
-struct pipe_screen *
-xlib_create_cell_screen( struct pipe_winsys *pws );
-
-
-struct pipe_context *
-xlib_create_cell_context( struct pipe_screen *screen,
- void *priv );
-
-void
-xlib_cell_display_surface( struct xmesa_buffer *,
- struct pipe_surface * );
-
-
-#endif