diff options
author | Marek Olšák <[email protected]> | 2019-04-22 20:00:10 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2019-04-23 21:20:26 -0400 |
commit | d8b296d3ad96cb04ee57234a0b1a6a046e08a1a7 (patch) | |
tree | 70c9d4183d333f6b17f616b8e638b2eb8c572bcd /src/gallium/targets/pipe-loader/pipe_r600.c | |
parent | 8ae50e6004e6279493d7ea771f540cc871a90149 (diff) |
gallium: replace drm_driver_descriptor::configuration with driconf_xml
PIPE_CAPs are better.
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/gallium/targets/pipe-loader/pipe_r600.c')
-rw-r--r-- | src/gallium/targets/pipe-loader/pipe_r600.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/gallium/targets/pipe-loader/pipe_r600.c b/src/gallium/targets/pipe-loader/pipe_r600.c index f5f1c446e2d..855aa9e4bd3 100644 --- a/src/gallium/targets/pipe-loader/pipe_r600.c +++ b/src/gallium/targets/pipe-loader/pipe_r600.c @@ -13,10 +13,5 @@ create_screen(int fd, const struct pipe_screen_config *config) return rw ? debug_screen_wrap(rw->screen) : NULL; } -static const struct drm_conf_ret *drm_configuration(enum drm_conf conf) -{ - return NULL; -} - PUBLIC -DRM_DRIVER_DESCRIPTOR("r600", create_screen, drm_configuration) +DRM_DRIVER_DESCRIPTOR("r600", NULL, create_screen) |