browser DOM support

This commit is contained in:
Jorijn van der Graaf 2026-05-18 02:07:48 +02:00
commit 5352ef69a2
37 changed files with 2637 additions and 59 deletions

View file

@ -18,7 +18,11 @@ 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;
// DOM builds drop the Vulkan header — DescriptorBinding (the only
// Vk-typed entity here) compiles out under the same guard below.
#ifndef CRAFTER_GRAPHICS_WINDOW_DOM
#include "vulkan/vulkan.h"
#endif
export module Crafter.Graphics:Types;
import std;
import Crafter.Math;
@ -245,8 +249,10 @@ export namespace Crafter {
return std::tan(fov * std::numbers::pi / 360.0);
}
#ifndef CRAFTER_GRAPHICS_WINDOW_DOM
struct DescriptorBinding {
VkDescriptorType type;
std::uint32_t slot;
};
#endif
}