commit | a3429c7a360e2987bf68764740bb7bfc3a255d29 | [log] [tgz] |
---|---|---|
author | John Stultz <john.stultz@linaro.org> | Tue Mar 26 21:11:31 2019 -0700 |
committer | John Stultz <john.stultz@linaro.org> | Thu Mar 28 15:17:02 2019 -0700 |
tree | 0044474e6fbccb3da58d3f3d98caade740746f71 | |
parent | 2d8341e8a6e9f6dde388951c06f173aa0c18d75b [diff] |
drm_hwcomposer: Tweak mode selection to pick the first DRM_MODE_TYPE_PREFERRED mode With commit 1b1e35eb ("drm_hwcomposer: Chose preferred mode with type DRM_MODE_TYPE_PREFERRED"), we now pick a preferred mode rather then just the first mode to use. However, on some systems there may erroniously be multiple modes marked as DRM_MODE_TYPE_PREFERRED. In this case, the logic added in that commit ends up selecting the *last* preferred mode. This seems less likely to be the desired choice, compared to what we had before (which picked first mode provided). So this patch alters the selection logic to only use the first DRM_MODE_TYPE_PREFERRED mode found, rather than the last. Change-Id: Ieb3e5d946b96099f14c1c5a287ca8113360a39d1 Signed-off-by: John Stultz <john.stultz@linaro.org>
Patches to drm_hwcomposer are very much welcome, we really want this to be the universal HW composer implementation for Android and similar platforms So please bring on porting patches, bugfixes, improvements for documentation and new features.
A short list of contribution guidelines:
Submit changes via gitlab merge requests on gitlab.freedesktop.org
drm_hwcomposer is Apache 2.0 Licensed and we require contributions to follow the developer's certificate of origin: http://developercertificate.org/
When submitting new code please follow the naming conventions documented in the generated documentation. Also please make full use of all the helpers and convenience macros provided by drm_hwcomposer. The below command can help you with formatting of your patches:
`git diff | clang-format-diff-5.0 -p 1 -style=file`
Hardware specific changes should be tested on relevant platforms before committing.
If you need inspiration, please checkout our TODO issues
Happy hacking!