All of lore.kernel.org
 help / color / mirror / Atom feed
* Application calling DRI2SwapBuffers twice without updating buffers
@ 2010-09-13  8:57 Pauli Nieminen
  2010-09-13 16:20 ` Jesse Barnes
  0 siblings, 1 reply; 2+ messages in thread
From: Pauli Nieminen @ 2010-09-13  8:57 UTC (permalink / raw)
  To: xorg-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW
  Cc: dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW

Hi,

It is possible for client to call DRI2SwapBuffers twice in row even tough
client should update back buffer in between. Problem is exposed when
application does stupid thing like:

renderScene();
glXSwapBuffers();
/* Might be long delay between but no rendering */
glXSwapBuffers();

glx and egl specifications don't say anything if driver may fail in this case.
Only relevant part is that the back will hold undefined content. Second swap
will results front buffer holding undefined content. Which makes me think that
specification makes above code application error only that shouldn't be
detected.

Is ddx driver allowed to fail the swap in this case?

There is some special case when application doesn't have any back buffer.
Hardware limitation forces driver to share buffers between applications. Too
bad sharing causes that new application might takes over the back buffer
between swaps.

The special case where there is no valid back for client because client
failed to render between swapbuffers has to fail either silently or with error.
I would prefer to return error that is mostly likely ignored by application.

Should driver fail all swaps that would result to the front buffer to have
completely undefined content?

There could be simple detection for the application trying to show random
content. This would catch a few trivial application errors that would cause
corruption in screen.

Detecting application errors (if it can be done cheaply) would help application
developers understand that their code is causing problems.

If driver is utilising invalidate events detection can't happen in server
side. 

Pauli
_______________________________________________
xorg-devel-go0+a7rfsptAfugRpC6u6w@public.gmane.org: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: http://lists.x.org/mailman/listinfo/xorg-devel

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-09-13 16:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-13  8:57 Application calling DRI2SwapBuffers twice without updating buffers Pauli Nieminen
2010-09-13 16:20 ` Jesse Barnes

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.