OSDN Git Service

gallium/dri: Handle xserver that doesn't send needless DRI2 invalidate events
authorVille Syrjala <syrjala@sci.fi>
Wed, 1 Feb 2012 03:10:04 +0000 (05:10 +0200)
committerDave Airlie <airlied@redhat.com>
Fri, 3 Feb 2012 12:02:58 +0000 (12:02 +0000)
commit0fcc518964223d9baaa2b45e80afeb800beb872f
treeed38fcb298962f050cd00c811d75f8a153e561f9
parent57e44371a5b6aa8122b6a482ed6bd33e797ea1d2
gallium/dri: Handle xserver that doesn't send needless DRI2 invalidate events

Ever since xserver commit 531869448d07e00ae241120b59f3aaaa5709d59c,
the server no longer sends invalidate events to clients, unless they
have performed a GetBuffers request since the drawable was last
invalidated.

If the drawable gets invalidated immediately after the GetBuffers
request was processed by the X server, it's possible that Xlib
will process the invalidate event while waiting for the GetBuffers
reply. So the server, thinking the client knows that the buffers
are invalid, is waiting for another GetBuffers request before
sending any more invalidate events. The client, on the other hand,
believes the buffers to be valid, and thus is expecting to receive
another invalidate event before it has to send another GetBuffers
request. The end result is that the client never again sends
a GetBuffers request.

To avoid this problem, take a snapshot of the lastStamp before
doing GetBuffers, and retry if the snapshot and the current
lastStamp no longer match after the GetBuffers reply has been
processed.

Signed-off-by: Ville Syrjälä <syrjala@sci.fi>
Signed-off-by: Dave Airlie <airlied@redhat.com>
src/gallium/state_trackers/dri/common/dri_drawable.c