2010-04-25 00:31:27 +00:00
|
|
|
/*
|
2009-02-09 21:15:56 +00:00
|
|
|
* Copyright (C) 2007-2009 Gabest
|
|
|
|
* http://www.gabest.org
|
|
|
|
*
|
|
|
|
* 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; either version 2, or (at your option)
|
|
|
|
* any later version.
|
2010-04-25 00:31:27 +00:00
|
|
|
*
|
2009-02-09 21:15:56 +00:00
|
|
|
* 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 for more details.
|
2010-04-25 00:31:27 +00:00
|
|
|
*
|
2009-02-09 21:15:56 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with GNU Make; see the file COPYING. If not, write to
|
2012-09-09 18:16:11 +00:00
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA USA.
|
2009-02-09 21:15:56 +00:00
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "GSTextureCache9.h"
|
|
|
|
|
|
|
|
// GSTextureCache9
|
|
|
|
|
2009-05-22 01:22:52 +00:00
|
|
|
GSTextureCache9::GSTextureCache9(GSRenderer* r)
|
|
|
|
: GSTextureCache(r)
|
2009-02-09 21:15:56 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-07-31 23:59:06 +00:00
|
|
|
void GSTextureCache9::Read(Target* t, const GSVector4i& r)
|
2009-02-09 21:15:56 +00:00
|
|
|
{
|
2010-04-25 00:31:27 +00:00
|
|
|
if(t->m_type != RenderTarget)
|
2009-06-27 03:32:33 +00:00
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
|
2010-04-25 00:31:27 +00:00
|
|
|
return;
|
2009-06-27 03:32:33 +00:00
|
|
|
}
|
|
|
|
|
2009-07-31 23:59:06 +00:00
|
|
|
const GIFRegTEX0& TEX0 = t->m_TEX0;
|
|
|
|
|
2010-04-25 00:31:27 +00:00
|
|
|
if(TEX0.PSM != PSM_PSMCT32
|
2009-07-31 23:59:06 +00:00
|
|
|
&& TEX0.PSM != PSM_PSMCT24
|
|
|
|
&& TEX0.PSM != PSM_PSMCT16
|
|
|
|
&& TEX0.PSM != PSM_PSMCT16S)
|
2009-06-27 03:32:33 +00:00
|
|
|
{
|
|
|
|
//ASSERT(0);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-06-25 17:00:58 +00:00
|
|
|
if (!t->m_dirty.empty() || (r.width() == 0 && r.height() == 0))
|
2009-06-27 03:32:33 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2009-07-31 23:59:06 +00:00
|
|
|
// printf("GSRenderTarget::Read %d,%d - %d,%d (%08x)\n", r.left, r.top, r.right, r.bottom, TEX0.TBP0);
|
2009-06-27 03:32:33 +00:00
|
|
|
|
|
|
|
int w = r.width();
|
|
|
|
int h = r.height();
|
|
|
|
|
2009-08-02 23:07:30 +00:00
|
|
|
GSVector4 src = GSVector4(r) * GSVector4(t->m_texture->GetScale()).xyxy() / GSVector4(t->m_texture->GetSize()).xyxy();
|
2009-06-27 03:32:33 +00:00
|
|
|
|
2009-07-31 23:59:06 +00:00
|
|
|
if(GSTexture* offscreen = m_renderer->m_dev->CopyOffscreen(t->m_texture, src, w, h))
|
2009-06-27 03:32:33 +00:00
|
|
|
{
|
|
|
|
GSTexture::GSMap m;
|
|
|
|
|
|
|
|
if(offscreen->Map(m))
|
|
|
|
{
|
|
|
|
// TODO: block level write
|
|
|
|
|
2015-05-15 18:40:09 +00:00
|
|
|
GSOffset* off = m_renderer->m_mem.GetOffset(TEX0.TBP0, TEX0.TBW, TEX0.PSM);
|
2009-06-27 03:32:33 +00:00
|
|
|
|
2009-07-31 23:59:06 +00:00
|
|
|
switch(TEX0.PSM)
|
2009-06-27 03:32:33 +00:00
|
|
|
{
|
2009-07-06 16:35:06 +00:00
|
|
|
case PSM_PSMCT32:
|
2015-05-15 18:40:09 +00:00
|
|
|
m_renderer->m_mem.WritePixel32(m.bits, m.pitch, off, r);
|
2009-07-06 16:35:06 +00:00
|
|
|
break;
|
|
|
|
case PSM_PSMCT24:
|
2015-05-15 18:40:09 +00:00
|
|
|
m_renderer->m_mem.WritePixel24(m.bits, m.pitch, off, r);
|
2009-07-06 16:35:06 +00:00
|
|
|
break;
|
|
|
|
case PSM_PSMCT16:
|
|
|
|
case PSM_PSMCT16S:
|
2015-05-15 18:40:09 +00:00
|
|
|
m_renderer->m_mem.WriteFrame16(m.bits, m.pitch, off, r);
|
2009-07-06 16:35:06 +00:00
|
|
|
break;
|
|
|
|
default:
|
2009-06-27 03:32:33 +00:00
|
|
|
ASSERT(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
offscreen->Unmap();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_renderer->m_dev->Recycle(offscreen);
|
|
|
|
}
|
2009-02-09 21:15:56 +00:00
|
|
|
}
|
2009-06-27 03:32:33 +00:00
|
|
|
|