diff options
author | Rob Clark <[email protected]> | 2014-09-16 19:10:23 -0400 |
---|---|---|
committer | Rob Clark <[email protected]> | 2014-09-21 15:35:53 -0400 |
commit | 18291ee17a36ea700108b85d679444efa262a312 (patch) | |
tree | 5457c46effa7992f647f7eff3598a1b073b40285 /src/gallium/auxiliary/target-helpers | |
parent | 41f072a4f8fd3f3347789ee4186af0d4fcf69622 (diff) |
freedreno: add DRM_CONF_SHARE_FD
And config query and DRM_CONF_SHARE_FD to both mega-driver and
traditional build configs, so that EGL_EXT_image_dma_buf_import
works.
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/target-helpers')
-rw-r--r-- | src/gallium/auxiliary/target-helpers/inline_drm_helper.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/target-helpers/inline_drm_helper.h b/src/gallium/auxiliary/target-helpers/inline_drm_helper.h index dd55a71d10b..e6c6af58dd6 100644 --- a/src/gallium/auxiliary/target-helpers/inline_drm_helper.h +++ b/src/gallium/auxiliary/target-helpers/inline_drm_helper.h @@ -465,7 +465,7 @@ dd_configuration(enum drm_conf conf) #endif #if defined(GALLIUM_FREEDRENO) if ((strcmp(driver_name, "kgsl") == 0) || (strcmp(driver_name, "msm") == 0)) - return NULL; + return configuration_query(conf); else #endif return NULL; |