mirror of
https://github.com/cemu-project/Cemu.git
synced 2024-12-01 21:44:17 +01:00
report vram usage
This commit is contained in:
parent
9bb7479d16
commit
9aa72e6295
@ -215,12 +215,10 @@ bool MetalRenderer::IsPadWindowActive()
|
||||
|
||||
bool MetalRenderer::GetVRAMInfo(int& usageInMB, int& totalInMB) const
|
||||
{
|
||||
debug_printf("MetalRenderer::GetVRAMInfo not implemented\n");
|
||||
usageInMB = m_device->currentAllocatedSize();
|
||||
totalInMB = usageInMB;
|
||||
|
||||
usageInMB = 1024;
|
||||
totalInMB = 1024;
|
||||
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
void MetalRenderer::ClearColorbuffer(bool padView)
|
||||
|
Loading…
Reference in New Issue
Block a user