2023-11-05 10:36:01 +01:00
|
|
|
#include "Texture.h"
|
2023-11-15 17:42:57 +01:00
|
|
|
#include "Command.h"
|
2024-06-09 10:44:24 +02:00
|
|
|
#include "Enums.h"
|
2020-04-01 02:17:49 +02:00
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
|
|
using namespace Seele;
|
|
|
|
|
using namespace Seele::Vulkan;
|
|
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
VkImageAspectFlags getAspectFromFormat(Gfx::SeFormat format) {
|
|
|
|
|
switch (format) {
|
2020-04-12 15:47:19 +02:00
|
|
|
case Gfx::SE_FORMAT_D16_UNORM:
|
|
|
|
|
return VK_IMAGE_ASPECT_DEPTH_BIT;
|
|
|
|
|
case Gfx::SE_FORMAT_D32_SFLOAT:
|
|
|
|
|
return VK_IMAGE_ASPECT_DEPTH_BIT;
|
|
|
|
|
case Gfx::SE_FORMAT_S8_UINT:
|
|
|
|
|
return VK_IMAGE_ASPECT_STENCIL_BIT;
|
|
|
|
|
case Gfx::SE_FORMAT_D16_UNORM_S8_UINT:
|
|
|
|
|
case Gfx::SE_FORMAT_D24_UNORM_S8_UINT:
|
|
|
|
|
case Gfx::SE_FORMAT_D32_SFLOAT_S8_UINT:
|
|
|
|
|
case Gfx::SE_FORMAT_X8_D24_UNORM_PACK32:
|
|
|
|
|
return VK_IMAGE_ASPECT_DEPTH_BIT | VK_IMAGE_ASPECT_STENCIL_BIT;
|
|
|
|
|
default:
|
|
|
|
|
return VK_IMAGE_ASPECT_COLOR_BIT;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
TextureHandle::TextureHandle(PGraphics graphics) : CommandBoundResource(graphics) {}
|
2024-05-15 15:27:13 +02:00
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
TextureHandle::~TextureHandle() {
|
2024-05-15 15:27:13 +02:00
|
|
|
vkDestroyImageView(graphics->getDevice(), imageView, nullptr);
|
2024-06-09 12:20:04 +02:00
|
|
|
if (ownsImage) {
|
2024-05-15 15:27:13 +02:00
|
|
|
vmaDestroyImage(graphics->getAllocator(), image, allocation);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
TextureBase::TextureBase(PGraphics graphics, VkImageViewType viewType, const TextureCreateInfo& createInfo, Gfx::QueueType& owner,
|
|
|
|
|
VkImage existingImage)
|
|
|
|
|
: currentOwner(owner), graphics(graphics), width(createInfo.width), height(createInfo.height), depth(createInfo.depth),
|
|
|
|
|
arrayCount(createInfo.elements), layerCount(createInfo.layers), mipLevels(createInfo.mipLevels), samples(createInfo.samples),
|
|
|
|
|
format(createInfo.format), usage(createInfo.usage), handle(new TextureHandle(graphics)),
|
|
|
|
|
aspect(getAspectFromFormat(createInfo.format)), layout(Gfx::SE_IMAGE_LAYOUT_UNDEFINED) {
|
2024-05-15 15:27:13 +02:00
|
|
|
handle->image = existingImage;
|
|
|
|
|
handle->ownsImage = false;
|
2024-06-09 12:20:04 +02:00
|
|
|
if (existingImage == VK_NULL_HANDLE) {
|
2024-05-15 15:27:13 +02:00
|
|
|
handle->ownsImage = true;
|
2023-11-15 17:42:57 +01:00
|
|
|
VkImageType type = VK_IMAGE_TYPE_MAX_ENUM;
|
|
|
|
|
VkImageCreateFlags flags = 0;
|
2024-06-09 12:20:04 +02:00
|
|
|
switch (viewType) {
|
2020-04-12 15:47:19 +02:00
|
|
|
case VK_IMAGE_VIEW_TYPE_1D:
|
|
|
|
|
case VK_IMAGE_VIEW_TYPE_1D_ARRAY:
|
2023-11-15 17:42:57 +01:00
|
|
|
type = VK_IMAGE_TYPE_1D;
|
2020-04-12 15:47:19 +02:00
|
|
|
break;
|
|
|
|
|
case VK_IMAGE_VIEW_TYPE_2D:
|
|
|
|
|
case VK_IMAGE_VIEW_TYPE_2D_ARRAY:
|
2023-11-15 17:42:57 +01:00
|
|
|
type = VK_IMAGE_TYPE_2D;
|
2020-04-12 15:47:19 +02:00
|
|
|
break;
|
|
|
|
|
case VK_IMAGE_VIEW_TYPE_3D:
|
2023-11-15 17:42:57 +01:00
|
|
|
type = VK_IMAGE_TYPE_3D;
|
2020-04-12 15:47:19 +02:00
|
|
|
break;
|
|
|
|
|
case VK_IMAGE_VIEW_TYPE_CUBE:
|
|
|
|
|
case VK_IMAGE_VIEW_TYPE_CUBE_ARRAY:
|
2023-11-15 17:42:57 +01:00
|
|
|
type = VK_IMAGE_TYPE_2D;
|
|
|
|
|
flags = VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT;
|
2020-04-12 15:47:19 +02:00
|
|
|
layerCount = 6 * arrayCount;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
2024-06-09 12:20:04 +02:00
|
|
|
if ((usage & VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT) == 0) {
|
|
|
|
|
usage = usage | VK_IMAGE_USAGE_TRANSFER_DST_BIT | VK_IMAGE_USAGE_TRANSFER_SRC_BIT | VK_IMAGE_USAGE_SAMPLED_BIT;
|
2023-12-10 22:27:59 +01:00
|
|
|
}
|
2023-11-15 17:42:57 +01:00
|
|
|
VkImageCreateInfo info = {
|
|
|
|
|
.sType = VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO,
|
|
|
|
|
.pNext = nullptr,
|
|
|
|
|
.flags = flags,
|
|
|
|
|
.imageType = type,
|
|
|
|
|
.format = cast(format),
|
2024-06-09 12:20:04 +02:00
|
|
|
.extent =
|
|
|
|
|
{
|
|
|
|
|
.width = width,
|
|
|
|
|
.height = height,
|
|
|
|
|
.depth = depth,
|
|
|
|
|
},
|
2023-11-15 17:42:57 +01:00
|
|
|
.mipLevels = mipLevels,
|
|
|
|
|
.arrayLayers = arrayCount * layerCount,
|
|
|
|
|
.samples = (VkSampleCountFlagBits)samples,
|
|
|
|
|
.tiling = VK_IMAGE_TILING_OPTIMAL,
|
2023-12-10 22:27:59 +01:00
|
|
|
.usage = usage,
|
2023-11-15 17:42:57 +01:00
|
|
|
.sharingMode = VK_SHARING_MODE_EXCLUSIVE,
|
|
|
|
|
.initialLayout = cast(layout),
|
|
|
|
|
};
|
2024-01-17 17:57:59 +01:00
|
|
|
VmaAllocationCreateInfo allocInfo = {
|
|
|
|
|
.usage = VMA_MEMORY_USAGE_AUTO,
|
|
|
|
|
};
|
2024-05-15 15:27:13 +02:00
|
|
|
VK_CHECK(vmaCreateImage(graphics->getAllocator(), &info, &allocInfo, &handle->image, &handle->allocation, nullptr));
|
2024-05-04 09:25:13 +02:00
|
|
|
}
|
2020-04-12 15:47:19 +02:00
|
|
|
|
2024-05-04 09:25:13 +02:00
|
|
|
const DataSource& sourceData = createInfo.sourceData;
|
2024-06-09 12:20:04 +02:00
|
|
|
if (sourceData.size > 0) {
|
|
|
|
|
changeLayout(Gfx::SE_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, VK_ACCESS_NONE, VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT,
|
|
|
|
|
VK_ACCESS_MEMORY_WRITE_BIT, VK_PIPELINE_STAGE_TRANSFER_BIT);
|
2024-05-04 09:25:13 +02:00
|
|
|
void* data;
|
2024-05-15 15:27:13 +02:00
|
|
|
OBufferAllocation stagingAlloc = new BufferAllocation(graphics);
|
2024-05-04 09:25:13 +02:00
|
|
|
VkBufferCreateInfo stagingInfo = {
|
|
|
|
|
.sType = VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO,
|
|
|
|
|
.pNext = nullptr,
|
|
|
|
|
.flags = 0,
|
|
|
|
|
.size = sourceData.size,
|
|
|
|
|
.usage = VK_BUFFER_USAGE_TRANSFER_SRC_BIT,
|
|
|
|
|
.sharingMode = VK_SHARING_MODE_EXCLUSIVE,
|
|
|
|
|
};
|
|
|
|
|
VmaAllocationCreateInfo alloc = {
|
|
|
|
|
.flags = VMA_ALLOCATION_CREATE_HOST_ACCESS_SEQUENTIAL_WRITE_BIT | VMA_ALLOCATION_CREATE_MAPPED_BIT,
|
|
|
|
|
.usage = VMA_MEMORY_USAGE_AUTO,
|
|
|
|
|
};
|
2024-06-09 12:20:04 +02:00
|
|
|
VK_CHECK(
|
|
|
|
|
vmaCreateBuffer(graphics->getAllocator(), &stagingInfo, &alloc, &stagingAlloc->buffer, &stagingAlloc->allocation, nullptr));
|
2024-05-15 15:27:13 +02:00
|
|
|
vmaMapMemory(graphics->getAllocator(), stagingAlloc->allocation, &data);
|
|
|
|
|
vmaSetAllocationName(graphics->getAllocator(), stagingAlloc->allocation, "TextureStaging");
|
2024-05-04 09:25:13 +02:00
|
|
|
|
|
|
|
|
std::memcpy(data, sourceData.data, sourceData.size);
|
2024-05-15 15:27:13 +02:00
|
|
|
vmaUnmapMemory(graphics->getAllocator(), stagingAlloc->allocation);
|
2024-05-04 09:25:13 +02:00
|
|
|
|
|
|
|
|
PCommandPool commandPool = graphics->getQueueCommands(currentOwner);
|
|
|
|
|
VkBufferImageCopy region = {
|
|
|
|
|
.bufferOffset = 0,
|
|
|
|
|
.bufferRowLength = 0,
|
|
|
|
|
.bufferImageHeight = 0,
|
2024-06-09 12:20:04 +02:00
|
|
|
.imageSubresource =
|
|
|
|
|
{
|
|
|
|
|
.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT,
|
|
|
|
|
.mipLevel = 0,
|
|
|
|
|
.baseArrayLayer = 0,
|
|
|
|
|
.layerCount = arrayCount * layerCount,
|
|
|
|
|
},
|
|
|
|
|
.imageOffset =
|
|
|
|
|
{
|
|
|
|
|
.x = 0,
|
|
|
|
|
.y = 0,
|
|
|
|
|
.z = 0,
|
|
|
|
|
},
|
|
|
|
|
.imageExtent = {.width = width, .height = height, .depth = depth},
|
2024-05-04 09:25:13 +02:00
|
|
|
};
|
|
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
vkCmdCopyBufferToImage(commandPool->getCommands()->getHandle(), stagingAlloc->buffer, handle->image,
|
|
|
|
|
VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, 1, ®ion);
|
2024-05-04 09:25:13 +02:00
|
|
|
|
2024-05-15 15:27:13 +02:00
|
|
|
commandPool->getCommands()->bindResource(PBufferAllocation(stagingAlloc));
|
2024-06-11 14:15:29 +02:00
|
|
|
generateMipmaps();
|
2024-05-04 09:25:13 +02:00
|
|
|
// When loading a texture from a file, we will almost always use it as a texture map for fragment shaders
|
2024-06-09 12:20:04 +02:00
|
|
|
changeLayout(Gfx::SE_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL, VK_ACCESS_TRANSFER_WRITE_BIT, VK_PIPELINE_STAGE_TRANSFER_BIT,
|
|
|
|
|
VK_ACCESS_SHADER_READ_BIT, VK_PIPELINE_STAGE_FRAGMENT_SHADER_BIT);
|
2024-05-15 15:27:13 +02:00
|
|
|
graphics->getDestructionManager()->queueResourceForDestruction(std::move(stagingAlloc));
|
2024-06-09 12:20:04 +02:00
|
|
|
} else {
|
|
|
|
|
if (usage & VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT) {
|
|
|
|
|
changeLayout(Gfx::SE_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL, VK_ACCESS_NONE, VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT,
|
|
|
|
|
VK_ACCESS_DEPTH_STENCIL_ATTACHMENT_WRITE_BIT, VK_PIPELINE_STAGE_EARLY_FRAGMENT_TESTS_BIT);
|
|
|
|
|
} else if (usage & VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT) {
|
|
|
|
|
changeLayout(Gfx::SE_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL, VK_ACCESS_NONE, VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT,
|
|
|
|
|
VK_ACCESS_COLOR_ATTACHMENT_WRITE_BIT, VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT);
|
|
|
|
|
} else {
|
|
|
|
|
changeLayout(Gfx::SE_IMAGE_LAYOUT_GENERAL, VK_ACCESS_NONE, VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT, VK_ACCESS_MEMORY_WRITE_BIT,
|
|
|
|
|
VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT);
|
2024-05-04 09:25:13 +02:00
|
|
|
}
|
2020-10-14 01:49:43 +02:00
|
|
|
}
|
2023-11-15 17:42:57 +01:00
|
|
|
VkImageViewCreateInfo viewInfo = {
|
|
|
|
|
.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO,
|
|
|
|
|
.pNext = nullptr,
|
|
|
|
|
.flags = 0,
|
2024-05-15 15:27:13 +02:00
|
|
|
.image = handle->image,
|
2023-11-15 17:42:57 +01:00
|
|
|
.viewType = viewType,
|
|
|
|
|
.format = cast(format),
|
2024-06-09 12:20:04 +02:00
|
|
|
.subresourceRange =
|
|
|
|
|
{
|
|
|
|
|
.aspectMask = aspect,
|
|
|
|
|
.levelCount = mipLevels,
|
|
|
|
|
.layerCount = layerCount,
|
|
|
|
|
},
|
2023-11-15 17:42:57 +01:00
|
|
|
};
|
2024-06-09 12:20:04 +02:00
|
|
|
|
2024-05-15 15:27:13 +02:00
|
|
|
VK_CHECK(vkCreateImageView(graphics->getDevice(), &viewInfo, nullptr, &handle->imageView));
|
2020-04-01 02:17:49 +02:00
|
|
|
}
|
|
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
TextureBase::~TextureBase() { graphics->getDestructionManager()->queueResourceForDestruction(std::move(handle)); }
|
2020-04-01 02:17:49 +02:00
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
VkImage TextureBase::getImage() const { return handle->image; }
|
2024-05-15 15:27:13 +02:00
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
VkImageView TextureBase::getView() const { return handle->imageView; }
|
2020-10-03 11:00:10 +02:00
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
void TextureBase::changeLayout(Gfx::SeImageLayout newLayout, VkAccessFlags srcAccess, VkPipelineStageFlags srcStage,
|
|
|
|
|
VkAccessFlags dstAccess, VkPipelineStageFlags dstStage) {
|
2023-11-15 17:42:57 +01:00
|
|
|
VkImageMemoryBarrier barrier = {
|
|
|
|
|
.sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER,
|
|
|
|
|
.pNext = nullptr,
|
2024-01-31 09:49:53 +01:00
|
|
|
.srcAccessMask = srcAccess,
|
|
|
|
|
.dstAccessMask = dstAccess,
|
2023-11-15 17:42:57 +01:00
|
|
|
.oldLayout = cast(layout),
|
|
|
|
|
.newLayout = cast(newLayout),
|
|
|
|
|
.srcQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED,
|
|
|
|
|
.dstQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED,
|
2024-05-15 15:27:13 +02:00
|
|
|
.image = handle->image,
|
2024-06-09 12:20:04 +02:00
|
|
|
.subresourceRange =
|
|
|
|
|
{
|
|
|
|
|
.aspectMask = aspect,
|
|
|
|
|
.baseMipLevel = 0,
|
|
|
|
|
.levelCount = mipLevels,
|
|
|
|
|
.baseArrayLayer = 0,
|
|
|
|
|
.layerCount = layerCount,
|
|
|
|
|
},
|
2023-11-15 17:42:57 +01:00
|
|
|
};
|
|
|
|
|
PCommandPool commandPool = graphics->getQueueCommands(currentOwner);
|
2024-06-09 12:20:04 +02:00
|
|
|
vkCmdPipelineBarrier(commandPool->getCommands()->getHandle(), srcStage, dstStage, 0, 0, nullptr, 0, nullptr, 1, &barrier);
|
2024-05-15 15:27:13 +02:00
|
|
|
commandPool->getCommands()->bindResource(PTextureHandle(handle));
|
2023-11-15 17:42:57 +01:00
|
|
|
commandPool->submitCommands();
|
2020-06-02 11:46:18 +02:00
|
|
|
layout = newLayout;
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
void TextureBase::download(uint32 mipLevel, uint32 arrayLayer, uint32 face, Array<uint8>& buffer) {
|
2023-11-15 17:42:57 +01:00
|
|
|
uint64 imageSize = width * height * depth * Gfx::getFormatInfo(format).blockSize;
|
2023-02-13 14:56:13 +01:00
|
|
|
|
2024-01-17 17:57:59 +01:00
|
|
|
auto prevLayout = layout;
|
2024-06-09 12:20:04 +02:00
|
|
|
changeLayout(Gfx::SE_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, VK_ACCESS_MEMORY_WRITE_BIT, VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT,
|
|
|
|
|
VK_ACCESS_TRANSFER_READ_BIT, VK_PIPELINE_STAGE_TRANSFER_BIT);
|
2024-01-17 17:57:59 +01:00
|
|
|
void* data;
|
2024-05-15 15:27:13 +02:00
|
|
|
OBufferAllocation stagingAlloc = new BufferAllocation(graphics);
|
2024-01-18 18:39:44 +01:00
|
|
|
// always create a staging buffer since we do buffer -> image copy and the image may be in any tiling format
|
2024-01-17 17:57:59 +01:00
|
|
|
VkBufferCreateInfo stagingInfo = {
|
|
|
|
|
.sType = VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO,
|
|
|
|
|
.pNext = nullptr,
|
|
|
|
|
.flags = 0,
|
|
|
|
|
.size = imageSize,
|
2024-01-17 19:34:38 +01:00
|
|
|
.usage = VK_BUFFER_USAGE_TRANSFER_DST_BIT,
|
2024-01-17 17:57:59 +01:00
|
|
|
.sharingMode = VK_SHARING_MODE_EXCLUSIVE,
|
|
|
|
|
};
|
|
|
|
|
VmaAllocationCreateInfo alloc = {
|
2024-01-18 18:39:44 +01:00
|
|
|
.flags = VMA_ALLOCATION_CREATE_MAPPED_BIT | VMA_ALLOCATION_CREATE_HOST_ACCESS_RANDOM_BIT,
|
2024-01-20 19:14:19 +01:00
|
|
|
.usage = VMA_MEMORY_USAGE_AUTO,
|
2024-01-17 17:57:59 +01:00
|
|
|
};
|
2024-05-15 15:27:13 +02:00
|
|
|
VK_CHECK(vmaCreateBuffer(graphics->getAllocator(), &stagingInfo, &alloc, &stagingAlloc->buffer, &stagingAlloc->allocation, nullptr));
|
|
|
|
|
vmaSetAllocationName(graphics->getAllocator(), stagingAlloc->allocation, "DownloadBuffer");
|
2024-01-17 17:57:59 +01:00
|
|
|
|
2023-11-15 17:42:57 +01:00
|
|
|
PCommand cmdBuffer = graphics->getQueueCommands(currentOwner)->getCommands();
|
2024-06-09 12:20:04 +02:00
|
|
|
// Gfx::FormatCompatibilityInfo formatInfo = Gfx::getFormatInfo(format);
|
2023-02-13 14:56:13 +01:00
|
|
|
VkBufferImageCopy region = {
|
|
|
|
|
.bufferOffset = 0,
|
|
|
|
|
.bufferRowLength = 0,
|
|
|
|
|
.bufferImageHeight = 0,
|
2024-06-09 12:20:04 +02:00
|
|
|
.imageSubresource =
|
|
|
|
|
{
|
|
|
|
|
.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT,
|
|
|
|
|
.mipLevel = mipLevel,
|
|
|
|
|
.baseArrayLayer = arrayLayer * layerCount + face,
|
|
|
|
|
.layerCount = 1,
|
|
|
|
|
},
|
|
|
|
|
.imageOffset =
|
|
|
|
|
{
|
|
|
|
|
.x = 0,
|
|
|
|
|
.y = 0,
|
|
|
|
|
.z = 0,
|
|
|
|
|
},
|
|
|
|
|
.imageExtent = {.width = width, .height = height, .depth = depth},
|
2023-02-13 14:56:13 +01:00
|
|
|
};
|
2024-05-15 15:27:13 +02:00
|
|
|
vkCmdCopyImageToBuffer(cmdBuffer->getHandle(), handle->image, VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, stagingAlloc->buffer, 1, ®ion);
|
|
|
|
|
cmdBuffer->bindResource(PBufferAllocation(stagingAlloc));
|
2024-06-09 12:20:04 +02:00
|
|
|
changeLayout(prevLayout, VK_ACCESS_TRANSFER_READ_BIT, VK_PIPELINE_STAGE_TRANSFER_BIT, VK_ACCESS_MEMORY_READ_BIT,
|
|
|
|
|
VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT);
|
2024-05-15 15:27:13 +02:00
|
|
|
VK_CHECK(vmaMapMemory(graphics->getAllocator(), stagingAlloc->allocation, &data));
|
2024-01-17 17:57:59 +01:00
|
|
|
buffer.resize(imageSize);
|
2023-02-13 14:56:13 +01:00
|
|
|
std::memcpy(buffer.data(), data, buffer.size());
|
2024-05-15 15:27:13 +02:00
|
|
|
vmaUnmapMemory(graphics->getAllocator(), stagingAlloc->allocation);
|
|
|
|
|
graphics->getDestructionManager()->queueResourceForDestruction(std::move(stagingAlloc));
|
2023-02-13 14:56:13 +01:00
|
|
|
}
|
|
|
|
|
|
2024-06-11 14:15:29 +02:00
|
|
|
void TextureBase::generateMipmaps() {
|
|
|
|
|
PCommandPool commandPool = graphics->getQueueCommands(currentOwner);
|
|
|
|
|
VkImageMemoryBarrier barrier = {
|
|
|
|
|
.sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER,
|
|
|
|
|
.srcAccessMask = VK_ACCESS_TRANSFER_WRITE_BIT,
|
|
|
|
|
.dstAccessMask = VK_ACCESS_TRANSFER_READ_BIT,
|
|
|
|
|
.oldLayout = VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL,
|
|
|
|
|
.newLayout = VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL,
|
|
|
|
|
.srcQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED,
|
|
|
|
|
.dstQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED,
|
|
|
|
|
.image = handle->image,
|
|
|
|
|
.subresourceRange =
|
|
|
|
|
{
|
|
|
|
|
.aspectMask = aspect,
|
|
|
|
|
.levelCount = 1,
|
|
|
|
|
.baseArrayLayer = 0,
|
|
|
|
|
.layerCount = 1,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
int32 mipWidth = width;
|
|
|
|
|
int32 mipHeight = height;
|
|
|
|
|
for (uint32 i = 1; i < mipLevels; ++i) {
|
|
|
|
|
barrier.subresourceRange.baseMipLevel = i - 1;
|
|
|
|
|
|
|
|
|
|
vkCmdPipelineBarrier(commandPool->getCommands()->getHandle(), VK_PIPELINE_STAGE_TRANSFER_BIT, VK_PIPELINE_STAGE_TRANSFER_BIT, 0, 0,
|
|
|
|
|
nullptr, 0, nullptr, 1, &barrier);
|
|
|
|
|
|
|
|
|
|
VkImageBlit blit = {
|
|
|
|
|
.srcSubresource =
|
|
|
|
|
{
|
|
|
|
|
.aspectMask = aspect,
|
|
|
|
|
.mipLevel = i - 1,
|
|
|
|
|
.baseArrayLayer = 0,
|
|
|
|
|
.layerCount = 1,
|
|
|
|
|
},
|
|
|
|
|
.srcOffsets =
|
|
|
|
|
{
|
|
|
|
|
{0, 0, 0},
|
|
|
|
|
{mipWidth, mipHeight, 1},
|
|
|
|
|
},
|
|
|
|
|
.dstSubresource = {.aspectMask = aspect, .mipLevel = i, .baseArrayLayer = 0, .layerCount = 1},
|
|
|
|
|
.dstOffsets =
|
|
|
|
|
{
|
|
|
|
|
{0, 0, 0},
|
|
|
|
|
{mipWidth > 1 ? mipWidth / 2 : 1, mipHeight > 1 ? mipHeight / 2 : 1, 1},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
vkCmdBlitImage(commandPool->getCommands()->getHandle(), handle->image, VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, handle->image,
|
|
|
|
|
VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, 1, &blit, aspect & VK_IMAGE_ASPECT_DEPTH_BIT ? VK_FILTER_NEAREST : VK_FILTER_LINEAR);
|
|
|
|
|
|
|
|
|
|
if (mipWidth > 1)
|
|
|
|
|
mipWidth /= 2;
|
|
|
|
|
if (mipHeight)
|
|
|
|
|
mipHeight /= 2;
|
|
|
|
|
}
|
|
|
|
|
barrier.subresourceRange.baseMipLevel = mipLevels - 1;
|
|
|
|
|
|
|
|
|
|
// just so that all levels are in the same layout and we can transition them as one
|
|
|
|
|
vkCmdPipelineBarrier(commandPool->getCommands()->getHandle(), VK_PIPELINE_STAGE_TRANSFER_BIT, VK_PIPELINE_STAGE_TRANSFER_BIT, 0, 0,
|
|
|
|
|
nullptr, 0, nullptr, 1, &barrier);
|
|
|
|
|
layout = Gfx::SE_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL;
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
void TextureBase::executeOwnershipBarrier(Gfx::QueueType newOwner) {
|
2023-11-15 17:42:57 +01:00
|
|
|
Gfx::QueueFamilyMapping mapping = graphics->getFamilyMapping();
|
|
|
|
|
VkImageMemoryBarrier imageBarrier = {
|
|
|
|
|
.sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER,
|
|
|
|
|
.pNext = nullptr,
|
|
|
|
|
.oldLayout = cast(layout),
|
|
|
|
|
.newLayout = cast(layout),
|
|
|
|
|
.srcQueueFamilyIndex = mapping.getQueueTypeFamilyIndex(currentOwner),
|
|
|
|
|
.dstQueueFamilyIndex = mapping.getQueueTypeFamilyIndex(newOwner),
|
2024-05-15 15:27:13 +02:00
|
|
|
.image = handle->image,
|
2024-06-09 12:20:04 +02:00
|
|
|
.subresourceRange =
|
|
|
|
|
{
|
|
|
|
|
.aspectMask = aspect,
|
|
|
|
|
.baseMipLevel = 0,
|
|
|
|
|
.levelCount = mipLevels,
|
|
|
|
|
.baseArrayLayer = 0,
|
|
|
|
|
.layerCount = arrayCount,
|
|
|
|
|
},
|
2023-11-15 17:42:57 +01:00
|
|
|
};
|
|
|
|
|
PCommandPool sourcePool = graphics->getQueueCommands(currentOwner);
|
|
|
|
|
PCommandPool dstPool = nullptr;
|
2020-04-12 15:47:19 +02:00
|
|
|
VkPipelineStageFlags srcStage = VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT;
|
|
|
|
|
VkPipelineStageFlags dstStage = VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT;
|
2024-06-09 12:20:04 +02:00
|
|
|
if (currentOwner == Gfx::QueueType::TRANSFER) {
|
2020-04-12 15:47:19 +02:00
|
|
|
imageBarrier.srcAccessMask = VK_ACCESS_TRANSFER_WRITE_BIT;
|
|
|
|
|
srcStage = VK_PIPELINE_STAGE_TRANSFER_BIT;
|
2024-06-09 12:20:04 +02:00
|
|
|
} else if (currentOwner == Gfx::QueueType::COMPUTE) {
|
2020-04-12 15:47:19 +02:00
|
|
|
imageBarrier.srcAccessMask = VK_ACCESS_MEMORY_WRITE_BIT;
|
|
|
|
|
srcStage = VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT;
|
2024-06-09 12:20:04 +02:00
|
|
|
} else if (currentOwner == Gfx::QueueType::GRAPHICS) {
|
2020-04-12 15:47:19 +02:00
|
|
|
imageBarrier.srcAccessMask = VK_ACCESS_MEMORY_WRITE_BIT;
|
|
|
|
|
srcStage = VK_PIPELINE_STAGE_ALL_GRAPHICS_BIT;
|
|
|
|
|
}
|
2024-06-09 12:20:04 +02:00
|
|
|
if (newOwner == Gfx::QueueType::TRANSFER) {
|
2020-04-12 15:47:19 +02:00
|
|
|
imageBarrier.dstAccessMask = VK_ACCESS_TRANSFER_READ_BIT;
|
|
|
|
|
dstStage = VK_PIPELINE_STAGE_TRANSFER_BIT;
|
2023-11-15 17:42:57 +01:00
|
|
|
dstPool = graphics->getTransferCommands();
|
2024-06-09 12:20:04 +02:00
|
|
|
} else if (newOwner == Gfx::QueueType::COMPUTE) {
|
2020-04-12 15:47:19 +02:00
|
|
|
imageBarrier.dstAccessMask = VK_ACCESS_MEMORY_READ_BIT;
|
|
|
|
|
dstStage = VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT;
|
2023-11-15 17:42:57 +01:00
|
|
|
dstPool = graphics->getComputeCommands();
|
2024-06-09 12:20:04 +02:00
|
|
|
} else if (newOwner == Gfx::QueueType::GRAPHICS) {
|
2020-04-12 15:47:19 +02:00
|
|
|
imageBarrier.dstAccessMask = VK_ACCESS_MEMORY_READ_BIT;
|
|
|
|
|
dstStage = VK_PIPELINE_STAGE_ALL_GRAPHICS_BIT;
|
2023-11-15 17:42:57 +01:00
|
|
|
dstPool = graphics->getGraphicsCommands();
|
2020-04-12 15:47:19 +02:00
|
|
|
}
|
2024-06-09 12:20:04 +02:00
|
|
|
|
2023-11-15 17:42:57 +01:00
|
|
|
VkCommandBuffer sourceCmd = sourcePool->getCommands()->getHandle();
|
|
|
|
|
VkCommandBuffer destCmd = dstPool->getCommands()->getHandle();
|
2024-05-15 15:27:13 +02:00
|
|
|
sourcePool->getCommands()->bindResource(PTextureHandle(handle));
|
|
|
|
|
dstPool->getCommands()->bindResource(PTextureHandle(handle));
|
2021-09-23 10:10:39 +02:00
|
|
|
vkCmdPipelineBarrier(sourceCmd, srcStage, srcStage, 0, 0, nullptr, 0, nullptr, 1, &imageBarrier);
|
|
|
|
|
vkCmdPipelineBarrier(destCmd, dstStage, dstStage, 0, 0, nullptr, 0, nullptr, 1, &imageBarrier);
|
2021-05-10 23:57:55 +02:00
|
|
|
currentOwner = newOwner;
|
2023-11-15 17:42:57 +01:00
|
|
|
sourcePool->submitCommands();
|
2020-04-12 15:47:19 +02:00
|
|
|
}
|
2020-04-01 02:17:49 +02:00
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
void TextureBase::executePipelineBarrier(VkAccessFlags srcAccess, VkPipelineStageFlags srcStage, VkAccessFlags dstAccess,
|
|
|
|
|
VkPipelineStageFlags dstStage) {
|
2023-11-15 17:42:57 +01:00
|
|
|
VkImageMemoryBarrier barrier = {
|
|
|
|
|
.sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER,
|
|
|
|
|
.pNext = nullptr,
|
|
|
|
|
.srcAccessMask = srcAccess,
|
|
|
|
|
.dstAccessMask = dstAccess,
|
|
|
|
|
.oldLayout = cast(layout),
|
|
|
|
|
.newLayout = cast(layout),
|
|
|
|
|
.srcQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED,
|
|
|
|
|
.dstQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED,
|
2024-05-15 15:27:13 +02:00
|
|
|
.image = handle->image,
|
2024-06-09 12:20:04 +02:00
|
|
|
.subresourceRange =
|
|
|
|
|
{
|
|
|
|
|
.aspectMask = aspect,
|
|
|
|
|
.baseMipLevel = 0,
|
2024-06-11 14:15:29 +02:00
|
|
|
.levelCount = mipLevels,
|
2024-06-09 12:20:04 +02:00
|
|
|
.baseArrayLayer = 0,
|
|
|
|
|
.layerCount = 1,
|
|
|
|
|
},
|
2023-11-15 17:42:57 +01:00
|
|
|
};
|
|
|
|
|
PCommand command = graphics->getQueueCommands(currentOwner)->getCommands();
|
|
|
|
|
vkCmdPipelineBarrier(command->getHandle(), srcStage, dstStage, 0, 0, nullptr, 0, nullptr, 1, &barrier);
|
2024-05-15 15:27:13 +02:00
|
|
|
command->bindResource(PTextureHandle(handle));
|
2020-04-12 15:47:19 +02:00
|
|
|
}
|
|
|
|
|
|
2020-06-02 11:46:18 +02:00
|
|
|
Texture2D::Texture2D(PGraphics graphics, const TextureCreateInfo& createInfo, VkImage existingImage)
|
2024-06-09 12:20:04 +02:00
|
|
|
: Gfx::Texture2D(graphics->getFamilyMapping(), createInfo.sourceData.owner),
|
|
|
|
|
TextureBase(graphics, createInfo.elements > 1 ? VK_IMAGE_VIEW_TYPE_2D_ARRAY : VK_IMAGE_VIEW_TYPE_2D, createInfo,
|
|
|
|
|
Gfx::Texture2D::currentOwner, existingImage) {}
|
2020-04-01 02:17:49 +02:00
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
Texture2D::~Texture2D() {}
|
2020-06-02 11:46:18 +02:00
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
void Texture2D::changeLayout(Gfx::SeImageLayout newLayout, Gfx::SeAccessFlags srcAccess, Gfx::SePipelineStageFlags srcStage,
|
|
|
|
|
Gfx::SeAccessFlags dstAccess, Gfx::SePipelineStageFlags dstStage) {
|
2024-01-31 09:49:53 +01:00
|
|
|
TextureBase::changeLayout(newLayout, srcAccess, srcStage, dstAccess, dstStage);
|
2021-05-10 23:57:55 +02:00
|
|
|
}
|
|
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
void Texture2D::download(uint32 mipLevel, uint32 arrayLayer, uint32 face, Array<uint8>& buffer) {
|
2023-11-15 17:42:57 +01:00
|
|
|
TextureBase::download(mipLevel, arrayLayer, face, buffer);
|
2023-02-13 14:56:13 +01:00
|
|
|
}
|
|
|
|
|
|
2024-06-11 14:15:29 +02:00
|
|
|
void Texture2D::generateMipmaps() { TextureBase::generateMipmaps(); }
|
|
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
void Texture2D::executeOwnershipBarrier(Gfx::QueueType newOwner) { TextureBase::executeOwnershipBarrier(newOwner); }
|
2021-05-10 23:57:55 +02:00
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
void Texture2D::executePipelineBarrier(VkAccessFlags srcAccess, VkPipelineStageFlags srcStage, VkAccessFlags dstAccess,
|
|
|
|
|
VkPipelineStageFlags dstStage) {
|
2023-11-15 17:42:57 +01:00
|
|
|
TextureBase::executePipelineBarrier(srcAccess, srcStage, dstAccess, dstStage);
|
2023-01-29 18:58:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Texture3D::Texture3D(PGraphics graphics, const TextureCreateInfo& createInfo, VkImage existingImage)
|
2024-06-09 12:20:04 +02:00
|
|
|
: Gfx::Texture3D(graphics->getFamilyMapping(), createInfo.sourceData.owner),
|
|
|
|
|
TextureBase(graphics, VK_IMAGE_VIEW_TYPE_3D, createInfo, Gfx::Texture3D::currentOwner, existingImage) {}
|
2023-01-29 18:58:59 +01:00
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
Texture3D::~Texture3D() {}
|
2023-01-29 18:58:59 +01:00
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
void Texture3D::changeLayout(Gfx::SeImageLayout newLayout, Gfx::SeAccessFlags srcAccess, Gfx::SePipelineStageFlags srcStage,
|
|
|
|
|
Gfx::SeAccessFlags dstAccess, Gfx::SePipelineStageFlags dstStage) {
|
2024-01-31 09:49:53 +01:00
|
|
|
TextureBase::changeLayout(newLayout, srcAccess, srcStage, dstAccess, dstStage);
|
2023-01-29 18:58:59 +01:00
|
|
|
}
|
|
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
void Texture3D::download(uint32 mipLevel, uint32 arrayLayer, uint32 face, Array<uint8>& buffer) {
|
2023-11-15 17:42:57 +01:00
|
|
|
TextureBase::download(mipLevel, arrayLayer, face, buffer);
|
2023-02-13 14:56:13 +01:00
|
|
|
}
|
2024-06-11 14:15:29 +02:00
|
|
|
|
|
|
|
|
void Texture3D::generateMipmaps() { TextureBase::generateMipmaps(); }
|
|
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
void Texture3D::executeOwnershipBarrier(Gfx::QueueType newOwner) { TextureBase::executeOwnershipBarrier(newOwner); }
|
2023-01-29 18:58:59 +01:00
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
void Texture3D::executePipelineBarrier(VkAccessFlags srcAccess, VkPipelineStageFlags srcStage, VkAccessFlags dstAccess,
|
|
|
|
|
VkPipelineStageFlags dstStage) {
|
2023-11-15 17:42:57 +01:00
|
|
|
TextureBase::executePipelineBarrier(srcAccess, srcStage, dstAccess, dstStage);
|
2023-01-29 18:58:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TextureCube::TextureCube(PGraphics graphics, const TextureCreateInfo& createInfo, VkImage existingImage)
|
2024-06-09 12:20:04 +02:00
|
|
|
: Gfx::TextureCube(graphics->getFamilyMapping(), createInfo.sourceData.owner),
|
|
|
|
|
TextureBase(graphics, createInfo.elements > 1 ? VK_IMAGE_VIEW_TYPE_CUBE_ARRAY : VK_IMAGE_VIEW_TYPE_CUBE, createInfo,
|
|
|
|
|
Gfx::TextureCube::currentOwner, existingImage) {}
|
2023-01-29 18:58:59 +01:00
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
TextureCube::~TextureCube() {}
|
2023-01-29 18:58:59 +01:00
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
void TextureCube::changeLayout(Gfx::SeImageLayout newLayout, Gfx::SeAccessFlags srcAccess, Gfx::SePipelineStageFlags srcStage,
|
|
|
|
|
Gfx::SeAccessFlags dstAccess, Gfx::SePipelineStageFlags dstStage) {
|
2024-01-31 09:49:53 +01:00
|
|
|
TextureBase::changeLayout(newLayout, srcAccess, srcStage, dstAccess, dstStage);
|
2023-01-29 18:58:59 +01:00
|
|
|
}
|
|
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
void TextureCube::download(uint32 mipLevel, uint32 arrayLayer, uint32 face, Array<uint8>& buffer) {
|
2023-11-15 17:42:57 +01:00
|
|
|
TextureBase::download(mipLevel, arrayLayer, face, buffer);
|
2023-02-13 14:56:13 +01:00
|
|
|
}
|
2024-06-11 14:15:29 +02:00
|
|
|
|
|
|
|
|
void TextureCube::generateMipmaps() { TextureBase::generateMipmaps(); }
|
|
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
void TextureCube::executeOwnershipBarrier(Gfx::QueueType newOwner) { TextureBase::executeOwnershipBarrier(newOwner); }
|
2023-01-29 18:58:59 +01:00
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
void TextureCube::executePipelineBarrier(VkAccessFlags srcAccess, VkPipelineStageFlags srcStage, VkAccessFlags dstAccess,
|
|
|
|
|
VkPipelineStageFlags dstStage) {
|
2023-11-15 17:42:57 +01:00
|
|
|
TextureBase::executePipelineBarrier(srcAccess, srcStage, dstAccess, dstStage);
|
2023-01-29 18:58:59 +01:00
|
|
|
}
|