Crafter.Graphics/interfaces/Crafter.Graphics-ShaderBindingTableVulkan.cppm

45 lines
1.5 KiB
Text
Raw Normal View History

2026-01-31 21:08:42 +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-31 21:08:42 +01:00
#endif
export module Crafter.Graphics:ShaderBindingTableVulkan;
2026-03-09 20:10:19 +01:00
#ifdef CRAFTER_GRAPHICS_RENDERER_VULKAN
2026-01-31 21:08:42 +01:00
import std;
2026-03-09 20:10:19 +01:00
import :Device;
2026-01-31 21:08:42 +01:00
import :VulkanBuffer;
2026-02-22 00:46:38 +01:00
import :ShaderVulkan;
2026-01-31 21:08:42 +01:00
import :Types;
export namespace Crafter {
class ShaderBindingTableVulkan {
2026-02-22 00:46:38 +01:00
public:
std::vector<VkPipelineShaderStageCreateInfo> shaderStages;
void Init(std::span<VulkanShader> shaders) {
shaderStages.reserve(shaders.size());
for(const VulkanShader& shader: shaders) {
2026-04-05 22:53:59 +02:00
shaderStages.emplace_back(VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO, nullptr, 0, shader.stage, shader.shader, shader.entrypoint.c_str(), shader.specilizationInfo);
2026-02-22 00:46:38 +01:00
}
}
};
2026-01-31 21:08:42 +01:00
}
#endif