GPU: More work on OpenGL renderer

This commit is contained in:
Connor McLaughlin
2019-09-13 00:18:13 +10:00
parent 4706a906d5
commit aea7a18ac2
20 changed files with 655 additions and 412 deletions

View File

@ -8,8 +8,9 @@ GPU::GPU() = default;
GPU::~GPU() = default;
bool GPU::Initialize(Bus* bus, DMA* dma)
bool GPU::Initialize(System* system, Bus* bus, DMA* dma)
{
m_system = system;
m_bus = bus;
m_dma = dma;
return true;