diff options
Diffstat (limited to 'src/gallium/targets/pipe-loader/pipe_i965.c')
-rw-r--r-- | src/gallium/targets/pipe-loader/pipe_i965.c | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/src/gallium/targets/pipe-loader/pipe_i965.c b/src/gallium/targets/pipe-loader/pipe_i965.c deleted file mode 100644 index a2d8debfc9c..00000000000 --- a/src/gallium/targets/pipe-loader/pipe_i965.c +++ /dev/null @@ -1,47 +0,0 @@ -#include "target-helpers/inline_debug_helper.h" -#include "state_tracker/drm_driver.h" -#include "intel/drm/intel_drm_public.h" -#include "ilo/ilo_public.h" - -static struct pipe_screen * -create_screen(int fd) -{ - struct intel_winsys *iws; - struct pipe_screen *screen; - - iws = intel_winsys_create_for_fd(fd); - if (!iws) - return NULL; - - screen = ilo_screen_create(iws); - if (!screen) - return NULL; - - screen = debug_screen_wrap(screen); - - return screen; -} -static const struct drm_conf_ret throttle_ret = { - .type = DRM_CONF_INT, - .val.val_int = 2, -}; - -static const struct drm_conf_ret share_fd_ret = { - .type = DRM_CONF_BOOL, - .val.val_int = true, -}; - -static const struct drm_conf_ret *drm_configuration(enum drm_conf conf) -{ - switch (conf) { - case DRM_CONF_THROTTLE: - return &throttle_ret; - case DRM_CONF_SHARE_FD: - return &share_fd_ret; - default: - break; - } - return NULL; -} -PUBLIC -DRM_DRIVER_DESCRIPTOR("i965", create_screen, drm_configuration) |