From: Zoltan Gilian Date: Mon, 27 Jul 2015 09:27:12 +0000 (+0200) Subject: clover: fix image resource depth and array_size X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=aa46fba7e61a77bb3b029c7a483b5a2a2a73ff4d;p=mesa.git clover: fix image resource depth and array_size --- diff --git a/src/gallium/state_trackers/clover/core/memory.cpp b/src/gallium/state_trackers/clover/core/memory.cpp index 055336a3325..b852e6896fe 100644 --- a/src/gallium/state_trackers/clover/core/memory.cpp +++ b/src/gallium/state_trackers/clover/core/memory.cpp @@ -189,7 +189,7 @@ image2d::image2d(clover::context &ctx, cl_mem_flags flags, const cl_image_format *format, size_t width, size_t height, size_t row_pitch, void *host_ptr) : - image(ctx, flags, format, width, height, 0, + image(ctx, flags, format, width, height, 1, row_pitch, 0, height * row_pitch, host_ptr) { } diff --git a/src/gallium/state_trackers/clover/core/resource.cpp b/src/gallium/state_trackers/clover/core/resource.cpp index 78ebafb644f..10a29a94eac 100644 --- a/src/gallium/state_trackers/clover/core/resource.cpp +++ b/src/gallium/state_trackers/clover/core/resource.cpp @@ -132,6 +132,7 @@ root_resource::root_resource(clover::device &dev, memory_obj &obj, info.depth0 = 1; } + info.array_size = 1; info.target = translate_target(obj.type()); info.bind = (PIPE_BIND_SAMPLER_VIEW | PIPE_BIND_COMPUTE_RESOURCE |