[QXL PATCH v2 1/2] Make output name numbering 1-based

2018-11-13 Thread Jonathon Jongsma
that references a specific output name. But the same change was made in modesetting driver despite that possibility. Signed-off-by: Jonathon Jongsma Acked-by: Frediano Ziglio --- Changes in v2: - fix commit log -- not sure what went wrong there... src/qxl_drmmode.c | 3 +-- 1 file changed, 1

[QXL PATCH 0/2] Minor QXL patches

2018-11-12 Thread Jonathon Jongsma
to review and/or push the patches upstream. Thanks, Jonathon Jonathon Jongsma (2): Make output name numbering 0-based Make output names match modesetting driver src/qxl_drmmode.c | 38 -- 1 file changed, 20 insertions(+), 18 deletions(-) -- 2.17.2

[PATCH 1/2] Make output name numbering 0-based

2018-11-12 Thread Jonathon Jongsma
that references a specific output name. But the same change was made in modesetting driver despite that possibility. Signed-off-by: Jonathon Jongsma Acked-by: Frediano Ziglio --- src/qxl_drmmode.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/qxl_drmmode.c b/src

[PATCH 2/2] Make output names match modesetting driver

2018-11-12 Thread Jonathon Jongsma
less driver-specific special-case code if a user wants to match an xrandr output to a drm connector. Note that this patch should not actually change any behavior, since the QXL driver only uses the 'Virtual' connector type, so this is done only for consistency. Signed-off-by: Jonathon Jongsma Acked

Re: [Spice-devel] [QXL PATCH 1/2] Make output name numbering 0-based

2018-11-01 Thread Jonathon Jongsma
t effect custom xorg configurations that references > > a > > specific output name. But the same change was made in modesetting > > driver > > despite that possibility. > > > > Signed-off-by: Jonathon Jongsma > > --- > > src/qxl_drmmode.c | 3 +-

[QXL PATCH 1/2] Make output name numbering 0-based

2018-10-25 Thread Jonathon Jongsma
that references a specific output name. But the same change was made in modesetting driver despite that possibility. Signed-off-by: Jonathon Jongsma --- src/qxl_drmmode.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/qxl_drmmode.c b/src/qxl_drmmode.c index a2f84b1..a814859

[QXL PATCH 2/2] Make output names match modsetting driver

2018-10-25 Thread Jonathon Jongsma
driver-specific special-case code if a user wants to match an xrandr output to a drm connector. Note that this patch should not actually change any behavior, since the QXL driver only uses the 'Virtual' connector type, so this is done only for consistency. Signed-off-by: Jonathon Jongsma

Re: [Spice-devel] [PATCH] Update drm properties correctly

2014-11-07 Thread Jonathon Jongsma
On Thu, 2014-11-06 at 18:59 -0500, Marc-André Lureau wrote: - Original Message - When connector properties got changed, those changes were not being propagated to user-space. This pushes those chagnes up so that e.g. new suggested_x|y properties can be used to help lay out

[qxl PATCH v2] Update drm properties correctly

2014-11-07 Thread Jonathon Jongsma
When connector properties got changed, those changes were not being propagated to user-space. This pushes those chagnes up so that e.g. new suggested_x|y properties can be used to help lay out multiple displays properly. This code is based on similar code from the nouveau driver. --- Changes

[PATCH] Update drm properties correctly

2014-11-06 Thread Jonathon Jongsma
When connector properties got changed, those changes were not being propagated to user-space. This pushes those chagnes up so that e.g. new suggested_x|y properties can be used to help lay out multiple displays properly. This code is based on similar code from the nouveau driver. ---