Just because we don't have the format codes to render to them yet.
Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
bool is_2d = res->depth0 == 1 && res->array_size == 1;
bool is_streaming = (res->usage != PIPE_USAGE_STREAM);
- bool should_tile = is_streaming && is_texture && is_2d;
+ /* TODO: Reenable tiling on SFBD systems when we support rendering to
+ * tiled formats with SFBD */
+ bool should_tile = is_streaming && is_texture && is_2d && !screen->require_sfbd;
/* Depth/stencil can't be tiled, only linear or AFBC */
should_tile &= !(res->bind & PIPE_BIND_DEPTH_STENCIL);