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