2013-04-18 03:29:41 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
#include "Globals.h"
|
|
|
|
#include "FramebufferManager.h"
|
2012-12-07 20:09:48 +00:00
|
|
|
#include "VertexShaderGen.h"
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
#include "TextureConverter.h"
|
2009-09-06 13:36:05 +00:00
|
|
|
#include "Render.h"
|
2011-01-31 01:28:32 +00:00
|
|
|
#include "HW/Memmap.h"
|
2011-01-29 20:16:51 +00:00
|
|
|
|
|
|
|
namespace OGL
|
|
|
|
{
|
|
|
|
|
2010-11-14 23:31:53 +00:00
|
|
|
int FramebufferManager::m_targetWidth;
|
|
|
|
int FramebufferManager::m_targetHeight;
|
|
|
|
int FramebufferManager::m_msaaSamples;
|
|
|
|
int FramebufferManager::m_msaaCoverageSamples;
|
2009-09-03 20:37:35 +00:00
|
|
|
|
2010-11-14 23:31:53 +00:00
|
|
|
GLuint FramebufferManager::m_efbFramebuffer;
|
|
|
|
GLuint FramebufferManager::m_efbColor; // Renderbuffer in MSAA mode; Texture otherwise
|
|
|
|
GLuint FramebufferManager::m_efbDepth; // Renderbuffer in MSAA mode; Texture otherwise
|
|
|
|
|
|
|
|
// Only used in MSAA mode.
|
|
|
|
GLuint FramebufferManager::m_resolvedFramebuffer;
|
|
|
|
GLuint FramebufferManager::m_resolvedColorTexture;
|
|
|
|
GLuint FramebufferManager::m_resolvedDepthTexture;
|
|
|
|
|
2013-01-03 19:44:47 +00:00
|
|
|
GLuint FramebufferManager::m_xfbFramebuffer;
|
2010-11-14 23:31:53 +00:00
|
|
|
|
|
|
|
FramebufferManager::FramebufferManager(int targetWidth, int targetHeight, int msaaSamples, int msaaCoverageSamples)
|
2009-07-06 02:10:26 +00:00
|
|
|
{
|
2013-04-15 20:28:55 +00:00
|
|
|
m_efbFramebuffer = 0;
|
|
|
|
m_efbColor = 0;
|
|
|
|
m_efbDepth = 0;
|
|
|
|
m_resolvedFramebuffer = 0;
|
|
|
|
m_resolvedColorTexture = 0;
|
|
|
|
m_resolvedDepthTexture = 0;
|
|
|
|
m_xfbFramebuffer = 0;
|
2012-12-09 19:44:13 +00:00
|
|
|
|
2009-07-06 02:10:26 +00:00
|
|
|
m_targetWidth = targetWidth;
|
|
|
|
m_targetHeight = targetHeight;
|
2010-11-14 23:31:53 +00:00
|
|
|
|
2009-07-06 02:10:26 +00:00
|
|
|
m_msaaSamples = msaaSamples;
|
|
|
|
m_msaaCoverageSamples = msaaCoverageSamples;
|
|
|
|
|
|
|
|
// The EFB can be set to different pixel formats by the game through the
|
|
|
|
// BPMEM_ZCOMPARE register (which should probably have a different name).
|
|
|
|
// They are:
|
|
|
|
// - 24-bit RGB (8-bit components) with 24-bit Z
|
|
|
|
// - 24-bit RGBA (6-bit components) with 24-bit Z
|
|
|
|
// - Multisampled 16-bit RGB (5-6-5 format) with 16-bit Z
|
|
|
|
// We only use one EFB format here: 32-bit ARGB with 24-bit Z.
|
|
|
|
// Multisampling depends on user settings.
|
|
|
|
// The distinction becomes important for certain operations, i.e. the
|
|
|
|
// alpha channel should be ignored if the EFB does not have one.
|
|
|
|
|
|
|
|
// Create EFB target.
|
|
|
|
|
2013-01-03 11:06:47 +00:00
|
|
|
glGenFramebuffers(1, &m_efbFramebuffer);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
if (m_msaaSamples <= 1)
|
|
|
|
{
|
|
|
|
// EFB targets will be textures in non-MSAA mode.
|
|
|
|
|
|
|
|
GLuint glObj[2];
|
|
|
|
glGenTextures(2, glObj);
|
|
|
|
m_efbColor = glObj[0];
|
|
|
|
m_efbDepth = glObj[1];
|
|
|
|
|
2013-01-03 11:06:47 +00:00
|
|
|
glBindTexture(GL_TEXTURE_RECTANGLE, m_efbColor);
|
|
|
|
glTexImage2D(GL_TEXTURE_RECTANGLE, 0, GL_RGBA8, m_targetWidth, m_targetHeight, 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2013-01-03 11:06:47 +00:00
|
|
|
glBindTexture(GL_TEXTURE_RECTANGLE, m_efbDepth);
|
2013-05-06 04:20:46 +00:00
|
|
|
glTexImage2D(GL_TEXTURE_RECTANGLE, 0, GL_DEPTH_COMPONENT24, m_targetWidth, m_targetHeight, 0, GL_DEPTH_COMPONENT, GL_UNSIGNED_INT, NULL);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2013-01-03 11:06:47 +00:00
|
|
|
glBindTexture(GL_TEXTURE_RECTANGLE, 0);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
// Bind target textures to the EFB framebuffer.
|
|
|
|
|
2013-01-03 11:06:47 +00:00
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, m_efbFramebuffer);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2013-01-03 11:06:47 +00:00
|
|
|
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_RECTANGLE, m_efbColor, 0);
|
|
|
|
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_TEXTURE_RECTANGLE, m_efbDepth, 0);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
GL_REPORT_FBO_ERROR();
|
|
|
|
}
|
2013-05-06 11:43:04 +00:00
|
|
|
#ifndef USE_GLES3
|
2009-07-06 02:10:26 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// EFB targets will be renderbuffers in MSAA mode (required by OpenGL).
|
|
|
|
// Resolve targets will be created to transfer EFB to RAM textures.
|
|
|
|
// XFB framebuffer will be created to transfer EFB to XFB texture.
|
|
|
|
|
|
|
|
// Create EFB target renderbuffers.
|
|
|
|
|
|
|
|
GLuint glObj[2];
|
2013-01-03 11:06:47 +00:00
|
|
|
glGenRenderbuffers(2, glObj);
|
2009-07-06 02:10:26 +00:00
|
|
|
m_efbColor = glObj[0];
|
|
|
|
m_efbDepth = glObj[1];
|
|
|
|
|
2013-01-03 11:06:47 +00:00
|
|
|
glBindRenderbuffer(GL_RENDERBUFFER, m_efbColor);
|
2009-07-06 02:10:26 +00:00
|
|
|
if (m_msaaCoverageSamples)
|
2013-01-03 11:06:47 +00:00
|
|
|
glRenderbufferStorageMultisampleCoverageNV(GL_RENDERBUFFER, m_msaaCoverageSamples, m_msaaSamples, GL_RGBA8, m_targetWidth, m_targetHeight);
|
2009-07-06 02:10:26 +00:00
|
|
|
else
|
2013-01-03 11:06:47 +00:00
|
|
|
glRenderbufferStorageMultisample(GL_RENDERBUFFER, m_msaaSamples, GL_RGBA8, m_targetWidth, m_targetHeight);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2013-01-03 11:06:47 +00:00
|
|
|
glBindRenderbuffer(GL_RENDERBUFFER, m_efbDepth);
|
2009-07-06 02:10:26 +00:00
|
|
|
if (m_msaaCoverageSamples)
|
2013-01-03 11:06:47 +00:00
|
|
|
glRenderbufferStorageMultisampleCoverageNV(GL_RENDERBUFFER, m_msaaCoverageSamples, m_msaaSamples, GL_DEPTH_COMPONENT24, m_targetWidth, m_targetHeight);
|
2009-07-06 02:10:26 +00:00
|
|
|
else
|
2013-01-03 11:06:47 +00:00
|
|
|
glRenderbufferStorageMultisample(GL_RENDERBUFFER, m_msaaSamples, GL_DEPTH_COMPONENT24, m_targetWidth, m_targetHeight);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2013-01-03 11:06:47 +00:00
|
|
|
glBindRenderbuffer(GL_RENDERBUFFER, 0);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
// Bind target renderbuffers to EFB framebuffer.
|
|
|
|
|
2013-01-03 11:06:47 +00:00
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, m_efbFramebuffer);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2013-01-03 11:06:47 +00:00
|
|
|
glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_RENDERBUFFER, m_efbColor);
|
|
|
|
glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_RENDERBUFFER, m_efbDepth);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
GL_REPORT_FBO_ERROR();
|
|
|
|
|
|
|
|
// Create resolved targets for transferring multisampled EFB to texture.
|
|
|
|
|
2013-01-03 11:06:47 +00:00
|
|
|
glGenFramebuffers(1, &m_resolvedFramebuffer);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
glGenTextures(2, glObj);
|
|
|
|
m_resolvedColorTexture = glObj[0];
|
|
|
|
m_resolvedDepthTexture = glObj[1];
|
|
|
|
|
2013-01-03 11:06:47 +00:00
|
|
|
glBindTexture(GL_TEXTURE_RECTANGLE, m_resolvedColorTexture);
|
|
|
|
glTexImage2D(GL_TEXTURE_RECTANGLE, 0, GL_RGBA8, m_targetWidth, m_targetHeight, 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2013-01-03 11:06:47 +00:00
|
|
|
glBindTexture(GL_TEXTURE_RECTANGLE, m_resolvedDepthTexture);
|
|
|
|
glTexImage2D(GL_TEXTURE_RECTANGLE, 0, GL_DEPTH_COMPONENT24, m_targetWidth, m_targetHeight, 0, GL_DEPTH_COMPONENT, GL_UNSIGNED_BYTE, NULL);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2013-01-03 11:06:47 +00:00
|
|
|
glBindTexture(GL_TEXTURE_RECTANGLE, 0);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
// Bind resolved textures to resolved framebuffer.
|
|
|
|
|
2013-01-03 11:06:47 +00:00
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, m_resolvedFramebuffer);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2013-01-03 11:06:47 +00:00
|
|
|
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_RECTANGLE, m_resolvedColorTexture, 0);
|
|
|
|
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_TEXTURE_RECTANGLE, m_resolvedDepthTexture, 0);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
GL_REPORT_FBO_ERROR();
|
|
|
|
|
|
|
|
// Return to EFB framebuffer.
|
|
|
|
|
2013-01-03 11:06:47 +00:00
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, m_efbFramebuffer);
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
2013-05-06 11:43:04 +00:00
|
|
|
#endif
|
2009-07-06 02:10:26 +00:00
|
|
|
// Create XFB framebuffer; targets will be created elsewhere.
|
|
|
|
|
2013-01-03 11:06:47 +00:00
|
|
|
glGenFramebuffers(1, &m_xfbFramebuffer);
|
2012-12-08 00:32:58 +00:00
|
|
|
|
2010-12-28 16:16:27 +00:00
|
|
|
// EFB framebuffer is currently bound, make sure to clear its alpha value to 1.f
|
|
|
|
glViewport(0, 0, m_targetWidth, m_targetHeight);
|
|
|
|
glScissor(0, 0, m_targetWidth, m_targetHeight);
|
|
|
|
glClearColor(0.f, 0.f, 0.f, 1.f);
|
2013-05-06 04:20:46 +00:00
|
|
|
glClearDepthf(1.0f);
|
2010-12-28 16:16:27 +00:00
|
|
|
glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT);
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
|
|
|
|
2010-11-14 23:31:53 +00:00
|
|
|
FramebufferManager::~FramebufferManager()
|
2009-07-06 02:10:26 +00:00
|
|
|
{
|
2013-01-03 11:06:47 +00:00
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, 0);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
GLuint glObj[3];
|
|
|
|
|
|
|
|
// Note: OpenGL deletion functions silently ignore parameters of "0".
|
|
|
|
|
|
|
|
glObj[0] = m_efbFramebuffer;
|
|
|
|
glObj[1] = m_resolvedFramebuffer;
|
|
|
|
glObj[2] = m_xfbFramebuffer;
|
2013-01-03 11:06:47 +00:00
|
|
|
glDeleteFramebuffers(3, glObj);
|
2009-07-06 02:10:26 +00:00
|
|
|
m_efbFramebuffer = 0;
|
|
|
|
m_xfbFramebuffer = 0;
|
|
|
|
|
|
|
|
glObj[0] = m_resolvedColorTexture;
|
|
|
|
glObj[1] = m_resolvedDepthTexture;
|
2010-11-14 23:31:53 +00:00
|
|
|
glDeleteTextures(2, glObj);
|
2009-07-06 02:10:26 +00:00
|
|
|
m_resolvedColorTexture = 0;
|
|
|
|
m_resolvedDepthTexture = 0;
|
|
|
|
|
|
|
|
glObj[0] = m_efbColor;
|
|
|
|
glObj[1] = m_efbDepth;
|
|
|
|
if (m_msaaSamples <= 1)
|
|
|
|
glDeleteTextures(2, glObj);
|
|
|
|
else
|
2013-01-03 11:06:47 +00:00
|
|
|
glDeleteRenderbuffers(2, glObj);
|
2009-07-06 02:10:26 +00:00
|
|
|
m_efbColor = 0;
|
|
|
|
m_efbDepth = 0;
|
|
|
|
}
|
|
|
|
|
2010-11-14 23:31:53 +00:00
|
|
|
GLuint FramebufferManager::GetEFBColorTexture(const EFBRectangle& sourceRc)
|
2009-07-06 02:10:26 +00:00
|
|
|
{
|
|
|
|
if (m_msaaSamples <= 1)
|
|
|
|
{
|
|
|
|
return m_efbColor;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Transfer the EFB to a resolved texture. EXT_framebuffer_blit is
|
|
|
|
// required.
|
|
|
|
|
2010-11-18 02:21:26 +00:00
|
|
|
TargetRectangle targetRc = g_renderer->ConvertEFBRectangle(sourceRc);
|
2009-07-15 00:51:24 +00:00
|
|
|
targetRc.ClampLL(0, 0, m_targetWidth, m_targetHeight);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
// Resolve.
|
2013-01-03 11:06:47 +00:00
|
|
|
glBindFramebuffer(GL_READ_FRAMEBUFFER, m_efbFramebuffer);
|
|
|
|
glBindFramebuffer(GL_DRAW_FRAMEBUFFER, m_resolvedFramebuffer);
|
|
|
|
glBlitFramebuffer(
|
2009-07-15 00:51:24 +00:00
|
|
|
targetRc.left, targetRc.top, targetRc.right, targetRc.bottom,
|
|
|
|
targetRc.left, targetRc.top, targetRc.right, targetRc.bottom,
|
2009-07-06 02:10:26 +00:00
|
|
|
GL_COLOR_BUFFER_BIT, GL_NEAREST
|
|
|
|
);
|
|
|
|
|
|
|
|
// Return to EFB.
|
2013-01-03 11:06:47 +00:00
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, m_efbFramebuffer);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
return m_resolvedColorTexture;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-14 23:31:53 +00:00
|
|
|
GLuint FramebufferManager::GetEFBDepthTexture(const EFBRectangle& sourceRc)
|
2009-07-06 02:10:26 +00:00
|
|
|
{
|
|
|
|
if (m_msaaSamples <= 1)
|
|
|
|
{
|
|
|
|
return m_efbDepth;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Transfer the EFB to a resolved texture. EXT_framebuffer_blit is
|
|
|
|
// required.
|
|
|
|
|
2010-11-18 02:21:26 +00:00
|
|
|
TargetRectangle targetRc = g_renderer->ConvertEFBRectangle(sourceRc);
|
2009-07-15 00:51:24 +00:00
|
|
|
targetRc.ClampLL(0, 0, m_targetWidth, m_targetHeight);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
// Resolve.
|
2013-01-03 11:06:47 +00:00
|
|
|
glBindFramebuffer(GL_READ_FRAMEBUFFER, m_efbFramebuffer);
|
|
|
|
glBindFramebuffer(GL_DRAW_FRAMEBUFFER, m_resolvedFramebuffer);
|
|
|
|
glBlitFramebuffer(
|
2009-07-15 00:51:24 +00:00
|
|
|
targetRc.left, targetRc.top, targetRc.right, targetRc.bottom,
|
|
|
|
targetRc.left, targetRc.top, targetRc.right, targetRc.bottom,
|
2009-07-06 02:10:26 +00:00
|
|
|
GL_DEPTH_BUFFER_BIT, GL_NEAREST
|
|
|
|
);
|
|
|
|
|
|
|
|
// Return to EFB.
|
2013-01-03 11:06:47 +00:00
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, m_efbFramebuffer);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
return m_resolvedDepthTexture;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-27 03:18:01 +00:00
|
|
|
void FramebufferManager::CopyToRealXFB(u32 xfbAddr, u32 fbWidth, u32 fbHeight, const EFBRectangle& sourceRc,float Gamma)
|
2009-07-06 02:10:26 +00:00
|
|
|
{
|
2011-01-31 01:28:32 +00:00
|
|
|
u8* xfb_in_ram = Memory::GetPointer(xfbAddr);
|
2010-09-28 02:15:02 +00:00
|
|
|
if (!xfb_in_ram)
|
2009-07-06 02:10:26 +00:00
|
|
|
{
|
|
|
|
WARN_LOG(VIDEO, "Tried to copy to invalid XFB address");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-11-18 02:21:26 +00:00
|
|
|
TargetRectangle targetRc = g_renderer->ConvertEFBRectangle(sourceRc);
|
2010-11-14 23:31:53 +00:00
|
|
|
TextureConverter::EncodeToRamYUYV(ResolveAndGetRenderTarget(sourceRc), targetRc, xfb_in_ram, fbWidth, fbHeight);
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
|
|
|
|
2010-11-14 23:31:53 +00:00
|
|
|
void FramebufferManager::SetFramebuffer(GLuint fb)
|
2009-07-06 02:10:26 +00:00
|
|
|
{
|
2013-01-03 11:06:47 +00:00
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, fb != 0 ? fb : GetEFBFramebuffer());
|
2010-11-14 23:31:53 +00:00
|
|
|
}
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2010-11-14 23:31:53 +00:00
|
|
|
// Apply AA if enabled
|
|
|
|
GLuint FramebufferManager::ResolveAndGetRenderTarget(const EFBRectangle &source_rect)
|
|
|
|
{
|
|
|
|
return GetEFBColorTexture(source_rect);
|
|
|
|
}
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2010-11-14 23:31:53 +00:00
|
|
|
GLuint FramebufferManager::ResolveAndGetDepthTarget(const EFBRectangle &source_rect)
|
|
|
|
{
|
|
|
|
return GetEFBDepthTexture(source_rect);
|
|
|
|
}
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2013-01-16 00:37:00 +00:00
|
|
|
XFBSource::~XFBSource()
|
|
|
|
{
|
|
|
|
glDeleteRenderbuffers(1, &renderbuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-14 23:31:53 +00:00
|
|
|
void XFBSource::Draw(const MathUtil::Rectangle<float> &sourcerc,
|
|
|
|
const MathUtil::Rectangle<float> &drawrc, int width, int height) const
|
|
|
|
{
|
|
|
|
// Texture map xfbSource->texture onto the main buffer
|
2013-01-16 00:37:00 +00:00
|
|
|
glFramebufferRenderbuffer(GL_READ_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_RENDERBUFFER, renderbuf);
|
2013-01-03 19:44:47 +00:00
|
|
|
glBlitFramebuffer(sourcerc.left, sourcerc.bottom, sourcerc.right, sourcerc.top,
|
|
|
|
drawrc.left, drawrc.bottom, drawrc.right, drawrc.top,
|
|
|
|
GL_COLOR_BUFFER_BIT, GL_LINEAR);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2010-11-14 23:31:53 +00:00
|
|
|
GL_REPORT_ERRORD();
|
|
|
|
}
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2010-11-14 23:31:53 +00:00
|
|
|
void XFBSource::DecodeToTexture(u32 xfbAddr, u32 fbWidth, u32 fbHeight)
|
|
|
|
{
|
2013-01-16 00:37:00 +00:00
|
|
|
TextureConverter::DecodeToTexture(xfbAddr, fbWidth, fbHeight, renderbuf);
|
2010-11-14 23:31:53 +00:00
|
|
|
}
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2010-12-27 03:18:01 +00:00
|
|
|
void XFBSource::CopyEFB(float Gamma)
|
2010-11-14 23:31:53 +00:00
|
|
|
{
|
2010-09-28 02:15:02 +00:00
|
|
|
// Copy EFB data to XFB and restore render target again
|
2013-01-03 17:36:19 +00:00
|
|
|
glBindFramebuffer(GL_READ_FRAMEBUFFER, FramebufferManager::GetEFBFramebuffer());
|
|
|
|
glBindFramebuffer(GL_DRAW_FRAMEBUFFER, FramebufferManager::GetXFBFramebuffer());
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2013-01-03 17:36:19 +00:00
|
|
|
// Bind texture.
|
2013-01-16 00:37:00 +00:00
|
|
|
glFramebufferRenderbuffer(GL_DRAW_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_RENDERBUFFER, renderbuf);
|
2013-01-03 17:36:19 +00:00
|
|
|
GL_REPORT_FBO_ERROR();
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2013-01-03 17:36:19 +00:00
|
|
|
glBlitFramebuffer(
|
|
|
|
0, 0, texWidth, texHeight,
|
|
|
|
0, 0, texWidth, texHeight,
|
|
|
|
GL_COLOR_BUFFER_BIT, GL_NEAREST
|
|
|
|
);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2013-01-03 17:36:19 +00:00
|
|
|
// Return to EFB.
|
2013-01-16 00:37:00 +00:00
|
|
|
FramebufferManager::SetFramebuffer(0);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-11-14 23:31:53 +00:00
|
|
|
XFBSourceBase* FramebufferManager::CreateXFBSource(unsigned int target_width, unsigned int target_height)
|
2009-07-06 02:10:26 +00:00
|
|
|
{
|
2013-01-16 00:37:00 +00:00
|
|
|
GLuint renderbuf;
|
2010-03-10 06:45:13 +00:00
|
|
|
|
2013-01-16 00:37:00 +00:00
|
|
|
glGenRenderbuffers(1, &renderbuf);
|
|
|
|
|
|
|
|
glBindRenderbuffer(GL_RENDERBUFFER, renderbuf);
|
|
|
|
glRenderbufferStorage(GL_RENDERBUFFER, GL_RGBA, target_width, target_height);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2013-01-16 00:37:00 +00:00
|
|
|
return new XFBSource(renderbuf);
|
2009-09-03 20:37:35 +00:00
|
|
|
}
|
|
|
|
|
2010-11-14 23:31:53 +00:00
|
|
|
void FramebufferManager::GetTargetSize(unsigned int *width, unsigned int *height, const EFBRectangle& sourceRc)
|
2009-09-03 20:37:35 +00:00
|
|
|
{
|
2010-11-14 23:31:53 +00:00
|
|
|
*width = m_targetWidth;
|
|
|
|
*height = m_targetHeight;
|
2009-09-03 20:37:35 +00:00
|
|
|
}
|
2011-01-29 20:16:51 +00:00
|
|
|
|
2011-01-29 22:48:33 +00:00
|
|
|
} // namespace OGL
|