#pragma once #include #include #include #ifdef __GNUC__ [[noreturn]] inline __attribute__((always_inline)) void unreachable() { __builtin_unreachable(); } #elif defined(_MSC_VER) [[noreturn]] __forceinline void unreachable() { __assume(false); } #else #error Unknown compiler #endif struct SDL_Window; namespace aurora::gpu { struct GraphicsConfig { uint32_t width; uint32_t height; wgpu::TextureFormat colorFormat; wgpu::TextureFormat depthFormat; uint32_t msaaSamples; uint16_t textureAnisotropy; }; struct TextureWithSampler { wgpu::Texture texture; wgpu::TextureView view; wgpu::Extent3D size; wgpu::TextureFormat format; wgpu::Sampler sampler; }; constexpr std::array PreferredBackendOrder{ #ifdef DAWN_ENABLE_BACKEND_D3D12 wgpu::BackendType::D3D12, #endif #ifdef DAWN_ENABLE_BACKEND_METAL wgpu::BackendType::Metal, #endif #ifdef DAWN_ENABLE_BACKEND_VULKAN wgpu::BackendType::Vulkan, #endif #ifdef DAWN_ENABLE_BACKEND_DESKTOP_GL wgpu::BackendType::OpenGL, #endif #ifdef DAWN_ENABLE_BACKEND_OPENGLES wgpu::BackendType::OpenGLES, #endif }; extern wgpu::Device g_device; extern wgpu::Queue g_queue; extern wgpu::SwapChain g_swapChain; extern wgpu::BackendType g_backendType; extern GraphicsConfig g_graphicsConfig; extern TextureWithSampler g_frameBuffer; extern TextureWithSampler g_frameBufferResolved; extern TextureWithSampler g_depthBuffer; extern wgpu::RenderPipeline g_CopyPipeline; extern wgpu::BindGroup g_CopyBindGroup; bool initialize(SDL_Window* window, wgpu::BackendType backendType); void shutdown(); void resize_swapchain(uint32_t width, uint32_t height); TextureWithSampler create_render_texture(bool multisampled); } // namespace aurora::gpu namespace aurora::gpu::utils { template static consteval std::array make_vertex_attributes(std::array formats) { std::array attributes; uint64_t offset = 0; for (uint32_t i = 0; i < N; ++i) { auto format = formats[i]; attributes[i] = wgpu::VertexAttribute{ .format = format, .offset = offset, .shaderLocation = i, }; switch (format) { case wgpu::VertexFormat::Uint8x2: case wgpu::VertexFormat::Sint8x2: case wgpu::VertexFormat::Unorm8x2: case wgpu::VertexFormat::Snorm8x2: offset += 2; break; case wgpu::VertexFormat::Uint8x4: case wgpu::VertexFormat::Sint8x4: case wgpu::VertexFormat::Unorm8x4: case wgpu::VertexFormat::Snorm8x4: case wgpu::VertexFormat::Uint16x2: case wgpu::VertexFormat::Sint16x2: case wgpu::VertexFormat::Unorm16x2: case wgpu::VertexFormat::Snorm16x2: case wgpu::VertexFormat::Float16x2: case wgpu::VertexFormat::Float32: case wgpu::VertexFormat::Uint32: case wgpu::VertexFormat::Sint32: offset += 4; break; case wgpu::VertexFormat::Uint16x4: case wgpu::VertexFormat::Sint16x4: case wgpu::VertexFormat::Unorm16x4: case wgpu::VertexFormat::Snorm16x4: case wgpu::VertexFormat::Float16x4: case wgpu::VertexFormat::Float32x2: case wgpu::VertexFormat::Uint32x2: case wgpu::VertexFormat::Sint32x2: offset += 8; break; case wgpu::VertexFormat::Float32x3: case wgpu::VertexFormat::Uint32x3: case wgpu::VertexFormat::Sint32x3: offset += 12; break; case wgpu::VertexFormat::Float32x4: case wgpu::VertexFormat::Uint32x4: case wgpu::VertexFormat::Sint32x4: offset += 16; break; case wgpu::VertexFormat::Undefined: break; } } return attributes; } template static inline wgpu::VertexBufferLayout make_vertex_buffer_layout(uint64_t arrayStride, const std::array& attributes, wgpu::VertexStepMode stepMode = wgpu::VertexStepMode::Vertex) { return { .arrayStride = arrayStride, .stepMode = stepMode, .attributeCount = static_cast(attributes.size()), .attributes = attributes.data(), }; } template static inline wgpu::VertexState make_vertex_state(const wgpu::ShaderModule& module, const std::array& buffers, const char* entryPoint = "vs_main") { return { .module = module, .entryPoint = entryPoint, .bufferCount = static_cast(buffers.size()), .buffers = buffers.data(), }; } } // namespace aurora::gpu::utils