Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
VulkanTexture.hpp
1#pragma once
2
3#include <Common/Graphics/Texture.hpp>
4#include <vulkan/vulkan.h>
5
6namespace Grindstone::GraphicsAPI::Vulkan {
8 public:
9 Texture(const CreateInfo& createInfo);
10 virtual ~Texture();
11 public:
12 virtual VkImageView GetImageView() const;
13 VkSampler GetSampler() const;
14 virtual void RecreateTexture(const CreateInfo& createInfo) override;
15 private:
16 void CreateTextureImage(const CreateInfo &createInfo, uint32_t &mipLevels, uint32_t layerCount);
17 void CreateTextureSampler(const CreateInfo &createInfo, uint32_t mipLevels);
18 void GenerateMipmaps(VkImage image, VkFormat imageFormat, int32_t texWidth, int32_t texHeight, uint32_t mipLevels);
19
20 VkDeviceMemory imageMemory = nullptr;
21 VkImageView imageView = nullptr;
22 VkSampler sampler = nullptr;
23 VkImage image = nullptr;
24 VkFormat format = VK_FORMAT_UNDEFINED;
25 };
26}
Definition Texture.hpp:40
Definition VulkanTexture.hpp:7