37 lines
949 B
C++
37 lines
949 B
C++
#pragma once
|
|
|
|
#include "xe_device.hpp"
|
|
|
|
#include <string>
|
|
|
|
namespace xe {
|
|
|
|
class XeImage {
|
|
|
|
public:
|
|
|
|
XeImage(XeDevice &xeDevice, const std::string &filename);
|
|
~XeImage();
|
|
|
|
XeImage(const XeImage&) = delete;
|
|
XeImage operator=(const XeImage&) = delete;
|
|
|
|
private:
|
|
|
|
void createTextureImage(const std::string &filename);
|
|
void createImage(uint32_t width, uint32_t height, VkFormat format, VkImageTiling tiling, VkImageUsageFlags usage, VkMemoryPropertyFlags properties, VkImage& image, VkDeviceMemory& imageMemory);
|
|
void transitionImageLayout(VkImage image, VkFormat format, VkImageLayout oldLayout, VkImageLayout newLayout);
|
|
void copyBufferToImage(VkBuffer buffer, VkImage image, uint32_t width, uint32_t height);
|
|
void createTextureImageView();
|
|
|
|
XeDevice &xeDevice;
|
|
|
|
VkImage textureImage;
|
|
VkImageView textureImageView;
|
|
VkDeviceMemory textureImageMemory;
|
|
|
|
friend class XeRenderSystem;
|
|
|
|
};
|
|
|
|
}
|