Mesa (master): clover: fix image resource depth and array_size

Zoltan Gilian zogi at kemper.freedesktop.org
Mon Aug 3 11:48:22 UTC 2015


Module: Mesa
Branch: master
Commit: aa46fba7e61a77bb3b029c7a483b5a2a2a73ff4d
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=aa46fba7e61a77bb3b029c7a483b5a2a2a73ff4d

Author: Zoltan Gilian <zoltan.gilian at gmail.com>
Date:   Mon Jul 27 11:27:12 2015 +0200

clover: fix image resource depth and array_size

---

 src/gallium/state_trackers/clover/core/memory.cpp   |    2 +-
 src/gallium/state_trackers/clover/core/resource.cpp |    1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/gallium/state_trackers/clover/core/memory.cpp b/src/gallium/state_trackers/clover/core/memory.cpp
index 055336a..b852e68 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 78ebafb..10a29a9 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 |




More information about the mesa-commit mailing list