[Intel-gfx] [PATCH i-g-t v3 6/6] kms_panel_fitting: Enable connectors with "scaling mode" property set.
Jani Nikula
jani.nikula at linux.intel.com
Wed Apr 27 08:32:12 UTC 2016
On Tue, 26 Apr 2016, robert.foss at collabora.com wrote:
> From: Robert Foss <robert.foss at collabora.com>
>
> Enable testing on all connectors that have the "scaling mode"
> property set.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=93012
>
> Signed-off-by: Robert Foss <robert.foss at collabora.com>
> ---
> tests/kms_panel_fitting.c | 18 +++++++++++++++---
> 1 file changed, 15 insertions(+), 3 deletions(-)
>
> diff --git a/tests/kms_panel_fitting.c b/tests/kms_panel_fitting.c
> index 272a531..de27803 100644
> --- a/tests/kms_panel_fitting.c
> +++ b/tests/kms_panel_fitting.c
> @@ -139,9 +139,21 @@ static void test_panel_fitting(data_t *d)
>
> for_each_connected_output(display, output) {
> drmModeModeInfo *mode, native_mode;
> -
> - if (output->config.connector->connector_type !=
> - DRM_MODE_CONNECTOR_eDP)
> + uint32_t prop_id;
> + uint64_t prop_value;
> + drmModePropertyPtr prop_ptr;
> + bool scaling_mode_set;
> +
> + scaling_mode_set = kmstest_get_property(d->drm_fd,
> + output->config.connector->connector_id,
> + DRM_MODE_OBJECT_CONNECTOR,
> + "scaling mode",
> + &prop_id,
> + &prop_value,
> + &prop_ptr);
> +
> + /* Check that the "scaling mode" property has been set. */
> + if (!scaling_mode_set)
> continue;
>
> pipe = output->config.pipe;
--
Jani Nikula, Intel Open Source Technology Center
More information about the Intel-gfx
mailing list