mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-05-01 01:34:48 +12:00
add: texture cache
This commit is contained in:
parent
8d94cce537
commit
bac3a8e040
6 changed files with 338 additions and 2 deletions
|
@ -17,6 +17,8 @@ RendererMTL::RendererMTL(GPU& gpu, const std::array<u32, regNum>& internalRegs,
|
|||
RendererMTL::~RendererMTL() {}
|
||||
|
||||
void RendererMTL::reset() {
|
||||
textureCache.reset();
|
||||
|
||||
// TODO: implement
|
||||
Helpers::warn("RendererMTL::reset not implemented");
|
||||
}
|
||||
|
@ -219,6 +221,8 @@ void RendererMTL::screenshot(const std::string& name) {
|
|||
}
|
||||
|
||||
void RendererMTL::deinitGraphicsContext() {
|
||||
textureCache.reset();
|
||||
|
||||
// TODO: implement
|
||||
Helpers::warn("RendererMTL::deinitGraphicsContext not implemented");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue