blob: 8b9a4f050c060043d5db632797de8c588e45bdaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "Entrypoint/Common.hpp"
class DirectX12Backend : public RenderingBackend {
public:
DirectX12Backend();
virtual ~DirectX12Backend() = default;
virtual void BeginFrame() override;
virtual void EndFrame() override;
};
|