diff options
author | Benjamin Franzke <[email protected]> | 2012-03-27 18:50:30 +0200 |
---|---|---|
committer | Benjamin Franzke <[email protected]> | 2012-03-27 18:51:53 +0200 |
commit | ad22e647e07d17ce51d267ac200d8a544a33c834 (patch) | |
tree | 2ebac116eeb2a1eeb148d5d23413f66455753c53 | |
parent | 60b58822f0d8d07cab479ef4611029613ce2f174 (diff) |
st/egl: Also remove wl_buffer_damage in wayland backend
As commit 03eca9d92d407c71a59ff8a43067759769da0ae4 does for egl_dri2.
-rw-r--r-- | src/gallium/state_trackers/egl/wayland/native_wayland.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/egl/wayland/native_wayland.c b/src/gallium/state_trackers/egl/wayland/native_wayland.c index dfaa50f1a8a..a7f9cb7150b 100644 --- a/src/gallium/state_trackers/egl/wayland/native_wayland.c +++ b/src/gallium/state_trackers/egl/wayland/native_wayland.c @@ -348,7 +348,6 @@ wayland_surface_present(struct native_surface *nsurf, if (surface->type == WL_WINDOW_SURFACE) { resource_surface_get_size(surface->rsurf, &width, &height); - wl_buffer_damage(surface->buffer[WL_BUFFER_FRONT], 0, 0, width, height); wl_surface_damage(surface->win->surface, 0, 0, width, height); } |