2026-01-28 23:37:12 +01:00
|
|
|
/*
|
|
|
|
|
Crafter®.Graphics
|
|
|
|
|
Copyright (C) 2026 Catcrafts®
|
|
|
|
|
catcrafts.net
|
|
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
License version 3.0 as published by the Free Software Foundation;
|
|
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
License along with this library; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
module;
|
2026-03-09 20:10:19 +01:00
|
|
|
#ifdef CRAFTER_GRAPHICS_RENDERER_VULKAN
|
2026-03-02 23:53:13 +01:00
|
|
|
#include "vulkan/vulkan.h"
|
2026-01-28 23:37:12 +01:00
|
|
|
#endif
|
|
|
|
|
export module Crafter.Graphics:ShaderVulkan;
|
2026-03-09 20:10:19 +01:00
|
|
|
#ifdef CRAFTER_GRAPHICS_RENDERER_VULKAN
|
2026-01-28 23:37:12 +01:00
|
|
|
import std;
|
2026-03-09 20:10:19 +01:00
|
|
|
import :Device;
|
2026-01-28 23:37:12 +01:00
|
|
|
import :Types;
|
|
|
|
|
|
|
|
|
|
export namespace Crafter {
|
2026-02-22 00:46:38 +01:00
|
|
|
class VulkanShader {
|
|
|
|
|
public:
|
2026-04-05 22:53:59 +02:00
|
|
|
std::vector<VkSpecializationMapEntry> specilizations;
|
|
|
|
|
VkSpecializationInfo* specilizationInfo;
|
2026-02-22 00:46:38 +01:00
|
|
|
VkShaderStageFlagBits stage;
|
|
|
|
|
std::string entrypoint;
|
|
|
|
|
VkShaderModule shader;
|
2026-04-05 22:53:59 +02:00
|
|
|
VulkanShader(const std::filesystem::path& path, std::string entrypoint, VkShaderStageFlagBits stage, VkSpecializationInfo* specilizationInfo) : stage(stage), entrypoint(entrypoint), specilizationInfo(specilizationInfo) {
|
2026-02-22 00:46:38 +01:00
|
|
|
std::ifstream file(path, std::ios::binary);
|
|
|
|
|
if (!file) {
|
|
|
|
|
std::cerr << "Error: Could not open file " << path << std::endl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Move to the end of the file to determine its size
|
|
|
|
|
file.seekg(0, std::ios::end);
|
|
|
|
|
std::streamsize size = file.tellg();
|
|
|
|
|
file.seekg(0, std::ios::beg);
|
|
|
|
|
|
|
|
|
|
std::vector<std::uint32_t> spirv(size / sizeof(std::uint32_t));
|
|
|
|
|
|
|
|
|
|
// Read the data into the vector
|
|
|
|
|
if (!file.read(reinterpret_cast<char*>(spirv.data()), size)) {
|
|
|
|
|
std::cerr << "Error: Could not read data from file" << std::endl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
file.close();
|
|
|
|
|
|
|
|
|
|
VkShaderModuleCreateInfo module_info{VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO};
|
|
|
|
|
module_info.codeSize = spirv.size() * sizeof(uint32_t);
|
|
|
|
|
module_info.pCode = spirv.data();
|
|
|
|
|
|
2026-03-09 20:10:19 +01:00
|
|
|
Device::CheckVkResult(vkCreateShaderModule(Device::device, &module_info, nullptr, &shader));
|
2026-02-22 00:46:38 +01:00
|
|
|
}
|
|
|
|
|
};
|
2026-01-28 23:37:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|