Skip to content
Snippets Groups Projects
Commit 3d9c1a9d authored by Stéphane Marchesin's avatar Stéphane Marchesin
Browse files

i915g: Fallback copy_render for ZS formats


These don't work out of the box, need more work, maybe with a proxy
format?

Signed-off-by: default avatarStéphane Marchesin <marcheu@chromium.org>
parent 90207340
No related branches found
No related tags found
No related merge requests found
......@@ -89,9 +89,19 @@ i915_surface_copy_render(struct pipe_context *pipe,
struct pipe_box dstbox;
struct pipe_sampler_view src_templ, *src_view;
struct pipe_surface dst_templ, *dst_view;
const struct util_format_description *desc;
/* Fallback for buffers. */
if ((dst->target == PIPE_BUFFER && src->target == PIPE_BUFFER))
if (dst->target == PIPE_BUFFER && src->target == PIPE_BUFFER)
goto fallback;
/* Fallback for depth&stencil. XXX: see if we can use a proxy format */
desc = util_format_description(src->format);
if (desc->colorspace == UTIL_FORMAT_COLORSPACE_ZS)
goto fallback;
desc = util_format_description(dst->format);
if (desc->colorspace == UTIL_FORMAT_COLORSPACE_ZS)
goto fallback;
util_blitter_default_dst_texture(&dst_templ, dst, dst_level, dstz);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment