summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets/gbm/pipe_i965.c
diff options
context:
space:
mode:
authorChia-I Wu <[email protected]>2011-06-24 10:39:06 +0900
committerChia-I Wu <[email protected]>2011-06-24 16:43:03 +0900
commitf36d210c93b1fde0cdc5c6625ca2df25ad937aba (patch)
tree0d5fe5fdad1e722436b783d5101e44e82d74ab2b /src/gallium/targets/gbm/pipe_i965.c
parent15e64242f9f97f5e001bc7b9f94f17b013230ba5 (diff)
targets/gbm: build pipe drivers
Build pipe drivers here instead of using those built by the soon-to-be-removed targets/egl. [with an update by Benjamin Franzke to use --{start|end}-group]
Diffstat (limited to 'src/gallium/targets/gbm/pipe_i965.c')
-rw-r--r--src/gallium/targets/gbm/pipe_i965.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/gallium/targets/gbm/pipe_i965.c b/src/gallium/targets/gbm/pipe_i965.c
new file mode 100644
index 00000000000..f810ecffb0a
--- /dev/null
+++ b/src/gallium/targets/gbm/pipe_i965.c
@@ -0,0 +1,30 @@
+
+#include "target-helpers/inline_debug_helper.h"
+#include "target-helpers/inline_wrapper_sw_helper.h"
+#include "state_tracker/drm_driver.h"
+#include "i965/drm/i965_drm_public.h"
+#include "i965/brw_public.h"
+
+static struct pipe_screen *
+create_screen(int fd)
+{
+ struct brw_winsys_screen *bws;
+ struct pipe_screen *screen;
+
+ bws = i965_drm_winsys_screen_create(fd);
+ if (!bws)
+ return NULL;
+
+ screen = brw_screen_create(bws);
+ if (!screen)
+ return NULL;
+
+ screen = sw_screen_wrap(screen);
+
+ screen = debug_screen_wrap(screen);
+
+ return screen;
+}
+
+PUBLIC
+DRM_DRIVER_DESCRIPTOR("i965", "i965", create_screen)