summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTopi Pohjolainen <[email protected]>2017-06-29 17:03:01 +0300
committerTopi Pohjolainen <[email protected]>2017-07-18 21:36:13 +0300
commitf23599fa5b6ae36c52455ea021472d18897c4e0c (patch)
treefb0f6e4654179364a9f7ff04b0310a8b4e517501 /src
parentd401bd3e8fc26be9966375f345e496c103f70c3c (diff)
i965/miptree: Add pitch override for imported buffer objects
Reviewed-by: Jason Ekstrand <[email protected]> Signed-off-by: Topi Pohjolainen <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/mesa/drivers/dri/i965/intel_mipmap_tree.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
index cefe33f84b9..59833f89631 100644
--- a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
+++ b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
@@ -738,7 +738,7 @@ make_surface(struct brw_context *brw, GLenum target, mesa_format format,
unsigned width0, unsigned height0, unsigned depth0,
unsigned num_samples, enum isl_tiling isl_tiling,
isl_surf_usage_flags_t isl_usage_flags, uint32_t alloc_flags,
- struct brw_bo *bo)
+ unsigned row_pitch, struct brw_bo *bo)
{
struct intel_mipmap_tree *mt = calloc(sizeof(*mt), 1);
if (!mt)
@@ -772,6 +772,7 @@ make_surface(struct brw_context *brw, GLenum target, mesa_format format,
.levels = last_level - first_level + 1,
.array_len = target == GL_TEXTURE_3D ? 1 : depth0,
.samples = MAX2(num_samples, 1),
+ .row_pitch = row_pitch,
.usage = isl_usage_flags,
.tiling_flags = 1u << isl_tiling
};
@@ -822,7 +823,7 @@ miptree_create(struct brw_context *brw,
width0, height0, depth0, num_samples, ISL_TILING_W,
ISL_SURF_USAGE_STENCIL_BIT |
ISL_SURF_USAGE_TEXTURE_BIT,
- BO_ALLOC_FOR_RENDER, NULL);
+ BO_ALLOC_FOR_RENDER, 0, NULL);
struct intel_mipmap_tree *mt;
mesa_format tex_format = format;
@@ -946,7 +947,7 @@ intel_miptree_create_for_bo(struct brw_context *brw,
0, 0, width, height, depth, 1, ISL_TILING_W,
ISL_SURF_USAGE_STENCIL_BIT |
ISL_SURF_USAGE_TEXTURE_BIT,
- BO_ALLOC_FOR_RENDER, bo);
+ BO_ALLOC_FOR_RENDER, pitch, bo);
if (!mt)
return NULL;