diff options
author | Eric Anholt <[email protected]> | 2014-10-02 22:14:03 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2014-10-19 08:42:33 +0100 |
commit | 572fba95e4cd85aebdde9bd757c17f719af2af04 (patch) | |
tree | 9a8e72c55c67b4a9190e9812ab3e38fc98d5a462 /src/gallium/drivers/vc4/vc4_context.c | |
parent | 15eb4c59f6504473989e6a064fda11d6c009ed8f (diff) |
vc4: Add support for rebasing texture levels so firstlevel == 0.
GLES2 doesn't have GL_TEXTURE_BASE_LEVEL, so the hardware doesn't. Fixes
piglit levelclamp, tex-miplevel-selection, and texture-storage/2D mipmap
rendering.
Diffstat (limited to 'src/gallium/drivers/vc4/vc4_context.c')
-rw-r--r-- | src/gallium/drivers/vc4/vc4_context.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/drivers/vc4/vc4_context.c b/src/gallium/drivers/vc4/vc4_context.c index cc57486e103..87f025142ce 100644 --- a/src/gallium/drivers/vc4/vc4_context.c +++ b/src/gallium/drivers/vc4/vc4_context.c @@ -253,6 +253,12 @@ vc4_setup_rcl(struct vc4_context *vc4) assert(!coords_emitted); } } + + if (vc4->resolve & PIPE_CLEAR_COLOR0) + ctex->writes++; + + if (vc4->resolve & (PIPE_CLEAR_DEPTH | PIPE_CLEAR_STENCIL)) + ztex->writes++; } void |