mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-02 18:10:17 +01:00
ilo: add drm_configuration for the pipe-target
Allows the driver to advertise DMA-BUF and throttling.
This commit is contained in:
parent
6107557f8f
commit
9e2473763d
1 changed files with 22 additions and 1 deletions
|
|
@ -21,6 +21,27 @@ 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("i965", "i915", create_screen, NULL)
|
||||
DRM_DRIVER_DESCRIPTOR("i965", "i915", create_screen, drm_configuration)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue