From: "Fredrik Höglund" <fredrik@kde.org>
To: xorg-devel@lists.x.org
Cc: mesa-dev@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Subject: Re: [xorg 2/3] dri2: Pass swap-interval=0 ScheduleSwap requests to the ddx
Date: Wed, 18 Feb 2015 20:57:47 +0100 [thread overview]
Message-ID: <201502182057.47510.fredrik@kde.org> (raw)
In-Reply-To: <1421665245-5994-4-git-send-email-chris@chris-wilson.co.uk>
On Monday 19 January 2015, Chris Wilson wrote:
> Allow the DDXes to opt-in and handle swap-interval=0 requests for
> themselves, for example by using asynchronous pageflips, rather than
> forcing a blit. This has the important side-effect of also
> disambiguating CopyRegion calls to always be client requests.
>
> References: http://lists.x.org/archives/xorg-devel/2011-June/023102.html
> References: http://lists.x.org/archives/xorg-devel/2012-February/029336.html
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> ---
> hw/xfree86/dri2/dri2.c | 14 ++++++++++----
> hw/xfree86/dri2/dri2.h | 5 ++++-
> 2 files changed, 14 insertions(+), 5 deletions(-)
>
> diff --git a/hw/xfree86/dri2/dri2.c b/hw/xfree86/dri2/dri2.c
> index f9f594d..2c0367e 100644
> --- a/hw/xfree86/dri2/dri2.c
> +++ b/hw/xfree86/dri2/dri2.c
> @@ -114,6 +114,7 @@ typedef struct _DRI2Screen {
> int fd;
> unsigned int lastSequence;
> int prime_id;
> + int scheduleSwap0;
>
> DRI2CreateBufferProcPtr CreateBuffer;
> DRI2DestroyBufferProcPtr DestroyBuffer;
> @@ -1116,8 +1117,8 @@ DRI2SwapBuffers(ClientPtr client, DrawablePtr pDraw, CARD64 target_msc,
> return BadDrawable;
> }
>
> - /* Old DDX or no swap interval, just blit */
> - if (!ds->ScheduleSwap || !pPriv->swap_interval || pPriv->prime_id) {
> + /* Old DDX or PRIME, just blit */
> + if (!ds->scheduleSwap0 || pPriv->prime_id) {
I've been testing these patches with the radeon driver, and happened to
notice that it never pageflips. I think this line needs to be changed to
something along the lines of:
if (!ds->ScheduleSwap || (pPriv->swap_interval == 0 && !ds->scheduleSwap0) || pPriv->prime_id)
> BoxRec box;
> RegionRec region;
>
> @@ -1139,7 +1140,9 @@ DRI2SwapBuffers(ClientPtr client, DrawablePtr pDraw, CARD64 target_msc,
> * In the simple glXSwapBuffers case, all params will be 0, and we just
> * need to schedule a swap for the last swap target + the swap interval.
> */
> - if (target_msc == 0 && divisor == 0 && remainder == 0) {
> + if (pPriv->swap_interval == 0) {
> + target_msc = 0;
> + } else if (target_msc == 0 && divisor == 0 && remainder == 0) {
> /* If the current vblank count of the drawable's crtc is lower
> * than the count stored in last_swap_target from a previous swap
> * then reinitialize last_swap_target to the current crtc's msc,
> @@ -1162,7 +1165,6 @@ DRI2SwapBuffers(ClientPtr client, DrawablePtr pDraw, CARD64 target_msc,
> * number of pending swaps.
> */
> target_msc = pPriv->last_swap_target + pPriv->swap_interval;
> -
> }
>
> pPriv->swapsPending++;
> @@ -1558,6 +1560,10 @@ DRI2ScreenInit(ScreenPtr pScreen, DRI2InfoPtr info)
> ds->CopyRegion2 = info->CopyRegion2;
> }
>
> + if (info->version >= 10) {
> + ds->scheduleSwap0 = info->scheduleSwap0;
> + }
> +
> /*
> * if the driver doesn't provide an AuthMagic function or the info struct
> * version is too low, call through LegacyAuthMagic
> diff --git a/hw/xfree86/dri2/dri2.h b/hw/xfree86/dri2/dri2.h
> index 1e7afdd..1cf4288 100644
> --- a/hw/xfree86/dri2/dri2.h
> +++ b/hw/xfree86/dri2/dri2.h
> @@ -205,7 +205,7 @@ typedef int (*DRI2GetParamProcPtr) (ClientPtr client,
> /**
> * Version of the DRI2InfoRec structure defined in this header
> */
> -#define DRI2INFOREC_VERSION 9
> +#define DRI2INFOREC_VERSION 10
>
> typedef struct {
> unsigned int version; /**< Version of this struct */
> @@ -252,6 +252,9 @@ typedef struct {
> DRI2CreateBuffer2ProcPtr CreateBuffer2;
> DRI2DestroyBuffer2ProcPtr DestroyBuffer2;
> DRI2CopyRegion2ProcPtr CopyRegion2;
> +
> + /* added in version 10 */
> + int scheduleSwap0;
> } DRI2InfoRec, *DRI2InfoPtr;
>
> extern _X_EXPORT Bool DRI2ScreenInit(ScreenPtr pScreen, DRI2InfoPtr info);
>
_______________________________________________
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/mesa-dev
next prev parent reply other threads:[~2015-02-18 19:57 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-19 11:00 Implement GLX_EXT_buffer_age for DRI2 Chris Wilson
[not found] ` <1421665245-5994-1-git-send-email-chris-Y6uKTt2uX1cEflXRtASbqLVCufUGDwFn@public.gmane.org>
2015-01-19 11:00 ` [dri2proto] Declare DRI2ParamXHasBufferAge Chris Wilson
[not found] ` <1421665245-5994-2-git-send-email-chris-Y6uKTt2uX1cEflXRtASbqLVCufUGDwFn@public.gmane.org>
2015-01-20 20:53 ` [Mesa-dev] " Ian Romanick
2015-06-16 12:25 ` Martin Peres
2015-01-19 11:00 ` [xorg 1/3] dri2: Allow GetBuffers to match any format Chris Wilson
2015-01-20 20:49 ` [Mesa-dev] " Ian Romanick
2015-06-16 13:11 ` Martin Peres
2015-01-19 11:00 ` [xorg 2/3] dri2: Pass swap-interval=0 ScheduleSwap requests to the ddx Chris Wilson
2015-02-18 19:57 ` Fredrik Höglund [this message]
2015-01-19 11:00 ` [xorg 3/3] dri2: Reuse unused flags in GetBuffers protocol to pass last SBC Chris Wilson
2015-01-19 14:14 ` Chris Wilson
2015-01-19 14:29 ` [PATCH v2] " Chris Wilson
2015-01-20 21:55 ` Ian Romanick
2015-01-19 11:00 ` [xf86-video-ati] dri2: Enable BufferAge support Chris Wilson
2015-01-20 16:47 ` Alex Deucher
2015-01-19 11:00 ` [xf86-video-nouveau] " Chris Wilson
[not found] ` <1421665245-5994-7-git-send-email-chris-Y6uKTt2uX1cEflXRtASbqLVCufUGDwFn@public.gmane.org>
2015-05-09 4:41 ` Mario Kleiner
2015-01-19 11:00 ` [mesa 7/9] glx/dri2: Add DRI2GetParam() Chris Wilson
[not found] ` <1421665245-5994-8-git-send-email-chris-Y6uKTt2uX1cEflXRtASbqLVCufUGDwFn@public.gmane.org>
2015-01-20 19:11 ` [Mesa-dev] " Ian Romanick
2015-01-19 11:00 ` [mesa 8/9] glx/dri2: Move the wait after SwapBuffers into the next GetBuffers Chris Wilson
2015-01-20 20:03 ` Ian Romanick
2015-01-19 11:00 ` [mesa 9/9] glx/dri2: Implement getBufferAge Chris Wilson
2015-01-20 20:35 ` Ian Romanick
[not found] ` <54BEBBF9.8010104-CC+yJ3UmIYqDUpFQwHEjaQ@public.gmane.org>
2015-01-20 20:49 ` [Mesa-dev] " Ian Romanick
2015-01-20 21:49 ` Implement GLX_EXT_buffer_age for DRI2 Dave Airlie
2015-02-18 18:40 ` [Mesa-dev] " Daniel Stone
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=201502182057.47510.fredrik@kde.org \
--to=fredrik@kde.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=mesa-dev@lists.freedesktop.org \
--cc=xorg-devel@lists.x.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox