diff options
author | Jakob Bornecrantz <jakob@vmware.com> | 2010-06-29 12:28:15 +0100 |
---|---|---|
committer | Jakob Bornecrantz <jakob@vmware.com> | 2010-06-29 12:28:15 +0100 |
commit | eebb04875392e162a7372d79b8eb2f72d9086d65 (patch) | |
tree | 29ccbcaba48209bb99f60020f5eda502667995bd /src/gallium/targets/egl | |
parent | 4cb853402b6c55f5dbabf4475cd46b34bd7b1bc1 (diff) |
i915g: Add missing egl pipe file
Diffstat (limited to 'src/gallium/targets/egl')
-rw-r--r-- | src/gallium/targets/egl/pipe_i915.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/gallium/targets/egl/pipe_i915.c b/src/gallium/targets/egl/pipe_i915.c new file mode 100644 index 0000000000..1df650c346 --- /dev/null +++ b/src/gallium/targets/egl/pipe_i915.c @@ -0,0 +1,28 @@ + +#include "target-helpers/inline_wrapper_sw_helper.h" +#include "target-helpers/inline_debug_helper.h" +#include "state_tracker/drm_driver.h" +#include "i915/drm/i915_drm_public.h" +#include "i915/i915_public.h" + +static struct pipe_screen * +create_screen(int fd) +{ + struct brw_winsys_screen *bws; + struct pipe_screen *screen; + + bws = i915_drm_winsys_screen_create(fd); + if (!bws) + return NULL; + + screen = i915_screen_create(bws); + if (!screen) + return NULL; + + screen = debug_screen_wrap(screen); + + return screen; +} + +PUBLIC +DRM_DRIVER_DESCRIPTOR("i915", "i915", create_screen) |