[Mesa-dev] [PATCH] ilo: Advertise DMA-BUF
Commend Sarnex
commendsarnex at gmail.com
Wed Oct 15 13:12:18 PDT 2014
Whoops, forgot to add the description. This is another trivial patch for
ilo, all the frameworks were already implemented. In hindsight, I should
have included this with my previous patch.
On Wed, Oct 15, 2014 at 4:08 PM, Nick Sarnie <commendsarnex at gmail.com>
wrote:
> diff --git a/src/gallium/targets/pipe-loader/pipe_i965.c
> b/src/gallium/targets/pipe-loader/pipe_i965.c
> index f4d447c..810dffc 100644
> --- a/src/gallium/targets/pipe-loader/pipe_i965.c
> +++ b/src/gallium/targets/pipe-loader/pipe_i965.c
> @@ -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)
> --
> 1.9.1
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/mesa-dev/attachments/20141015/a59a4a98/attachment.html>
More information about the mesa-dev
mailing list