This commit is contained in:
Jorijn van der Graaf 2026-04-30 02:05:16 +02:00
commit d29f5609cd
2 changed files with 2 additions and 16 deletions

View file

@ -46,17 +46,4 @@ export import :ImageVulkan;
export import :SamplerVulkan; export import :SamplerVulkan;
export import :DescriptorHeapVulkan; export import :DescriptorHeapVulkan;
export import :RenderingElement2DVulkan; export import :RenderingElement2DVulkan;
#endif #endif
// export import :WindowWaylandVulkan;
// export import :VulkanBuffer;
// export import :VoxelShader;
// export import :Mesh;
// export import :MeshShader;
// export import :VulkanTexture;
// export import :TextureShader;
// export import :DescriptorSet;
// export import :HeightmapShader;
// export import :Device;
// export import :VulkanPipeline;
// export import :VulkanShader;

View file

@ -94,14 +94,13 @@ extern "C" Configuration CrafterBuildProject(std::span<const std::string_view> a
"interfaces/Crafter.Graphics-VulkanTransition", "interfaces/Crafter.Graphics-VulkanTransition",
"interfaces/Crafter.Graphics-Window", "interfaces/Crafter.Graphics-Window",
}; };
std::array<fs::path, 9> impls = { std::array<fs::path, 8> impls = {
"implementations/Crafter.Graphics-Device", "implementations/Crafter.Graphics-Device",
"implementations/Crafter.Graphics-Font", "implementations/Crafter.Graphics-Font",
"implementations/Crafter.Graphics-Mesh", "implementations/Crafter.Graphics-Mesh",
"implementations/Crafter.Graphics-MouseElement", "implementations/Crafter.Graphics-MouseElement",
"implementations/Crafter.Graphics-Rendertarget", "implementations/Crafter.Graphics-Rendertarget",
"implementations/Crafter.Graphics-RenderingElement3D", "implementations/Crafter.Graphics-RenderingElement3D",
"implementations/Crafter.Graphics-Shm",
"implementations/Crafter.Graphics-Transform2D", "implementations/Crafter.Graphics-Transform2D",
"implementations/Crafter.Graphics-Window", "implementations/Crafter.Graphics-Window",
}; };