diff options
author | Emil Velikov <[email protected]> | 2014-05-17 18:53:36 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-06-19 12:37:14 +0100 |
commit | 665a4d9d9b883324dbe9ba7ff55c9cb8201bc6b3 (patch) | |
tree | 5d5c1764e66f38f99f3a36586ff42f3f371a7418 /src/gallium/targets/pipe-loader/pipe_nouveau.c | |
parent | 36ff20027c43cd7115f1b6f073e4094582f643b6 (diff) |
targets/pipe-loader: add driver specific drm_configuration
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/targets/pipe-loader/pipe_nouveau.c')
-rw-r--r-- | src/gallium/targets/pipe-loader/pipe_nouveau.c | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/src/gallium/targets/pipe-loader/pipe_nouveau.c b/src/gallium/targets/pipe-loader/pipe_nouveau.c index 65425e8d456..825b36f602e 100644 --- a/src/gallium/targets/pipe-loader/pipe_nouveau.c +++ b/src/gallium/targets/pipe-loader/pipe_nouveau.c @@ -17,5 +17,28 @@ create_screen(int fd) 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("nouveau", "nouveau", create_screen, NULL) +DRM_DRIVER_DESCRIPTOR("nouveau", "nouveau", create_screen, drm_configuration) |