mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-07 22:55:40 +12:00
12 lines
No EOL
220 B
C++
12 lines
No EOL
220 B
C++
#pragma once
|
|
#include "helpers.hpp"
|
|
#include "memory.hpp"
|
|
|
|
class GPU {
|
|
Memory& mem;
|
|
|
|
public:
|
|
GPU(Memory& mem) : mem(mem) {}
|
|
void clearBuffer(u32 startAddress, u32 endAddress, u32 value, u32 control);
|
|
void reset();
|
|
}; |