[Mesa-dev] [PATCH 16/23] i965/gen9: Use _mesa_meta_pbo_TexSubImage to upload data to YF/YS tiled surfaces
Anuj Phogat
anuj.phogat at gmail.com
Mon Mar 30 14:04:47 PDT 2015
No other path currently supports uploading data to these surfaces.
Signed-off-by: Anuj Phogat <anuj.phogat at gmail.com>
---
src/mesa/drivers/dri/i965/intel_tex_image.c | 24 ++++++++++++++++++++++--
1 file changed, 22 insertions(+), 2 deletions(-)
diff --git a/src/mesa/drivers/dri/i965/intel_tex_image.c b/src/mesa/drivers/dri/i965/intel_tex_image.c
index 31cbabe..03db100 100644
--- a/src/mesa/drivers/dri/i965/intel_tex_image.c
+++ b/src/mesa/drivers/dri/i965/intel_tex_image.c
@@ -93,8 +93,10 @@ intelTexImage(struct gl_context * ctx,
const struct gl_pixelstore_attrib *unpack)
{
struct intel_texture_image *intelImage = intel_texture_image(texImage);
+ struct brw_context *brw = brw_context(ctx);
bool ok;
-
+ bool create_pbo = false;
+ uint32_t tr_mode = INTEL_MIPTREE_TRMODE_NONE;
bool tex_busy = intelImage->mt && drm_intel_bo_busy(intelImage->mt->bo);
DBG("%s mesa_format %s target %s format %s type %s level %d %dx%dx%d\n",
@@ -111,15 +113,33 @@ intelTexImage(struct gl_context * ctx,
assert(intelImage->mt);
+ if (brw->gen >= 9) {
+ tr_mode = intelImage->mt->tr_mode;
+
+ /* Set create_pbo = true for surfaces with INTEL_MIPTREE_TRMODE_{YF/YS}.
+ * _mesa_meta_pbo_TexSubImage() is the only working path to upload data
+ * to such surfaces.
+ */
+ create_pbo = tex_busy || (intelImage->mt &&
+ intelImage->mt->tr_mode != INTEL_MIPTREE_TRMODE_NONE);
+ } else {
+ create_pbo = tex_busy;
+ }
+
ok = _mesa_meta_pbo_TexSubImage(ctx, dims, texImage, 0, 0, 0,
texImage->Width, texImage->Height,
texImage->Depth,
format, type, pixels,
false /*allocate_storage*/,
- tex_busy, unpack);
+ create_pbo, unpack);
if (ok)
return;
+ /* Currently there are no fallback paths to upload data to surfaces with
+ * tr_mode != INTEL_MIPTREE_TRMODE_NONE.
+ */
+ assert(tr_mode == INTEL_MIPTREE_TRMODE_NONE);
+
ok = intel_texsubimage_tiled_memcpy(ctx, dims, texImage,
0, 0, 0, /*x,y,z offsets*/
texImage->Width,
--
2.3.4
More information about the mesa-dev
mailing list