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
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Core/HW/Memmap.h"
|
|
|
|
|
|
|
|
#include "VideoBackends/OGL/FramebufferManager.h"
|
2014-02-19 11:14:09 +00:00
|
|
|
#include "VideoBackends/OGL/Globals.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoBackends/OGL/Render.h"
|
|
|
|
#include "VideoBackends/OGL/TextureConverter.h"
|
|
|
|
|
|
|
|
#include "VideoCommon/DriverDetails.h"
|
|
|
|
#include "VideoCommon/OnScreenDisplay.h"
|
|
|
|
#include "VideoCommon/VertexShaderGen.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
|
|
|
|
2013-07-22 13:41:10 +00:00
|
|
|
// reinterpret pixel format
|
|
|
|
SHADER FramebufferManager::m_pixel_format_shaders[2];
|
|
|
|
|
|
|
|
|
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;
|
2013-10-29 05:23:17 +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);
|
2013-07-13 22:24:23 +00:00
|
|
|
glActiveTexture(GL_TEXTURE0 + 9);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
if (m_msaaSamples <= 1)
|
|
|
|
{
|
|
|
|
// EFB targets will be textures in non-MSAA mode.
|
|
|
|
|
2013-07-22 13:41:10 +00:00
|
|
|
GLuint glObj[3];
|
|
|
|
glGenTextures(3, glObj);
|
2009-07-06 02:10:26 +00:00
|
|
|
m_efbColor = glObj[0];
|
|
|
|
m_efbDepth = glObj[1];
|
2013-07-22 13:41:10 +00:00
|
|
|
m_resolvedColorTexture = glObj[2]; // needed for pixel format convertion
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2013-11-25 07:32:41 +00:00
|
|
|
glBindTexture(GL_TEXTURE_2D, m_efbColor);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAX_LEVEL, 0);
|
2014-01-03 07:15:19 +00:00
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
2014-03-09 20:14:26 +00:00
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, m_targetWidth, m_targetHeight, 0, GL_RGBA, GL_UNSIGNED_BYTE, nullptr);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2013-11-25 07:32:41 +00:00
|
|
|
glBindTexture(GL_TEXTURE_2D, m_efbDepth);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAX_LEVEL, 0);
|
2014-01-03 07:15:19 +00:00
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
2014-03-09 20:14:26 +00:00
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, GL_DEPTH_COMPONENT24, m_targetWidth, m_targetHeight, 0, GL_DEPTH_COMPONENT, GL_UNSIGNED_INT, nullptr);
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2013-11-25 07:32:41 +00:00
|
|
|
glBindTexture(GL_TEXTURE_2D, m_resolvedColorTexture);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAX_LEVEL, 0);
|
2014-01-03 07:15:19 +00:00
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
2014-03-09 20:14:26 +00:00
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, m_targetWidth, m_targetHeight, 0, GL_RGBA, GL_UNSIGNED_BYTE, nullptr);
|
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-11-25 07:32:41 +00:00
|
|
|
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, m_efbColor, 0);
|
|
|
|
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_TEXTURE_2D, m_efbDepth, 0);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
GL_REPORT_FBO_ERROR();
|
|
|
|
}
|
|
|
|
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-10-12 14:34:06 +00:00
|
|
|
glRenderbufferStorageMultisampleCoverageNV(GL_RENDERBUFFER, m_msaaCoverageSamples, m_msaaSamples, GL_RGBA, m_targetWidth, m_targetHeight);
|
2009-07-06 02:10:26 +00:00
|
|
|
else
|
2013-10-12 14:34:06 +00:00
|
|
|
glRenderbufferStorageMultisample(GL_RENDERBUFFER, m_msaaSamples, GL_RGBA, 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-11-25 07:32:41 +00:00
|
|
|
glBindTexture(GL_TEXTURE_2D, m_resolvedColorTexture);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAX_LEVEL, 0);
|
2014-01-03 07:15:19 +00:00
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
2014-03-09 20:14:26 +00:00
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, m_targetWidth, m_targetHeight, 0, GL_RGBA, GL_UNSIGNED_BYTE, nullptr);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2013-11-25 07:32:41 +00:00
|
|
|
glBindTexture(GL_TEXTURE_2D, m_resolvedDepthTexture);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAX_LEVEL, 0);
|
2014-01-03 07:15:19 +00:00
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
2014-03-09 20:14:26 +00:00
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, GL_DEPTH_COMPONENT24, m_targetWidth, m_targetHeight, 0, GL_DEPTH_COMPONENT, GL_UNSIGNED_INT, nullptr);
|
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-11-25 07:32:41 +00:00
|
|
|
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, m_resolvedColorTexture, 0);
|
|
|
|
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_TEXTURE_2D, 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
|
|
|
}
|
|
|
|
// Create XFB framebuffer; targets will be created elsewhere.
|
|
|
|
|
2013-01-03 11:06:47 +00:00
|
|
|
glGenFramebuffers(1, &m_xfbFramebuffer);
|
2013-10-29 05:23:17 +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);
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2013-07-22 13:41:10 +00:00
|
|
|
// reinterpret pixel format
|
2013-10-29 05:23:17 +00:00
|
|
|
char vs[] =
|
2013-07-22 13:41:10 +00:00
|
|
|
"void main(void) {\n"
|
2013-11-25 11:27:54 +00:00
|
|
|
" vec2 rawpos = vec2(gl_VertexID&1, gl_VertexID&2);\n"
|
|
|
|
" gl_Position = vec4(rawpos*2.0-1.0, 0.0, 1.0);\n"
|
2013-07-22 13:41:10 +00:00
|
|
|
"}\n";
|
2013-10-29 05:23:17 +00:00
|
|
|
|
|
|
|
char ps_rgba6_to_rgb8[] =
|
2013-11-25 07:59:04 +00:00
|
|
|
"uniform sampler2D samp9;\n"
|
2013-11-25 00:06:29 +00:00
|
|
|
"out vec4 ocol0;\n"
|
2013-07-22 13:41:10 +00:00
|
|
|
"void main()\n"
|
|
|
|
"{\n"
|
2013-11-25 07:59:04 +00:00
|
|
|
" ivec4 src6 = ivec4(round(texelFetch(samp9, ivec2(gl_FragCoord.xy), 0) * 63.f));\n"
|
2013-07-22 13:41:10 +00:00
|
|
|
" ivec4 dst8;\n"
|
|
|
|
" dst8.r = (src6.r << 2) | (src6.g >> 4);\n"
|
|
|
|
" dst8.g = ((src6.g & 0xF) << 4) | (src6.b >> 2);\n"
|
|
|
|
" dst8.b = ((src6.b & 0x3) << 6) | src6.a;\n"
|
|
|
|
" dst8.a = 255;\n"
|
|
|
|
" ocol0 = float4(dst8) / 255.f;\n"
|
|
|
|
"}";
|
2013-10-29 05:23:17 +00:00
|
|
|
|
|
|
|
char ps_rgb8_to_rgba6[] =
|
2013-11-25 07:59:04 +00:00
|
|
|
"uniform sampler2D samp9;\n"
|
2013-11-25 00:06:29 +00:00
|
|
|
"out vec4 ocol0;\n"
|
2013-07-22 13:41:10 +00:00
|
|
|
"void main()\n"
|
|
|
|
"{\n"
|
2013-11-25 07:59:04 +00:00
|
|
|
" ivec4 src8 = ivec4(round(texelFetch(samp9, ivec2(gl_FragCoord.xy), 0) * 255.f));\n"
|
2013-07-22 13:41:10 +00:00
|
|
|
" ivec4 dst6;\n"
|
|
|
|
" dst6.r = src8.r >> 2;\n"
|
|
|
|
" dst6.g = ((src8.r & 0x3) << 4) | (src8.g >> 4);\n"
|
|
|
|
" dst6.b = ((src8.g & 0xF) << 2) | (src8.b >> 6);\n"
|
|
|
|
" dst6.a = src8.b & 0x3F;\n"
|
|
|
|
" ocol0 = float4(dst6) / 63.f;\n"
|
|
|
|
"}";
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2013-11-24 21:49:23 +00:00
|
|
|
ProgramShaderCache::CompileShader(m_pixel_format_shaders[0], vs, ps_rgb8_to_rgba6);
|
|
|
|
ProgramShaderCache::CompileShader(m_pixel_format_shaders[1], vs, ps_rgba6_to_rgb8);
|
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;
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2013-07-22 13:41:10 +00:00
|
|
|
// reinterpret pixel format
|
|
|
|
m_pixel_format_shaders[0].Destroy();
|
|
|
|
m_pixel_format_shaders[1].Destroy();
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
|
|
|
|
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-07-22 13:41:10 +00:00
|
|
|
void FramebufferManager::ReinterpretPixelData(unsigned int convtype)
|
|
|
|
{
|
|
|
|
g_renderer->ResetAPIState();
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2013-07-22 13:41:10 +00:00
|
|
|
GLuint src_texture = 0;
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2013-07-22 13:41:10 +00:00
|
|
|
if(m_msaaSamples > 1)
|
|
|
|
{
|
|
|
|
// MSAA mode, so resolve first
|
|
|
|
glBindFramebuffer(GL_READ_FRAMEBUFFER, m_efbFramebuffer);
|
|
|
|
glBindFramebuffer(GL_DRAW_FRAMEBUFFER, m_resolvedFramebuffer);
|
|
|
|
glBlitFramebuffer(
|
|
|
|
0, 0, m_targetWidth, m_targetHeight,
|
|
|
|
0, 0, m_targetWidth, m_targetHeight,
|
|
|
|
GL_COLOR_BUFFER_BIT, GL_NEAREST
|
|
|
|
);
|
|
|
|
|
|
|
|
// Return to EFB.
|
|
|
|
glBindFramebuffer(GL_DRAW_FRAMEBUFFER, m_efbFramebuffer);
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2013-07-22 13:41:10 +00:00
|
|
|
src_texture = m_resolvedColorTexture;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// non-MSAA mode, so switch textures
|
|
|
|
src_texture = m_efbColor;
|
|
|
|
m_efbColor = m_resolvedColorTexture;
|
|
|
|
m_resolvedColorTexture = src_texture;
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2013-07-22 13:41:10 +00:00
|
|
|
// also switch them on fbo
|
2013-11-25 07:32:41 +00:00
|
|
|
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, m_efbColor, 0);
|
2013-07-22 13:41:10 +00:00
|
|
|
}
|
|
|
|
glViewport(0,0, m_targetWidth, m_targetHeight);
|
|
|
|
glActiveTexture(GL_TEXTURE0 + 9);
|
2013-11-25 07:32:41 +00:00
|
|
|
glBindTexture(GL_TEXTURE_2D, src_texture);
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2013-07-22 13:41:10 +00:00
|
|
|
m_pixel_format_shaders[convtype ? 1 : 0].Bind();
|
|
|
|
glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2013-07-22 13:41:10 +00:00
|
|
|
g_renderer->RestoreAPIState();
|
|
|
|
}
|
|
|
|
|
2013-01-16 00:37:00 +00:00
|
|
|
XFBSource::~XFBSource()
|
|
|
|
{
|
2013-08-20 13:11:03 +00:00
|
|
|
glDeleteTextures(1, &texture);
|
2013-01-16 00:37:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-01-26 13:21:22 +00:00
|
|
|
void XFBSource::Draw(const MathUtil::Rectangle<int> &sourcerc,
|
2013-11-23 22:33:43 +00:00
|
|
|
const MathUtil::Rectangle<float> &drawrc) const
|
2010-11-14 23:31:53 +00:00
|
|
|
{
|
|
|
|
// Texture map xfbSource->texture onto the main buffer
|
2013-08-20 13:11:03 +00:00
|
|
|
glFramebufferTexture2D(GL_READ_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, texture, 0);
|
2013-01-03 19:44:47 +00:00
|
|
|
glBlitFramebuffer(sourcerc.left, sourcerc.bottom, sourcerc.right, sourcerc.top,
|
2014-01-26 13:21:22 +00:00
|
|
|
(int)drawrc.left, (int)drawrc.bottom, (int)drawrc.right, (int)drawrc.top,
|
2013-01-03 19:44:47 +00:00
|
|
|
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-08-20 13:11:03 +00:00
|
|
|
TextureConverter::DecodeToTexture(xfbAddr, fbWidth, fbHeight, texture);
|
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
|
|
|
{
|
2013-08-26 20:18:00 +00:00
|
|
|
g_renderer->ResetAPIState();
|
2013-10-29 05:23:17 +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-08-20 13:11:03 +00:00
|
|
|
glFramebufferTexture2D(GL_DRAW_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, texture, 0);
|
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);
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2013-08-26 20:18:00 +00:00
|
|
|
g_renderer->RestoreAPIState();
|
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-08-20 13:11:03 +00:00
|
|
|
GLuint texture;
|
2010-03-10 06:45:13 +00:00
|
|
|
|
2013-08-20 13:11:03 +00:00
|
|
|
glGenTextures(1, &texture);
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2013-08-20 13:11:03 +00:00
|
|
|
glActiveTexture(GL_TEXTURE0 + 9);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, texture);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAX_LEVEL, 0);
|
2014-03-09 20:14:26 +00:00
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, target_width, target_height, 0, GL_RGBA, GL_UNSIGNED_BYTE, nullptr);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2013-08-20 13:11:03 +00:00
|
|
|
return new XFBSource(texture);
|
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
|