blob: 95986c1dd593e750237135cd6f38d44ccca4b4fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Copyright 2008 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
namespace EfbCopy
{
// Copy the EFB to RAM as a texture format or XFB
void CopyEfb();
void ClearEfb();
}
|