mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-22 04:28:10 +02:00
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36314>
1179 lines
45 KiB
C
1179 lines
45 KiB
C
/*
|
|
* Copyright © 2016 Red Hat.
|
|
* Copyright © 2016 Bas Nieuwenhuizen
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#include "nir/radv_meta_nir.h"
|
|
#include "radv_entrypoints.h"
|
|
#include "radv_formats.h"
|
|
#include "radv_meta.h"
|
|
#include "vk_shader_module.h"
|
|
|
|
/*
|
|
* GFX queue: Compute shader implementation of image->buffer copy
|
|
* Compute queue: implementation also of buffer->image, image->image, and image clear.
|
|
*/
|
|
|
|
static VkResult
|
|
get_itob_pipeline_layout(struct radv_device *device, VkPipelineLayout *layout_out)
|
|
{
|
|
enum radv_meta_object_key_type key = RADV_META_OBJECT_KEY_COPY_IMAGE_TO_BUFFER;
|
|
|
|
const VkDescriptorSetLayoutBinding bindings[] = {
|
|
{
|
|
.binding = 0,
|
|
.descriptorType = VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE,
|
|
.descriptorCount = 1,
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
},
|
|
{
|
|
.binding = 1,
|
|
.descriptorType = VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER,
|
|
.descriptorCount = 1,
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
},
|
|
};
|
|
|
|
const VkDescriptorSetLayoutCreateInfo desc_info = {
|
|
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO,
|
|
.flags = VK_DESCRIPTOR_SET_LAYOUT_CREATE_PUSH_DESCRIPTOR_BIT,
|
|
.bindingCount = 2,
|
|
.pBindings = bindings,
|
|
};
|
|
|
|
const VkPushConstantRange pc_range = {
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
.size = 16,
|
|
};
|
|
|
|
return vk_meta_get_pipeline_layout(&device->vk, &device->meta_state.device, &desc_info, &pc_range, &key, sizeof(key),
|
|
layout_out);
|
|
}
|
|
|
|
struct radv_copy_buffer_image_key {
|
|
enum radv_meta_object_key_type type;
|
|
bool is_3d;
|
|
};
|
|
|
|
static VkResult
|
|
get_itob_pipeline(struct radv_device *device, const struct radv_image *image, VkPipeline *pipeline_out,
|
|
VkPipelineLayout *layout_out)
|
|
{
|
|
const bool is_3d = image->vk.image_type == VK_IMAGE_TYPE_3D;
|
|
struct radv_copy_buffer_image_key key;
|
|
VkResult result;
|
|
|
|
result = get_itob_pipeline_layout(device, layout_out);
|
|
if (result != VK_SUCCESS)
|
|
return result;
|
|
|
|
memset(&key, 0, sizeof(key));
|
|
key.type = RADV_META_OBJECT_KEY_COPY_IMAGE_TO_BUFFER;
|
|
key.is_3d = is_3d;
|
|
|
|
VkPipeline pipeline_from_cache = vk_meta_lookup_pipeline(&device->meta_state.device, &key, sizeof(key));
|
|
if (pipeline_from_cache != VK_NULL_HANDLE) {
|
|
*pipeline_out = pipeline_from_cache;
|
|
return VK_SUCCESS;
|
|
}
|
|
|
|
nir_shader *cs = radv_meta_nir_build_itob_compute_shader(device, is_3d);
|
|
|
|
const VkPipelineShaderStageCreateInfo stage_info = {
|
|
.sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO,
|
|
.stage = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
.module = vk_shader_module_handle_from_nir(cs),
|
|
.pName = "main",
|
|
.pSpecializationInfo = NULL,
|
|
};
|
|
|
|
const VkComputePipelineCreateInfo pipeline_info = {
|
|
.sType = VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO,
|
|
.stage = stage_info,
|
|
.flags = 0,
|
|
.layout = *layout_out,
|
|
};
|
|
|
|
result = vk_meta_create_compute_pipeline(&device->vk, &device->meta_state.device, &pipeline_info, &key, sizeof(key),
|
|
pipeline_out);
|
|
|
|
ralloc_free(cs);
|
|
return result;
|
|
}
|
|
|
|
static VkResult
|
|
get_btoi_pipeline_layout(struct radv_device *device, VkPipelineLayout *layout_out)
|
|
{
|
|
enum radv_meta_object_key_type key = RADV_META_OBJECT_KEY_COPY_BUFFER_TO_IMAGE;
|
|
|
|
const VkDescriptorSetLayoutBinding bindings[] = {
|
|
{
|
|
.binding = 0,
|
|
.descriptorType = VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER,
|
|
.descriptorCount = 1,
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
},
|
|
{
|
|
.binding = 1,
|
|
.descriptorType = VK_DESCRIPTOR_TYPE_STORAGE_IMAGE,
|
|
.descriptorCount = 1,
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
},
|
|
};
|
|
|
|
const VkDescriptorSetLayoutCreateInfo desc_info = {
|
|
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO,
|
|
.flags = VK_DESCRIPTOR_SET_LAYOUT_CREATE_PUSH_DESCRIPTOR_BIT,
|
|
.bindingCount = 2,
|
|
.pBindings = bindings,
|
|
};
|
|
|
|
const VkPushConstantRange pc_range = {
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
.size = 16,
|
|
};
|
|
|
|
return vk_meta_get_pipeline_layout(&device->vk, &device->meta_state.device, &desc_info, &pc_range, &key, sizeof(key),
|
|
layout_out);
|
|
}
|
|
|
|
static VkResult
|
|
get_btoi_pipeline(struct radv_device *device, const struct radv_image *image, VkPipeline *pipeline_out,
|
|
VkPipelineLayout *layout_out)
|
|
{
|
|
const bool is_3d = image->vk.image_type == VK_IMAGE_TYPE_3D;
|
|
struct radv_copy_buffer_image_key key;
|
|
VkResult result;
|
|
|
|
result = get_btoi_pipeline_layout(device, layout_out);
|
|
if (result != VK_SUCCESS)
|
|
return result;
|
|
|
|
memset(&key, 0, sizeof(key));
|
|
key.type = RADV_META_OBJECT_KEY_COPY_BUFFER_TO_IMAGE;
|
|
key.is_3d = is_3d;
|
|
|
|
VkPipeline pipeline_from_cache = vk_meta_lookup_pipeline(&device->meta_state.device, &key, sizeof(key));
|
|
if (pipeline_from_cache != VK_NULL_HANDLE) {
|
|
*pipeline_out = pipeline_from_cache;
|
|
return VK_SUCCESS;
|
|
}
|
|
|
|
nir_shader *cs = radv_meta_nir_build_btoi_compute_shader(device, is_3d);
|
|
|
|
const VkPipelineShaderStageCreateInfo stage_info = {
|
|
.sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO,
|
|
.stage = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
.module = vk_shader_module_handle_from_nir(cs),
|
|
.pName = "main",
|
|
.pSpecializationInfo = NULL,
|
|
};
|
|
|
|
const VkComputePipelineCreateInfo pipeline_info = {
|
|
.sType = VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO,
|
|
.stage = stage_info,
|
|
.flags = 0,
|
|
.layout = *layout_out,
|
|
};
|
|
|
|
result = vk_meta_create_compute_pipeline(&device->vk, &device->meta_state.device, &pipeline_info, &key, sizeof(key),
|
|
pipeline_out);
|
|
|
|
ralloc_free(cs);
|
|
return result;
|
|
}
|
|
|
|
static VkResult
|
|
get_btoi_r32g32b32_pipeline(struct radv_device *device, VkPipeline *pipeline_out, VkPipelineLayout *layout_out)
|
|
{
|
|
enum radv_meta_object_key_type key = RADV_META_OBJECT_KEY_COPY_BUFFER_TO_IMAGE_R32G32B32;
|
|
VkResult result;
|
|
|
|
const VkDescriptorSetLayoutBinding bindings[] = {
|
|
{
|
|
.binding = 0,
|
|
.descriptorType = VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER,
|
|
.descriptorCount = 1,
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
},
|
|
{
|
|
.binding = 1,
|
|
.descriptorType = VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER,
|
|
.descriptorCount = 1,
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
},
|
|
};
|
|
|
|
const VkDescriptorSetLayoutCreateInfo desc_info = {
|
|
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO,
|
|
.flags = VK_DESCRIPTOR_SET_LAYOUT_CREATE_PUSH_DESCRIPTOR_BIT,
|
|
.bindingCount = 2,
|
|
.pBindings = bindings,
|
|
};
|
|
|
|
const VkPushConstantRange pc_range = {
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
.size = 16,
|
|
};
|
|
|
|
result = vk_meta_get_pipeline_layout(&device->vk, &device->meta_state.device, &desc_info, &pc_range, &key,
|
|
sizeof(key), layout_out);
|
|
if (result != VK_SUCCESS)
|
|
return result;
|
|
|
|
VkPipeline pipeline_from_cache = vk_meta_lookup_pipeline(&device->meta_state.device, &key, sizeof(key));
|
|
if (pipeline_from_cache != VK_NULL_HANDLE) {
|
|
*pipeline_out = pipeline_from_cache;
|
|
return VK_SUCCESS;
|
|
}
|
|
|
|
nir_shader *cs = radv_meta_nir_build_btoi_r32g32b32_compute_shader(device);
|
|
|
|
const VkPipelineShaderStageCreateInfo stage_info = {
|
|
.sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO,
|
|
.stage = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
.module = vk_shader_module_handle_from_nir(cs),
|
|
.pName = "main",
|
|
.pSpecializationInfo = NULL,
|
|
};
|
|
|
|
const VkComputePipelineCreateInfo pipeline_info = {
|
|
.sType = VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO,
|
|
.stage = stage_info,
|
|
.flags = 0,
|
|
.layout = *layout_out,
|
|
};
|
|
|
|
result = vk_meta_create_compute_pipeline(&device->vk, &device->meta_state.device, &pipeline_info, &key, sizeof(key),
|
|
pipeline_out);
|
|
|
|
ralloc_free(cs);
|
|
return result;
|
|
}
|
|
|
|
static VkResult
|
|
get_itoi_pipeline_layout(struct radv_device *device, VkPipelineLayout *layout_out)
|
|
{
|
|
enum radv_meta_object_key_type key = RADV_META_OBJECT_KEY_COPY_IMAGE;
|
|
|
|
const VkDescriptorSetLayoutBinding bindings[] = {
|
|
{
|
|
.binding = 0,
|
|
.descriptorType = VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE,
|
|
.descriptorCount = 1,
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
},
|
|
{
|
|
.binding = 1,
|
|
.descriptorType = VK_DESCRIPTOR_TYPE_STORAGE_IMAGE,
|
|
.descriptorCount = 1,
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
},
|
|
};
|
|
|
|
const VkDescriptorSetLayoutCreateInfo desc_info = {
|
|
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO,
|
|
.flags = VK_DESCRIPTOR_SET_LAYOUT_CREATE_PUSH_DESCRIPTOR_BIT,
|
|
.bindingCount = 2,
|
|
.pBindings = bindings,
|
|
};
|
|
|
|
const VkPushConstantRange pc_range = {
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
.size = 24,
|
|
};
|
|
|
|
return vk_meta_get_pipeline_layout(&device->vk, &device->meta_state.device, &desc_info, &pc_range, &key, sizeof(key),
|
|
layout_out);
|
|
}
|
|
|
|
struct radv_copy_image_key {
|
|
enum radv_meta_object_key_type type;
|
|
bool src_3d;
|
|
bool dst_3d;
|
|
uint8_t samples_log2;
|
|
};
|
|
|
|
static VkResult
|
|
get_itoi_pipeline(struct radv_device *device, const struct radv_image *src_image, const struct radv_image *dst_image,
|
|
int samples, VkPipeline *pipeline_out, VkPipelineLayout *layout_out)
|
|
{
|
|
const bool src_3d = src_image->vk.image_type == VK_IMAGE_TYPE_3D;
|
|
const bool dst_3d = dst_image->vk.image_type == VK_IMAGE_TYPE_3D;
|
|
const uint32_t samples_log2 = ffs(samples) - 1;
|
|
VkResult result;
|
|
struct radv_copy_image_key key;
|
|
|
|
result = get_itoi_pipeline_layout(device, layout_out);
|
|
if (result != VK_SUCCESS)
|
|
return result;
|
|
|
|
memset(&key, 0, sizeof(key));
|
|
key.type = RADV_META_OBJECT_KEY_COPY_IMAGE;
|
|
key.src_3d = src_3d;
|
|
key.dst_3d = dst_3d;
|
|
key.samples_log2 = samples_log2;
|
|
|
|
VkPipeline pipeline_from_cache = vk_meta_lookup_pipeline(&device->meta_state.device, &key, sizeof(key));
|
|
if (pipeline_from_cache != VK_NULL_HANDLE) {
|
|
*pipeline_out = pipeline_from_cache;
|
|
return VK_SUCCESS;
|
|
}
|
|
|
|
nir_shader *cs = radv_meta_nir_build_itoi_compute_shader(device, src_3d, dst_3d, samples);
|
|
|
|
const VkPipelineShaderStageCreateInfo stage_info = {
|
|
.sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO,
|
|
.stage = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
.module = vk_shader_module_handle_from_nir(cs),
|
|
.pName = "main",
|
|
.pSpecializationInfo = NULL,
|
|
};
|
|
|
|
const VkComputePipelineCreateInfo pipeline_info = {
|
|
.sType = VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO,
|
|
.stage = stage_info,
|
|
.flags = 0,
|
|
.layout = *layout_out,
|
|
};
|
|
|
|
result = vk_meta_create_compute_pipeline(&device->vk, &device->meta_state.device, &pipeline_info, &key, sizeof(key),
|
|
pipeline_out);
|
|
|
|
ralloc_free(cs);
|
|
return result;
|
|
}
|
|
|
|
static VkResult
|
|
get_itoi_r32g32b32_pipeline(struct radv_device *device, VkPipeline *pipeline_out, VkPipelineLayout *layout_out)
|
|
{
|
|
enum radv_meta_object_key_type key = RADV_META_OBJECT_KEY_COPY_IMAGE_R32G32B32;
|
|
VkResult result;
|
|
|
|
const VkDescriptorSetLayoutBinding bindings[] = {
|
|
{
|
|
.binding = 0,
|
|
.descriptorType = VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER,
|
|
.descriptorCount = 1,
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
},
|
|
{
|
|
.binding = 1,
|
|
.descriptorType = VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER,
|
|
.descriptorCount = 1,
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
},
|
|
};
|
|
|
|
const VkDescriptorSetLayoutCreateInfo desc_info = {
|
|
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO,
|
|
.flags = VK_DESCRIPTOR_SET_LAYOUT_CREATE_PUSH_DESCRIPTOR_BIT,
|
|
.bindingCount = 2,
|
|
.pBindings = bindings,
|
|
};
|
|
|
|
const VkPushConstantRange pc_range = {
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
.size = 24,
|
|
};
|
|
|
|
result = vk_meta_get_pipeline_layout(&device->vk, &device->meta_state.device, &desc_info, &pc_range, &key,
|
|
sizeof(key), layout_out);
|
|
if (result != VK_SUCCESS)
|
|
return result;
|
|
|
|
VkPipeline pipeline_from_cache = vk_meta_lookup_pipeline(&device->meta_state.device, &key, sizeof(key));
|
|
if (pipeline_from_cache != VK_NULL_HANDLE) {
|
|
*pipeline_out = pipeline_from_cache;
|
|
return VK_SUCCESS;
|
|
}
|
|
|
|
nir_shader *cs = radv_meta_nir_build_itoi_r32g32b32_compute_shader(device);
|
|
|
|
const VkPipelineShaderStageCreateInfo stage_info = {
|
|
.sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO,
|
|
.stage = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
.module = vk_shader_module_handle_from_nir(cs),
|
|
.pName = "main",
|
|
.pSpecializationInfo = NULL,
|
|
};
|
|
|
|
const VkComputePipelineCreateInfo pipeline_info = {
|
|
.sType = VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO,
|
|
.stage = stage_info,
|
|
.flags = 0,
|
|
.layout = *layout_out,
|
|
};
|
|
|
|
result = vk_meta_create_compute_pipeline(&device->vk, &device->meta_state.device, &pipeline_info, &key, sizeof(key),
|
|
pipeline_out);
|
|
|
|
ralloc_free(cs);
|
|
return result;
|
|
}
|
|
|
|
static VkResult
|
|
get_cleari_pipeline_layout(struct radv_device *device, VkPipelineLayout *layout_out)
|
|
{
|
|
enum radv_meta_object_key_type key = RADV_META_OBJECT_KEY_CLEAR_CS;
|
|
|
|
const VkDescriptorSetLayoutBinding binding = {
|
|
.binding = 0,
|
|
.descriptorType = VK_DESCRIPTOR_TYPE_STORAGE_IMAGE,
|
|
.descriptorCount = 1,
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
};
|
|
|
|
const VkDescriptorSetLayoutCreateInfo desc_info = {
|
|
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO,
|
|
.flags = VK_DESCRIPTOR_SET_LAYOUT_CREATE_PUSH_DESCRIPTOR_BIT,
|
|
.bindingCount = 1,
|
|
.pBindings = &binding,
|
|
};
|
|
|
|
const VkPushConstantRange pc_range = {
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
.size = 20,
|
|
};
|
|
|
|
return vk_meta_get_pipeline_layout(&device->vk, &device->meta_state.device, &desc_info, &pc_range, &key, sizeof(key),
|
|
layout_out);
|
|
}
|
|
|
|
struct radv_clear_key {
|
|
enum radv_meta_object_key_type type;
|
|
bool is_3d;
|
|
uint8_t samples_log2;
|
|
};
|
|
|
|
static VkResult
|
|
get_cleari_pipeline(struct radv_device *device, const struct radv_image *image, VkPipeline *pipeline_out,
|
|
VkPipelineLayout *layout_out)
|
|
{
|
|
const bool is_3d = image->vk.image_type == VK_IMAGE_TYPE_3D;
|
|
const uint32_t samples = image->vk.samples;
|
|
const uint32_t samples_log2 = ffs(samples) - 1;
|
|
struct radv_clear_key key;
|
|
VkResult result;
|
|
|
|
result = get_cleari_pipeline_layout(device, layout_out);
|
|
if (result != VK_SUCCESS)
|
|
return result;
|
|
|
|
memset(&key, 0, sizeof(key));
|
|
key.type = RADV_META_OBJECT_KEY_CLEAR_CS;
|
|
key.is_3d = is_3d;
|
|
key.samples_log2 = samples_log2;
|
|
|
|
VkPipeline pipeline_from_cache = vk_meta_lookup_pipeline(&device->meta_state.device, &key, sizeof(key));
|
|
if (pipeline_from_cache != VK_NULL_HANDLE) {
|
|
*pipeline_out = pipeline_from_cache;
|
|
return VK_SUCCESS;
|
|
}
|
|
|
|
nir_shader *cs = radv_meta_nir_build_cleari_compute_shader(device, is_3d, samples);
|
|
|
|
const VkPipelineShaderStageCreateInfo stage_info = {
|
|
.sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO,
|
|
.stage = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
.module = vk_shader_module_handle_from_nir(cs),
|
|
.pName = "main",
|
|
.pSpecializationInfo = NULL,
|
|
};
|
|
|
|
const VkComputePipelineCreateInfo pipeline_info = {
|
|
.sType = VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO,
|
|
.stage = stage_info,
|
|
.flags = 0,
|
|
.layout = *layout_out,
|
|
};
|
|
|
|
result = vk_meta_create_compute_pipeline(&device->vk, &device->meta_state.device, &pipeline_info, &key, sizeof(key),
|
|
pipeline_out);
|
|
|
|
ralloc_free(cs);
|
|
return result;
|
|
}
|
|
|
|
static VkResult
|
|
get_cleari_r32g32b32_pipeline(struct radv_device *device, VkPipeline *pipeline_out, VkPipelineLayout *layout_out)
|
|
{
|
|
enum radv_meta_object_key_type key = RADV_META_OBJECT_KEY_CLEAR_CS_R32G32B32;
|
|
VkResult result;
|
|
|
|
const VkDescriptorSetLayoutBinding binding = {
|
|
.binding = 0,
|
|
.descriptorType = VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER,
|
|
.descriptorCount = 1,
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
};
|
|
|
|
const VkDescriptorSetLayoutCreateInfo desc_info = {
|
|
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO,
|
|
.flags = VK_DESCRIPTOR_SET_LAYOUT_CREATE_PUSH_DESCRIPTOR_BIT,
|
|
.bindingCount = 1,
|
|
.pBindings = &binding,
|
|
};
|
|
|
|
const VkPushConstantRange pc_range = {
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
.size = 16,
|
|
};
|
|
|
|
result = vk_meta_get_pipeline_layout(&device->vk, &device->meta_state.device, &desc_info, &pc_range, &key,
|
|
sizeof(key), layout_out);
|
|
if (result != VK_SUCCESS)
|
|
return result;
|
|
|
|
VkPipeline pipeline_from_cache = vk_meta_lookup_pipeline(&device->meta_state.device, &key, sizeof(key));
|
|
if (pipeline_from_cache != VK_NULL_HANDLE) {
|
|
*pipeline_out = pipeline_from_cache;
|
|
return VK_SUCCESS;
|
|
}
|
|
|
|
nir_shader *cs = radv_meta_nir_build_cleari_r32g32b32_compute_shader(device);
|
|
|
|
const VkPipelineShaderStageCreateInfo stage_info = {
|
|
.sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO,
|
|
.stage = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
.module = vk_shader_module_handle_from_nir(cs),
|
|
.pName = "main",
|
|
.pSpecializationInfo = NULL,
|
|
};
|
|
|
|
const VkComputePipelineCreateInfo pipeline_info = {
|
|
.sType = VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO,
|
|
.stage = stage_info,
|
|
.flags = 0,
|
|
.layout = *layout_out,
|
|
};
|
|
|
|
result = vk_meta_create_compute_pipeline(&device->vk, &device->meta_state.device, &pipeline_info, &key, sizeof(key),
|
|
pipeline_out);
|
|
|
|
ralloc_free(cs);
|
|
return result;
|
|
}
|
|
|
|
static void
|
|
create_iview(struct radv_cmd_buffer *cmd_buffer, struct radv_meta_blit2d_surf *surf, struct radv_image_view *iview,
|
|
VkFormat format, VkImageAspectFlagBits aspects)
|
|
{
|
|
struct radv_device *device = radv_cmd_buffer_device(cmd_buffer);
|
|
|
|
if (format == VK_FORMAT_UNDEFINED)
|
|
format = surf->format;
|
|
|
|
radv_image_view_init(iview, device,
|
|
&(VkImageViewCreateInfo){
|
|
.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO,
|
|
.image = radv_image_to_handle(surf->image),
|
|
.viewType = radv_meta_get_view_type(surf->image),
|
|
.format = format,
|
|
.subresourceRange = {.aspectMask = aspects,
|
|
.baseMipLevel = surf->level,
|
|
.levelCount = 1,
|
|
.baseArrayLayer = surf->layer,
|
|
.layerCount = 1},
|
|
},
|
|
&(struct radv_image_view_extra_create_info){
|
|
.disable_compression = surf->disable_compression,
|
|
});
|
|
}
|
|
|
|
/* GFX9+ has an issue where the HW does not calculate mipmap degradations
|
|
* for block-compressed images correctly (see the comment in
|
|
* radv_image_view_init). Some texels are unaddressable and cannot be copied
|
|
* to/from by a compute shader. Here we will perform a buffer copy to copy the
|
|
* texels that the hardware missed.
|
|
*
|
|
* GFX10+ will not use this workaround because it can be fixed by adjusting its
|
|
* image view descriptors instead.
|
|
*
|
|
* GFX12+ is not affected (see NO_EDGE_CLAMP).
|
|
*/
|
|
static void
|
|
fixup_gfx9_cs_copy(struct radv_cmd_buffer *cmd_buffer, const struct radv_meta_blit2d_buffer *buf_bsurf,
|
|
const struct radv_meta_blit2d_surf *img_bsurf, const struct radv_meta_blit2d_rect *rect,
|
|
bool to_image)
|
|
{
|
|
struct radv_device *device = radv_cmd_buffer_device(cmd_buffer);
|
|
const struct radv_physical_device *pdev = radv_device_physical(device);
|
|
const unsigned mip_level = img_bsurf->level;
|
|
const struct radv_image *image = img_bsurf->image;
|
|
const struct radeon_surf *surf = &image->planes[0].surface;
|
|
const struct radeon_info *gpu_info = &pdev->info;
|
|
struct ac_surf_info surf_info = radv_get_ac_surf_info(device, image);
|
|
enum radv_copy_flags img_copy_flags = 0, mem_copy_flags = 0;
|
|
|
|
if (gpu_info->gfx_level < GFX9 || gpu_info->gfx_level >= GFX12)
|
|
return;
|
|
|
|
if (image->vk.mip_levels == 1 || !vk_format_is_block_compressed(image->vk.format))
|
|
return;
|
|
|
|
/* GFX10 will use a different workaround unless this is not a 2D image */
|
|
if (gpu_info->gfx_level >= GFX10 && image->vk.image_type == VK_IMAGE_TYPE_2D)
|
|
return;
|
|
|
|
/* The physical extent of the base mip */
|
|
VkExtent2D hw_base_extent = {surf->u.gfx9.base_mip_width, surf->u.gfx9.base_mip_height};
|
|
|
|
/* The hardware-calculated extent of the selected mip
|
|
* (naive divide-by-two integer math)
|
|
*/
|
|
VkExtent2D hw_mip_extent = {u_minify(hw_base_extent.width, mip_level), u_minify(hw_base_extent.height, mip_level)};
|
|
|
|
/* The actual extent we want to copy */
|
|
VkExtent2D mip_extent = {rect->width, rect->height};
|
|
|
|
VkOffset2D mip_offset = {to_image ? rect->dst_x : rect->src_x, to_image ? rect->dst_y : rect->src_y};
|
|
|
|
if (hw_mip_extent.width >= mip_offset.x + mip_extent.width &&
|
|
hw_mip_extent.height >= mip_offset.y + mip_extent.height)
|
|
return;
|
|
|
|
if (!to_image) {
|
|
/* If we are writing to a buffer, then we need to wait for the compute
|
|
* shader to finish because it may write over the unaddressable texels
|
|
* while we're fixing them. If we're writing to an image, we do not need
|
|
* to wait because the compute shader cannot write to those texels
|
|
*/
|
|
cmd_buffer->state.flush_bits |= RADV_CMD_FLAG_CS_PARTIAL_FLUSH | RADV_CMD_FLAG_INV_L2 | RADV_CMD_FLAG_INV_VCACHE;
|
|
}
|
|
|
|
if (image->bindings[0].bo)
|
|
img_copy_flags |= radv_get_copy_flags_from_bo(image->bindings[0].bo);
|
|
mem_copy_flags |= buf_bsurf->copy_flags;
|
|
|
|
for (uint32_t y = 0; y < mip_extent.height; y++) {
|
|
uint32_t coordY = y + mip_offset.y;
|
|
/* If the default copy algorithm (done previously) has already seen this
|
|
* scanline, then we can bias the starting X coordinate over to skip the
|
|
* region already copied by the default copy.
|
|
*/
|
|
uint32_t x = (coordY < hw_mip_extent.height) ? hw_mip_extent.width : 0;
|
|
for (; x < mip_extent.width; x++) {
|
|
uint32_t coordX = x + mip_offset.x;
|
|
uint64_t img_offset =
|
|
ac_surface_addr_from_coord(pdev->addrlib, gpu_info, surf, &surf_info, mip_level, coordX, coordY,
|
|
img_bsurf->layer, image->vk.image_type == VK_IMAGE_TYPE_3D);
|
|
const uint64_t img_va = image->bindings[0].addr + img_offset;
|
|
/* buf_bsurf->offset already includes the layer offset */
|
|
const uint64_t mem_va = buf_bsurf->addr + buf_bsurf->offset + y * buf_bsurf->pitch * surf->bpe + x * surf->bpe;
|
|
if (to_image) {
|
|
radv_copy_memory(cmd_buffer, mem_va, img_va, surf->bpe, mem_copy_flags, img_copy_flags);
|
|
} else {
|
|
radv_copy_memory(cmd_buffer, img_va, mem_va, surf->bpe, img_copy_flags, mem_copy_flags);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
static unsigned
|
|
get_image_stride_for_r32g32b32(struct radv_cmd_buffer *cmd_buffer, struct radv_meta_blit2d_surf *surf)
|
|
{
|
|
struct radv_device *device = radv_cmd_buffer_device(cmd_buffer);
|
|
const struct radv_physical_device *pdev = radv_device_physical(device);
|
|
unsigned stride;
|
|
|
|
if (pdev->info.gfx_level >= GFX9) {
|
|
stride = surf->image->planes[0].surface.u.gfx9.surf_pitch;
|
|
} else {
|
|
stride = surf->image->planes[0].surface.u.legacy.level[0].nblk_x * 3;
|
|
}
|
|
|
|
return stride;
|
|
}
|
|
|
|
void
|
|
radv_meta_image_to_buffer(struct radv_cmd_buffer *cmd_buffer, struct radv_meta_blit2d_surf *src,
|
|
struct radv_meta_blit2d_buffer *dst, struct radv_meta_blit2d_rect *rect)
|
|
{
|
|
struct radv_device *device = radv_cmd_buffer_device(cmd_buffer);
|
|
struct radv_image_view src_view;
|
|
VkPipelineLayout layout;
|
|
VkPipeline pipeline;
|
|
VkResult result;
|
|
|
|
result = get_itob_pipeline(device, src->image, &pipeline, &layout);
|
|
if (result != VK_SUCCESS) {
|
|
vk_command_buffer_set_error(&cmd_buffer->vk, result);
|
|
return;
|
|
}
|
|
|
|
create_iview(cmd_buffer, src, &src_view, VK_FORMAT_UNDEFINED, src->aspect_mask);
|
|
|
|
radv_meta_bind_descriptors(
|
|
cmd_buffer, VK_PIPELINE_BIND_POINT_COMPUTE, layout, 2,
|
|
(VkDescriptorGetInfoEXT[]){{
|
|
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_GET_INFO_EXT,
|
|
.type = VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE,
|
|
.data.pSampledImage =
|
|
&(VkDescriptorImageInfo){
|
|
.sampler = VK_NULL_HANDLE,
|
|
.imageView = radv_image_view_to_handle(&src_view),
|
|
.imageLayout = VK_IMAGE_LAYOUT_GENERAL,
|
|
},
|
|
},
|
|
{
|
|
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_GET_INFO_EXT,
|
|
.type = VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER,
|
|
.data.pStorageTexelBuffer =
|
|
&(VkDescriptorAddressInfoEXT){
|
|
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_ADDRESS_INFO_EXT,
|
|
.address = dst->addr + dst->offset,
|
|
.range = dst->size - dst->offset,
|
|
.format = dst->format,
|
|
},
|
|
}});
|
|
|
|
radv_CmdBindPipeline(radv_cmd_buffer_to_handle(cmd_buffer), VK_PIPELINE_BIND_POINT_COMPUTE, pipeline);
|
|
|
|
unsigned push_constants[4] = {rect->src_x, rect->src_y, src->layer, dst->pitch};
|
|
|
|
const VkPushConstantsInfoKHR pc_info = {
|
|
.sType = VK_STRUCTURE_TYPE_PUSH_CONSTANTS_INFO_KHR,
|
|
.layout = layout,
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
.offset = 0,
|
|
.size = sizeof(push_constants),
|
|
.pValues = push_constants,
|
|
};
|
|
|
|
radv_CmdPushConstants2(radv_cmd_buffer_to_handle(cmd_buffer), &pc_info);
|
|
|
|
radv_unaligned_dispatch(cmd_buffer, rect->width, rect->height, 1);
|
|
fixup_gfx9_cs_copy(cmd_buffer, dst, src, rect, false);
|
|
|
|
radv_image_view_finish(&src_view);
|
|
}
|
|
|
|
static void
|
|
radv_meta_buffer_to_image_cs_r32g32b32(struct radv_cmd_buffer *cmd_buffer, struct radv_meta_blit2d_buffer *src,
|
|
struct radv_meta_blit2d_surf *dst, struct radv_meta_blit2d_rect *rect)
|
|
{
|
|
struct radv_device *device = radv_cmd_buffer_device(cmd_buffer);
|
|
VkPipelineLayout layout;
|
|
VkPipeline pipeline;
|
|
unsigned stride;
|
|
VkResult result;
|
|
|
|
result = get_btoi_r32g32b32_pipeline(device, &pipeline, &layout);
|
|
if (result != VK_SUCCESS) {
|
|
vk_command_buffer_set_error(&cmd_buffer->vk, result);
|
|
return;
|
|
}
|
|
|
|
radv_meta_bind_descriptors(
|
|
cmd_buffer, VK_PIPELINE_BIND_POINT_COMPUTE, layout, 2,
|
|
(VkDescriptorGetInfoEXT[]){{
|
|
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_GET_INFO_EXT,
|
|
.type = VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER,
|
|
.data.pUniformTexelBuffer =
|
|
&(VkDescriptorAddressInfoEXT){
|
|
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_ADDRESS_INFO_EXT,
|
|
.address = src->addr + src->offset,
|
|
.range = src->size - src->offset,
|
|
.format = src->format,
|
|
},
|
|
},
|
|
{
|
|
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_GET_INFO_EXT,
|
|
.type = VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER,
|
|
.data.pStorageTexelBuffer =
|
|
&(VkDescriptorAddressInfoEXT){
|
|
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_ADDRESS_INFO_EXT,
|
|
.address = dst->image->bindings[0].addr,
|
|
.range = dst->image->size,
|
|
.format = radv_meta_get_96bit_channel_format(dst->format),
|
|
},
|
|
}});
|
|
|
|
radv_CmdBindPipeline(radv_cmd_buffer_to_handle(cmd_buffer), VK_PIPELINE_BIND_POINT_COMPUTE, pipeline);
|
|
|
|
stride = get_image_stride_for_r32g32b32(cmd_buffer, dst);
|
|
|
|
unsigned push_constants[4] = {
|
|
rect->dst_x,
|
|
rect->dst_y,
|
|
stride,
|
|
src->pitch,
|
|
};
|
|
|
|
const VkPushConstantsInfoKHR pc_info = {
|
|
.sType = VK_STRUCTURE_TYPE_PUSH_CONSTANTS_INFO_KHR,
|
|
.layout = layout,
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
.offset = 0,
|
|
.size = sizeof(push_constants),
|
|
.pValues = push_constants,
|
|
};
|
|
|
|
radv_CmdPushConstants2(radv_cmd_buffer_to_handle(cmd_buffer), &pc_info);
|
|
|
|
radv_unaligned_dispatch(cmd_buffer, rect->width, rect->height, 1);
|
|
}
|
|
|
|
void
|
|
radv_meta_buffer_to_image_cs(struct radv_cmd_buffer *cmd_buffer, struct radv_meta_blit2d_buffer *src,
|
|
struct radv_meta_blit2d_surf *dst, struct radv_meta_blit2d_rect *rect)
|
|
{
|
|
struct radv_device *device = radv_cmd_buffer_device(cmd_buffer);
|
|
struct radv_image_view dst_view;
|
|
VkPipelineLayout layout;
|
|
VkPipeline pipeline;
|
|
VkResult result;
|
|
|
|
if (vk_format_is_96bit(dst->image->vk.format)) {
|
|
radv_meta_buffer_to_image_cs_r32g32b32(cmd_buffer, src, dst, rect);
|
|
return;
|
|
}
|
|
|
|
result = get_btoi_pipeline(device, dst->image, &pipeline, &layout);
|
|
if (result != VK_SUCCESS) {
|
|
vk_command_buffer_set_error(&cmd_buffer->vk, result);
|
|
return;
|
|
}
|
|
|
|
create_iview(cmd_buffer, dst, &dst_view, VK_FORMAT_UNDEFINED, dst->aspect_mask);
|
|
|
|
radv_meta_bind_descriptors(
|
|
cmd_buffer, VK_PIPELINE_BIND_POINT_COMPUTE, layout, 2,
|
|
(VkDescriptorGetInfoEXT[]){{
|
|
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_GET_INFO_EXT,
|
|
.type = VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER,
|
|
.data.pStorageTexelBuffer =
|
|
&(VkDescriptorAddressInfoEXT){
|
|
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_ADDRESS_INFO_EXT,
|
|
.address = src->addr + src->offset,
|
|
.range = src->size - src->offset,
|
|
.format = src->format,
|
|
},
|
|
},
|
|
{.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_GET_INFO_EXT,
|
|
.type = VK_DESCRIPTOR_TYPE_STORAGE_IMAGE,
|
|
.data.pStorageImage = (VkDescriptorImageInfo[]){
|
|
{
|
|
.sampler = VK_NULL_HANDLE,
|
|
.imageView = radv_image_view_to_handle(&dst_view),
|
|
.imageLayout = VK_IMAGE_LAYOUT_GENERAL,
|
|
},
|
|
}}});
|
|
|
|
radv_CmdBindPipeline(radv_cmd_buffer_to_handle(cmd_buffer), VK_PIPELINE_BIND_POINT_COMPUTE, pipeline);
|
|
|
|
unsigned push_constants[4] = {
|
|
rect->dst_x,
|
|
rect->dst_y,
|
|
dst->layer,
|
|
src->pitch,
|
|
};
|
|
|
|
const VkPushConstantsInfoKHR pc_info = {
|
|
.sType = VK_STRUCTURE_TYPE_PUSH_CONSTANTS_INFO_KHR,
|
|
.layout = layout,
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
.offset = 0,
|
|
.size = sizeof(push_constants),
|
|
.pValues = push_constants,
|
|
};
|
|
|
|
radv_CmdPushConstants2(radv_cmd_buffer_to_handle(cmd_buffer), &pc_info);
|
|
|
|
radv_unaligned_dispatch(cmd_buffer, rect->width, rect->height, 1);
|
|
fixup_gfx9_cs_copy(cmd_buffer, src, dst, rect, true);
|
|
|
|
radv_image_view_finish(&dst_view);
|
|
}
|
|
|
|
static void
|
|
radv_meta_image_to_image_cs_r32g32b32(struct radv_cmd_buffer *cmd_buffer, struct radv_meta_blit2d_surf *src,
|
|
struct radv_meta_blit2d_surf *dst, struct radv_meta_blit2d_rect *rect)
|
|
{
|
|
struct radv_device *device = radv_cmd_buffer_device(cmd_buffer);
|
|
unsigned src_stride, dst_stride;
|
|
VkPipelineLayout layout;
|
|
VkPipeline pipeline;
|
|
VkResult result;
|
|
|
|
result = get_itoi_r32g32b32_pipeline(device, &pipeline, &layout);
|
|
if (result != VK_SUCCESS) {
|
|
vk_command_buffer_set_error(&cmd_buffer->vk, result);
|
|
return;
|
|
}
|
|
|
|
/* 96-bit formats are only compatible to themselves. */
|
|
assert(vk_format_is_96bit(dst->format));
|
|
|
|
radv_meta_bind_descriptors(
|
|
cmd_buffer, VK_PIPELINE_BIND_POINT_COMPUTE, layout, 2,
|
|
(VkDescriptorGetInfoEXT[]){{
|
|
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_GET_INFO_EXT,
|
|
.type = VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER,
|
|
.data.pUniformTexelBuffer =
|
|
&(VkDescriptorAddressInfoEXT){
|
|
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_ADDRESS_INFO_EXT,
|
|
.address = src->image->bindings[0].addr,
|
|
.range = src->image->size,
|
|
.format = radv_meta_get_96bit_channel_format(src->format),
|
|
},
|
|
},
|
|
{
|
|
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_GET_INFO_EXT,
|
|
.type = VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER,
|
|
.data.pStorageTexelBuffer =
|
|
&(VkDescriptorAddressInfoEXT){
|
|
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_ADDRESS_INFO_EXT,
|
|
.address = dst->image->bindings[0].addr,
|
|
.range = dst->image->size,
|
|
.format = radv_meta_get_96bit_channel_format(dst->format),
|
|
},
|
|
}});
|
|
|
|
radv_CmdBindPipeline(radv_cmd_buffer_to_handle(cmd_buffer), VK_PIPELINE_BIND_POINT_COMPUTE, pipeline);
|
|
|
|
src_stride = get_image_stride_for_r32g32b32(cmd_buffer, src);
|
|
dst_stride = get_image_stride_for_r32g32b32(cmd_buffer, dst);
|
|
|
|
unsigned push_constants[6] = {
|
|
rect->src_x, rect->src_y, src_stride, rect->dst_x, rect->dst_y, dst_stride,
|
|
};
|
|
|
|
const VkPushConstantsInfoKHR pc_info = {
|
|
.sType = VK_STRUCTURE_TYPE_PUSH_CONSTANTS_INFO_KHR,
|
|
.layout = layout,
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
.offset = 0,
|
|
.size = sizeof(push_constants),
|
|
.pValues = push_constants,
|
|
};
|
|
|
|
radv_CmdPushConstants2(radv_cmd_buffer_to_handle(cmd_buffer), &pc_info);
|
|
|
|
radv_unaligned_dispatch(cmd_buffer, rect->width, rect->height, 1);
|
|
}
|
|
|
|
void
|
|
radv_meta_image_to_image_cs(struct radv_cmd_buffer *cmd_buffer, struct radv_meta_blit2d_surf *src,
|
|
struct radv_meta_blit2d_surf *dst, struct radv_meta_blit2d_rect *rect)
|
|
{
|
|
struct radv_device *device = radv_cmd_buffer_device(cmd_buffer);
|
|
struct radv_image_view src_view, dst_view;
|
|
uint32_t samples = src->image->vk.samples;
|
|
VkPipelineLayout layout;
|
|
VkPipeline pipeline;
|
|
VkResult result;
|
|
|
|
if (vk_format_is_96bit(src->format)) {
|
|
radv_meta_image_to_image_cs_r32g32b32(cmd_buffer, src, dst, rect);
|
|
return;
|
|
}
|
|
|
|
result = get_itoi_pipeline(device, src->image, dst->image, samples, &pipeline, &layout);
|
|
if (result != VK_SUCCESS) {
|
|
vk_command_buffer_set_error(&cmd_buffer->vk, result);
|
|
return;
|
|
}
|
|
|
|
u_foreach_bit (i, dst->aspect_mask) {
|
|
unsigned dst_aspect_mask = 1u << i;
|
|
unsigned src_aspect_mask = dst_aspect_mask;
|
|
VkFormat depth_format = 0;
|
|
if (dst_aspect_mask == VK_IMAGE_ASPECT_STENCIL_BIT)
|
|
depth_format = vk_format_stencil_only(dst->image->vk.format);
|
|
else if (dst_aspect_mask == VK_IMAGE_ASPECT_DEPTH_BIT)
|
|
depth_format = vk_format_depth_only(dst->image->vk.format);
|
|
else {
|
|
/*
|
|
* "Multi-planar images can only be copied on a per-plane basis, and the subresources used in each region when
|
|
* copying to or from such images must specify only one plane, though different regions can specify different
|
|
* planes."
|
|
*/
|
|
assert((dst->aspect_mask & (dst->aspect_mask - 1)) == 0);
|
|
assert((src->aspect_mask & (src->aspect_mask - 1)) == 0);
|
|
src_aspect_mask = src->aspect_mask;
|
|
}
|
|
|
|
/* Adjust the aspect for color to depth/stencil image copies. */
|
|
if (vk_format_is_color(src->image->vk.format) && vk_format_is_depth_or_stencil(dst->image->vk.format)) {
|
|
assert(src->aspect_mask == VK_IMAGE_ASPECT_COLOR_BIT);
|
|
src_aspect_mask = src->aspect_mask;
|
|
} else if (vk_format_is_depth_or_stencil(src->image->vk.format) && vk_format_is_color(dst->image->vk.format)) {
|
|
if (src->aspect_mask == VK_IMAGE_ASPECT_STENCIL_BIT) {
|
|
depth_format = vk_format_stencil_only(src->image->vk.format);
|
|
} else {
|
|
assert(src->aspect_mask == VK_IMAGE_ASPECT_DEPTH_BIT);
|
|
depth_format = vk_format_depth_only(src->image->vk.format);
|
|
}
|
|
}
|
|
|
|
create_iview(cmd_buffer, src, &src_view,
|
|
(src_aspect_mask & (VK_IMAGE_ASPECT_DEPTH_BIT | VK_IMAGE_ASPECT_STENCIL_BIT)) ? depth_format : 0,
|
|
src_aspect_mask);
|
|
create_iview(cmd_buffer, dst, &dst_view,
|
|
dst_aspect_mask & (VK_IMAGE_ASPECT_DEPTH_BIT | VK_IMAGE_ASPECT_STENCIL_BIT) ? depth_format : 0,
|
|
dst_aspect_mask);
|
|
|
|
radv_meta_bind_descriptors(cmd_buffer, VK_PIPELINE_BIND_POINT_COMPUTE, layout, 2,
|
|
(VkDescriptorGetInfoEXT[]){{.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_GET_INFO_EXT,
|
|
.type = VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE,
|
|
.data.pSampledImage =
|
|
(VkDescriptorImageInfo[]){
|
|
{
|
|
.sampler = VK_NULL_HANDLE,
|
|
.imageView = radv_image_view_to_handle(&src_view),
|
|
.imageLayout = VK_IMAGE_LAYOUT_GENERAL,
|
|
},
|
|
}},
|
|
{.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_GET_INFO_EXT,
|
|
.type = VK_DESCRIPTOR_TYPE_STORAGE_IMAGE,
|
|
.data.pStorageImage = (VkDescriptorImageInfo[]){
|
|
{
|
|
.sampler = VK_NULL_HANDLE,
|
|
.imageView = radv_image_view_to_handle(&dst_view),
|
|
.imageLayout = VK_IMAGE_LAYOUT_GENERAL,
|
|
},
|
|
}}});
|
|
|
|
radv_CmdBindPipeline(radv_cmd_buffer_to_handle(cmd_buffer), VK_PIPELINE_BIND_POINT_COMPUTE, pipeline);
|
|
|
|
unsigned push_constants[6] = {
|
|
rect->src_x, rect->src_y, src->layer, rect->dst_x, rect->dst_y, dst->layer,
|
|
};
|
|
|
|
const VkPushConstantsInfoKHR pc_info = {
|
|
.sType = VK_STRUCTURE_TYPE_PUSH_CONSTANTS_INFO_KHR,
|
|
.layout = layout,
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
.offset = 0,
|
|
.size = sizeof(push_constants),
|
|
.pValues = push_constants,
|
|
};
|
|
|
|
radv_CmdPushConstants2(radv_cmd_buffer_to_handle(cmd_buffer), &pc_info);
|
|
|
|
radv_unaligned_dispatch(cmd_buffer, rect->width, rect->height, 1);
|
|
|
|
radv_image_view_finish(&src_view);
|
|
radv_image_view_finish(&dst_view);
|
|
}
|
|
}
|
|
|
|
static void
|
|
radv_meta_clear_image_cs_r32g32b32(struct radv_cmd_buffer *cmd_buffer, struct radv_meta_blit2d_surf *dst,
|
|
const VkClearColorValue *clear_color)
|
|
{
|
|
struct radv_device *device = radv_cmd_buffer_device(cmd_buffer);
|
|
struct radv_cmd_stream *cs = cmd_buffer->cs;
|
|
VkPipelineLayout layout;
|
|
VkPipeline pipeline;
|
|
unsigned stride;
|
|
VkResult result;
|
|
|
|
result = get_cleari_r32g32b32_pipeline(device, &pipeline, &layout);
|
|
if (result != VK_SUCCESS) {
|
|
vk_command_buffer_set_error(&cmd_buffer->vk, result);
|
|
return;
|
|
}
|
|
|
|
radv_cs_add_buffer(device->ws, cs->b, dst->image->bindings[0].bo);
|
|
|
|
radv_meta_bind_descriptors(cmd_buffer, VK_PIPELINE_BIND_POINT_COMPUTE, layout, 1,
|
|
(VkDescriptorGetInfoEXT[]){{
|
|
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_GET_INFO_EXT,
|
|
.type = VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER,
|
|
.data.pStorageTexelBuffer =
|
|
&(VkDescriptorAddressInfoEXT){
|
|
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_ADDRESS_INFO_EXT,
|
|
.address = dst->image->bindings[0].addr,
|
|
.range = dst->image->size,
|
|
.format = radv_meta_get_96bit_channel_format(dst->format),
|
|
},
|
|
}});
|
|
|
|
radv_CmdBindPipeline(radv_cmd_buffer_to_handle(cmd_buffer), VK_PIPELINE_BIND_POINT_COMPUTE, pipeline);
|
|
|
|
stride = get_image_stride_for_r32g32b32(cmd_buffer, dst);
|
|
|
|
unsigned push_constants[4] = {
|
|
clear_color->uint32[0],
|
|
clear_color->uint32[1],
|
|
clear_color->uint32[2],
|
|
stride,
|
|
};
|
|
|
|
const VkPushConstantsInfoKHR pc_info = {
|
|
.sType = VK_STRUCTURE_TYPE_PUSH_CONSTANTS_INFO_KHR,
|
|
.layout = layout,
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
.offset = 0,
|
|
.size = sizeof(push_constants),
|
|
.pValues = push_constants,
|
|
};
|
|
|
|
radv_CmdPushConstants2(radv_cmd_buffer_to_handle(cmd_buffer), &pc_info);
|
|
|
|
radv_unaligned_dispatch(cmd_buffer, dst->image->vk.extent.width, dst->image->vk.extent.height, 1);
|
|
}
|
|
|
|
void
|
|
radv_meta_clear_image_cs(struct radv_cmd_buffer *cmd_buffer, struct radv_meta_blit2d_surf *dst,
|
|
const VkClearColorValue *clear_color)
|
|
{
|
|
struct radv_device *device = radv_cmd_buffer_device(cmd_buffer);
|
|
struct radv_image_view dst_iview;
|
|
VkPipelineLayout layout;
|
|
VkPipeline pipeline;
|
|
VkResult result;
|
|
|
|
if (vk_format_is_96bit(dst->format)) {
|
|
radv_meta_clear_image_cs_r32g32b32(cmd_buffer, dst, clear_color);
|
|
return;
|
|
}
|
|
|
|
result = get_cleari_pipeline(device, dst->image, &pipeline, &layout);
|
|
if (result != VK_SUCCESS) {
|
|
vk_command_buffer_set_error(&cmd_buffer->vk, result);
|
|
return;
|
|
}
|
|
|
|
create_iview(cmd_buffer, dst, &dst_iview, VK_FORMAT_UNDEFINED, dst->aspect_mask);
|
|
|
|
radv_meta_bind_descriptors(cmd_buffer, VK_PIPELINE_BIND_POINT_COMPUTE, layout, 1,
|
|
(VkDescriptorGetInfoEXT[]){
|
|
{.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_GET_INFO_EXT,
|
|
.type = VK_DESCRIPTOR_TYPE_STORAGE_IMAGE,
|
|
.data.pStorageImage =
|
|
(VkDescriptorImageInfo[]){
|
|
{
|
|
.sampler = VK_NULL_HANDLE,
|
|
.imageView = radv_image_view_to_handle(&dst_iview),
|
|
.imageLayout = VK_IMAGE_LAYOUT_GENERAL,
|
|
},
|
|
}},
|
|
});
|
|
|
|
radv_CmdBindPipeline(radv_cmd_buffer_to_handle(cmd_buffer), VK_PIPELINE_BIND_POINT_COMPUTE, pipeline);
|
|
|
|
unsigned push_constants[5] = {
|
|
clear_color->uint32[0], clear_color->uint32[1], clear_color->uint32[2], clear_color->uint32[3], dst->layer,
|
|
};
|
|
|
|
const VkPushConstantsInfoKHR pc_info = {
|
|
.sType = VK_STRUCTURE_TYPE_PUSH_CONSTANTS_INFO_KHR,
|
|
.layout = layout,
|
|
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
|
.offset = 0,
|
|
.size = sizeof(push_constants),
|
|
.pValues = push_constants,
|
|
};
|
|
|
|
radv_CmdPushConstants2(radv_cmd_buffer_to_handle(cmd_buffer), &pc_info);
|
|
|
|
radv_unaligned_dispatch(cmd_buffer, dst->image->vk.extent.width, dst->image->vk.extent.height, 1);
|
|
|
|
radv_image_view_finish(&dst_iview);
|
|
}
|