12 RenderTarget(VkImage swapchainImage, VkFormat format, uint32_t swapchainIndex);
13 RenderTarget(VkImage image, VkImageView imageView, VkFormat colorFormat);
17 void UpdateNativeImage(VkImage image, VkImageView imageView, VkFormat format);
18 void UpdateSwapChainImage(VkImage swapchainImage);
19 VkImage GetImage()
const;
20 VkImageView GetImageView()
const;
21 VkSampler GetSampler()
const;
23 virtual void Resize(uint32_t width, uint32_t height)
override;
24 virtual void RenderScreen(
unsigned int i,
unsigned int width,
unsigned int height,
unsigned char *data)
override;
26 void CreateTextureSampler();
30 VkSampler sampler =
nullptr;
31 VkImage image =
nullptr;
32 VkImageView imageView =
nullptr;
33 VkDeviceMemory imageMemory =
nullptr;
35 std::string debugName;
36 ColorFormat format = ColorFormat::Invalid;
39 bool isSampled =
false;
40 bool isWrittenByCompute =
false;
41 bool hasMipChain =
false;
42 bool isOwnedBySwapchain =
false;