mirror of https://github.com/encounter/aurora.git
27 lines
814 B
C++
27 lines
814 B
C++
#include "BackendBinding.hpp"
|
|
|
|
#include <dawn/native/NullBackend.h>
|
|
|
|
namespace aurora::webgpu::utils {
|
|
class NullBinding : public BackendBinding {
|
|
public:
|
|
NullBinding(SDL_Window* window, WGPUDevice device) : BackendBinding(window, device) {}
|
|
|
|
uint64_t GetSwapChainImplementation() override {
|
|
if (m_swapChainImpl.userData == nullptr) {
|
|
m_swapChainImpl = dawn::native::null::CreateNativeSwapChainImpl();
|
|
}
|
|
return reinterpret_cast<uint64_t>(&m_swapChainImpl);
|
|
}
|
|
|
|
WGPUTextureFormat GetPreferredSwapChainTextureFormat() override {
|
|
return WGPUTextureFormat_RGBA8Unorm;
|
|
}
|
|
|
|
private:
|
|
DawnSwapChainImplementation m_swapChainImpl{};
|
|
};
|
|
|
|
BackendBinding* CreateNullBinding(SDL_Window* window, WGPUDevice device) { return new NullBinding(window, device); }
|
|
} // namespace aurora::webgpu::utils
|