diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_surface.c b/src/gallium/drivers/nouveau/nvc0/nvc0_surface.c index 120f9fe6ab9..03881c62785 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_surface.c +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_surface.c @@ -1617,6 +1617,10 @@ nvc0_blit(struct pipe_context *pipe, const struct pipe_blit_info *info) else if (util_format_is_alpha(info->src.format)) eng3d = info->src.format != PIPE_FORMAT_A8_UNORM; + else + if (util_format_is_srgb(info->dst.format) && + util_format_get_nr_components(info->src.format) == 1) + eng3d = true; else eng3d = !nv50_2d_format_supported(info->src.format); }