mirror of
https://github.com/patchzyy/wiicompiled
synced 2026-09-11 17:31:29 -04: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::shared_ptr<wgpu::ChainedStruct> SetupWindowAndGetSurfaceDescriptor(SDL_Window* window);
|
|
|
|
} // namespace aurora::webgpu::utils
|