Implement AbstractGfx for Software & Null

This commit is contained in:
Scott Mansell
2023-01-27 15:07:05 +13:00
parent f0336a3129
commit d37f83ffeb
15 changed files with 314 additions and 318 deletions

View File

@ -55,6 +55,8 @@ using ClearColor = std::array<float, 4>;
class AbstractGfx
{
public:
virtual ~AbstractGfx() = default;
virtual bool IsHeadless() const = 0;
virtual void SetPipeline(const AbstractPipeline* pipeline) {}