mod allocator;
#[cfg(target_os = "macos")]
mod appkit_window;
mod auto_exposure;
mod backend;
mod barrier_translate;
pub(crate) mod builtins;
mod composite;
mod context;
mod cull;
mod cull_readback;
mod decal;
mod descriptor_layout;
mod device;
mod draw;
mod error;
mod fog;
mod glass;
mod gpu_profile;
mod graph_exec;
mod hiz;
mod hot_reload;
mod init;
mod input;
mod instance_exts;
mod light_cull;
mod line;
mod loader;
mod main;
mod owned;
mod parallel_encoder;
mod particle;
mod pipeline;
mod pipeline_cache;
mod planar;
mod post;
mod probe;
mod probe_prefilter;
mod quality;
mod raymarch;
mod raytrace;
mod record;
mod render_pass;
mod resources;
mod screenshot;
mod shadow;
pub(crate) mod slang_builtins;
mod spot_shadow;
mod swapchain;
mod texture;
mod transient_pool;
mod transparent;
mod upload_ring;
mod water;
#[cfg(target_os = "windows")]
mod win32_window;
#[cfg(not(any(target_os = "macos", target_os = "windows")))]
pub(crate) mod window;
mod wireframe;
mod world_shaders;
#[cfg(target_os = "macos")]
pub(crate) use appkit_window::AppKitVkWindow as PlatformWindow;
#[cfg(target_os = "windows")]
pub(crate) use win32_window::Win32Window as PlatformWindow;
#[cfg(not(any(target_os = "macos", target_os = "windows")))]
pub(crate) use window::GlfwWindow as PlatformWindow;
pub(crate) use context::VkContext;
pub(crate) use gpu_profile::probe_gpu_profile;
pub(crate) use concinnity_core::render::vulkan::{pass_timing, uniforms};