summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets/xa-vmwgfx/vmw_target.c
diff options
context:
space:
mode:
authorThomas Hellstrom <[email protected]>2011-06-15 10:46:24 +0200
committerThomas Hellstrom <[email protected]>2011-06-15 11:06:16 +0200
commit9f2f5b3d7fd70663b98da5d302fcdfd5bc93db05 (patch)
tree812329e0744641c22b75c22dd5ccd67c8d0b8d4e /src/gallium/targets/xa-vmwgfx/vmw_target.c
parent40aec11b7569fcdd2d884629b172af3db3fbaf1d (diff)
st/xa: Initial import of the xa state-tracker and the xa-vmwgfx target.
See the file src/gallium/state_trackers/xa/README for more info. Signed-off-by: Thomas Hellstrom <[email protected]>
Diffstat (limited to 'src/gallium/targets/xa-vmwgfx/vmw_target.c')
-rw-r--r--src/gallium/targets/xa-vmwgfx/vmw_target.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/gallium/targets/xa-vmwgfx/vmw_target.c b/src/gallium/targets/xa-vmwgfx/vmw_target.c
new file mode 100644
index 00000000000..f4a49d9a6f2
--- /dev/null
+++ b/src/gallium/targets/xa-vmwgfx/vmw_target.c
@@ -0,0 +1,27 @@
+
+#include "target-helpers/inline_debug_helper.h"
+#include "state_tracker/drm_driver.h"
+#include "svga/drm/svga_drm_public.h"
+#include "svga/svga_public.h"
+#include "xa_tracker.h"
+
+static struct pipe_screen *
+create_screen(int fd)
+{
+ struct svga_winsys_screen *sws;
+ struct pipe_screen *screen;
+
+ sws = svga_drm_winsys_screen_create(fd);
+ if (!sws)
+ return NULL;
+
+ screen = svga_screen_create(sws);
+ if (!screen)
+ return NULL;
+
+ screen = debug_screen_wrap(screen);
+
+ return screen;
+}
+
+DRM_DRIVER_DESCRIPTOR("vmwgfx", "vmwgfx", create_screen)