2010-06-09 01:37:08 +00:00
|
|
|
// Copyright (C) 2003-2009 Dolphin Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
|
|
|
#include "BPMemLoader.h"
|
|
|
|
#include "EfbCopy.h"
|
|
|
|
#include "EfbInterface.h"
|
2011-02-03 19:55:30 +00:00
|
|
|
#include "SWRenderer.h"
|
2010-06-09 01:37:08 +00:00
|
|
|
#include "TextureEncoder.h"
|
2011-02-03 19:55:30 +00:00
|
|
|
#include "SWStatistics.h"
|
2011-01-29 06:26:03 +00:00
|
|
|
#include "SWVideoConfig.h"
|
2010-06-09 01:37:08 +00:00
|
|
|
#include "DebugUtil.h"
|
|
|
|
#include "HwRasterizer.h"
|
2011-02-03 19:55:30 +00:00
|
|
|
#include "SWCommandProcessor.h"
|
2011-02-07 22:01:08 +00:00
|
|
|
#include "../../Plugin_VideoOGL/Src/GLUtil.h"
|
2011-01-31 01:28:32 +00:00
|
|
|
#include "HW/Memmap.h"
|
|
|
|
#include "Core.h"
|
2010-06-09 01:37:08 +00:00
|
|
|
|
|
|
|
namespace EfbCopy
|
|
|
|
{
|
|
|
|
void CopyToXfb()
|
|
|
|
{
|
2010-12-02 05:38:48 +00:00
|
|
|
OpenGL_Update(); // just updates the render window position and the backbuffer size
|
|
|
|
|
2011-01-29 04:52:19 +00:00
|
|
|
if (!g_SWVideoConfig.bHwRasterizer)
|
2010-06-09 01:37:08 +00:00
|
|
|
{
|
|
|
|
// copy to open gl for rendering
|
|
|
|
EfbInterface::UpdateColorTexture();
|
2011-02-03 19:55:30 +00:00
|
|
|
SWRenderer::DrawTexture(EfbInterface::efbColorTexture, EFB_WIDTH, EFB_HEIGHT);
|
2010-06-09 01:37:08 +00:00
|
|
|
}
|
|
|
|
|
2011-02-03 19:55:30 +00:00
|
|
|
SWRenderer::SwapBuffer();
|
2010-06-09 01:37:08 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void CopyToRam()
|
|
|
|
{
|
2011-01-29 04:52:19 +00:00
|
|
|
if (!g_SWVideoConfig.bHwRasterizer)
|
2010-12-02 05:38:48 +00:00
|
|
|
{
|
2011-01-31 01:28:32 +00:00
|
|
|
u8 *dest_ptr = Memory::GetPointer(bpmem.copyTexDest << 5);
|
2010-06-09 01:37:08 +00:00
|
|
|
|
2010-12-02 05:38:48 +00:00
|
|
|
TextureEncoder::Encode(dest_ptr);
|
|
|
|
}
|
2010-06-09 01:37:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ClearEfb()
|
|
|
|
{
|
2010-12-31 06:45:18 +00:00
|
|
|
u32 clearColor = (bpmem.clearcolorAR & 0xff) << 24 | bpmem.clearcolorGB << 8 | (bpmem.clearcolorAR & 0xff00) >> 8;
|
2010-06-09 01:37:08 +00:00
|
|
|
|
|
|
|
int left = bpmem.copyTexSrcXY.x;
|
|
|
|
int top = bpmem.copyTexSrcXY.y;
|
|
|
|
int right = left + bpmem.copyTexSrcWH.x;
|
|
|
|
int bottom = top + bpmem.copyTexSrcWH.y;
|
|
|
|
|
|
|
|
for (u16 y = top; y <= bottom; y++)
|
|
|
|
{
|
|
|
|
for (u16 x = left; x <= right; x++)
|
|
|
|
{
|
|
|
|
EfbInterface::SetColor(x, y, (u8*)(&clearColor));
|
|
|
|
EfbInterface::SetDepth(x, y, bpmem.clearZValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CopyEfb()
|
|
|
|
{
|
|
|
|
if (bpmem.triggerEFBCopy.copy_to_xfb)
|
|
|
|
DebugUtil::OnFrameEnd();
|
|
|
|
|
|
|
|
if (!g_bSkipCurrentFrame)
|
|
|
|
{
|
|
|
|
if (bpmem.triggerEFBCopy.copy_to_xfb)
|
|
|
|
{
|
|
|
|
CopyToXfb();
|
2011-03-16 23:57:13 +00:00
|
|
|
Core::Callback_VideoCopiedToXFB(true);
|
2010-06-09 01:37:08 +00:00
|
|
|
|
2011-02-03 19:55:30 +00:00
|
|
|
swstats.frameCount++;
|
2010-06-09 01:37:08 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CopyToRam();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bpmem.triggerEFBCopy.clear)
|
|
|
|
{
|
2011-01-29 04:52:19 +00:00
|
|
|
if (g_SWVideoConfig.bHwRasterizer)
|
2010-06-09 01:37:08 +00:00
|
|
|
HwRasterizer::Clear();
|
|
|
|
else
|
|
|
|
ClearEfb();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (bpmem.triggerEFBCopy.copy_to_xfb)
|
|
|
|
{
|
|
|
|
// no frame rendered but tell that a frame has finished for frame skip counter
|
2011-01-31 01:28:32 +00:00
|
|
|
Core::Callback_VideoCopiedToXFB(false);
|
2010-06-09 01:37:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|