16 mDescriptorSetLayout = mRenderer->CreateDescriptorSetLayout(material);
20 std::vector<char> spvVert;
21 std::vector<char> spvFrag;
26 std::string materialEntry =
"Shaders/" + matName;
28 std::vector<uint8_t> binaryFileDataVert =
Utility::ReadPackedFile(materialEntry +
"/" + std::string(matName +
"_vert.spv"));
29 std::vector<uint8_t> binaryFileDataFrag =
Utility::ReadPackedFile(materialEntry +
"/" + std::string(matName +
"_frag.spv"));
31 spvVert.assign(binaryFileDataVert.begin(), binaryFileDataVert.end());
32 spvFrag.assign(binaryFileDataFrag.begin(), binaryFileDataFrag.end());
42 mPipelinePair = mRenderer->CreateGraphicsPipeline(material, mDescriptorSetLayout, spvVert, spvFrag);
47 auto vulkanLogicalDevice = mRenderer->GetLogicalDevice();
48 vkDestroyDescriptorSetLayout(vulkanLogicalDevice, mDescriptorSetLayout,
nullptr);
50 vkDestroyPipeline(vulkanLogicalDevice, mPipelinePair.second,
nullptr);
51 vkDestroyPipelineLayout(vulkanLogicalDevice, mPipelinePair.first,
nullptr);
56 return mDescriptorSetLayout;
61 return mPipelinePair.first;
66 return mPipelinePair.second;
Represents a material instance with parameter values, texture bindings, and rendering configuration.
const MaterialSettings GetMaterialSettings() const
Returns the material's static settings (domain, blend mode, shading model, etc.).
static boost::filesystem::path GetShadersFolderPath()
Returns absolute path to Content/Shaders.
static std::vector< char > ReadShaderBinaryFile(std::string const &filename)
Reads a binary shader file from disk.
static const PackEntries & GetPackEntries()
Returns the manifest of packed files.
static std::vector< uint8_t > ReadPackedFile(const std::string &entryPath)
Reads raw bytes of a file stored inside Pack.bin.
static bool IsPackageProvided()
Checks whether packed assets (Pack.bin / Pack.json) exist.
VkPipeline GetPipeline() const
Gets the Vulkan graphics pipeline used by the material.
void Shutdown() override
Releases all Vulkan GPU resources associated with this material.
void Initialize(Material *material) override
Initializes Vulkan-specific GPU resources for the material.
VkPipelineLayout GetPipelineLayout() const
Gets the Vulkan pipeline layout used by the material.
VulkanMaterialResources(VulkanRenderer *renderer)
Constructs a VulkanMaterialResources instance.
VkDescriptorSetLayout GetDescriptorSetLayout() const
Gets the Vulkan descriptor set layout for the material.
Vulkan-based implementation of the IRenderer interface.