mirror of https://github.com/AxioDL/metaforce.git
28 lines
696 B
C++
28 lines
696 B
C++
#pragma once
|
|
|
|
#include <dawn/native/DawnNative.h>
|
|
#include <dawn/webgpu_cpp.h>
|
|
|
|
struct SDL_Window;
|
|
|
|
namespace aurora::gpu::utils {
|
|
|
|
class BackendBinding {
|
|
public:
|
|
virtual ~BackendBinding() = default;
|
|
|
|
virtual uint64_t GetSwapChainImplementation() = 0;
|
|
virtual WGPUTextureFormat GetPreferredSwapChainTextureFormat() = 0;
|
|
|
|
protected:
|
|
BackendBinding(SDL_Window* window, WGPUDevice device);
|
|
|
|
SDL_Window* m_window = nullptr;
|
|
WGPUDevice m_device = nullptr;
|
|
};
|
|
|
|
void DiscoverAdapter(dawn::native::Instance* instance, SDL_Window* window, wgpu::BackendType type);
|
|
BackendBinding* CreateBinding(wgpu::BackendType type, SDL_Window* window, WGPUDevice device);
|
|
|
|
} // namespace aurora::gpu::utils
|