[App] Rework graphics system creation.

This commit is contained in:
gibbed
2019-08-03 16:42:38 -05:00
parent 890a32bd98
commit 848e2a4088
5 changed files with 53 additions and 33 deletions

View File

@@ -24,6 +24,8 @@ class NullGraphicsSystem : public GraphicsSystem {
NullGraphicsSystem();
~NullGraphicsSystem() override;
static bool IsAvailable() { return true; }
std::wstring name() const override { return L"null"; }
X_STATUS Setup(cpu::Processor* processor, kernel::KernelState* kernel_state,