From: Eric Anholt Date: Sun, 21 Dec 2014 20:48:59 +0000 (-0800) Subject: gallium: Plumb the swap INVALIDATE_ANCILLARY flag through more layers. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=239db93888a75a03cf52910f596c1184746eaebd;p=mesa.git gallium: Plumb the swap INVALIDATE_ANCILLARY flag through more layers. v2: Instead of telling the driver that the window system ancillaries have been invalidated (when the driver doesn't know which of its buffers are the window system's!), introduce a method for invalidating specific surfaces. Reviewed-by: Jose Fonseca --- diff --git a/src/gallium/include/pipe/p_context.h b/src/gallium/include/pipe/p_context.h index af5674ff753..a4cae8eaf63 100644 --- a/src/gallium/include/pipe/p_context.h +++ b/src/gallium/include/pipe/p_context.h @@ -551,6 +551,17 @@ struct pipe_context { */ void (*flush_resource)(struct pipe_context *ctx, struct pipe_resource *resource); + + /** + * Invalidate the contents of the resource. + * + * This is used to implement EGL's semantic of undefined depth/stencil + * contenst after a swapbuffers. This allows a tiled renderer (for + * example) to not store the depth buffer. + */ + void (*invalidate_resource)(struct pipe_context *ctx, + struct pipe_resource *resource); + }; diff --git a/src/gallium/state_trackers/dri/dri_drawable.c b/src/gallium/state_trackers/dri/dri_drawable.c index b7df053594c..eda2d5232c5 100644 --- a/src/gallium/state_trackers/dri/dri_drawable.c +++ b/src/gallium/state_trackers/dri/dri_drawable.c @@ -484,6 +484,12 @@ dri_flush(__DRIcontext *cPriv, } pipe->flush_resource(pipe, drawable->textures[ST_ATTACHMENT_BACK_LEFT]); + + if (pipe->invalidate_resource && + (flags & __DRI2_FLUSH_INVALIDATE_ANCILLARY)) { + pipe->invalidate_resource(pipe, drawable->textures[ST_ATTACHMENT_DEPTH_STENCIL]); + pipe->invalidate_resource(pipe, drawable->msaa_textures[ST_ATTACHMENT_DEPTH_STENCIL]); + } } flush_flags = 0;