63 lines
2.1 KiB
C++
63 lines
2.1 KiB
C++
/*
|
|
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 as published by the Free Software Foundation; either
|
|
version 3.0 of the License, or (at your option) any later version.
|
|
|
|
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
|
|
*/
|
|
|
|
export module Crafter.Graphics;
|
|
|
|
// Every partition is `export import`'d unconditionally. Crafter.Build's
|
|
// dependency scanner doesn't respect `#ifdef` on `import :X`, so the
|
|
// partition file must always exist. Vulkan-typed partitions stub to
|
|
// empty modules under CRAFTER_GRAPHICS_WINDOW_DOM, and the new Dom /
|
|
// DomEvents / Router partitions stub to empty modules in native
|
|
// builds — see project.cpp for the master list.
|
|
export import :Types;
|
|
export import :Keys;
|
|
export import :Gamepad;
|
|
export import :Window;
|
|
export import :Input;
|
|
export import :Device;
|
|
export import :Animation;
|
|
export import :ForwardDeclarations;
|
|
export import :Clipboard;
|
|
|
|
// Vulkan-backed partitions — empty under DOM.
|
|
export import :Font;
|
|
export import :Mesh;
|
|
export import :VulkanTransition;
|
|
export import :VulkanBuffer;
|
|
export import :ShaderVulkan;
|
|
export import :ShaderBindingTableVulkan;
|
|
export import :PipelineRTVulkan;
|
|
export import :RenderingElement3D;
|
|
export import :ImageVulkan;
|
|
export import :SamplerVulkan;
|
|
export import :DescriptorHeapVulkan;
|
|
export import :RenderPass;
|
|
export import :RTPass;
|
|
export import :FontAtlas;
|
|
export import :ComputeShader;
|
|
export import :UI;
|
|
export import :UIComponents;
|
|
export import :InputField;
|
|
export import :Decompress;
|
|
|
|
// DOM-only partitions — empty under native.
|
|
export import :Dom;
|
|
export import :DomEvents;
|
|
export import :Router;
|