mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
FramebufferManager: Copy all EFB layers to the XFB framebuffer.
This commit is contained in:
parent
5526b39320
commit
12412ac5b7
2 changed files with 12 additions and 9 deletions
|
@ -68,7 +68,7 @@ public:
|
|||
static GLuint GetEFBColorTexture(const EFBRectangle& sourceRc);
|
||||
static GLuint GetEFBDepthTexture(const EFBRectangle& sourceRc);
|
||||
|
||||
static GLuint GetEFBFramebuffer() { return m_efbFramebuffer[0]; }
|
||||
static GLuint GetEFBFramebuffer(unsigned int layer = 0) { return (layer < m_EFBLayers) ? m_efbFramebuffer[layer] : m_efbFramebuffer[m_EFBLayers - 1]; }
|
||||
static GLuint GetXFBFramebuffer() { return m_xfbFramebuffer; }
|
||||
|
||||
// Resolved framebuffer is only used in MSAA mode.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue