mirror of
https://github.com/encounter/aurora.git
synced 2025-07-21 12:36:02 +00:00
13 lines
250 B
C++
13 lines
250 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
#include <webgpu/webgpu_cpp.h>
|
|
|
|
struct SDL_Window;
|
|
|
|
namespace aurora::webgpu::utils {
|
|
|
|
std::unique_ptr<wgpu::ChainedStruct> SetupWindowAndGetSurfaceDescriptor(SDL_Window* window);
|
|
|
|
} // namespace aurora::webgpu::utils
|