clover: fix image resource depth and array_size
This commit is contained in:
@@ -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) {
|
||||
}
|
||||
|
||||
|
||||
@@ -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 |
|
||||
|
||||
Reference in New Issue
Block a user