2011-11-16 22:17:37 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011-2011 Gregory hainaut
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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.
|
2011-11-16 22:17:37 +00:00
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "GSTextureCacheOGL.h"
|
|
|
|
|
|
|
|
GSTextureCacheOGL::GSTextureCacheOGL(GSRenderer* r)
|
|
|
|
: GSTextureCache(r)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void GSTextureCacheOGL::Read(Target* t, const GSVector4i& r)
|
|
|
|
{
|
|
|
|
if(t->m_type != RenderTarget)
|
|
|
|
{
|
2013-07-19 19:25:50 +00:00
|
|
|
ASSERT(0);
|
2011-11-16 22:17:37 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const GIFRegTEX0& TEX0 = t->m_TEX0;
|
|
|
|
|
|
|
|
if(TEX0.PSM != PSM_PSMCT32
|
|
|
|
&& TEX0.PSM != PSM_PSMCT24
|
|
|
|
&& TEX0.PSM != PSM_PSMCT16
|
|
|
|
&& TEX0.PSM != PSM_PSMCT16S)
|
|
|
|
{
|
|
|
|
//ASSERT(0);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!t->m_dirty.empty())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-05-06 16:52:51 +00:00
|
|
|
GL_PUSH("Texture Cache Read");
|
|
|
|
|
2011-11-16 22:17:37 +00:00
|
|
|
// printf("GSRenderTarget::Read %d,%d - %d,%d (%08x)\n", r.left, r.top, r.right, r.bottom, TEX0.TBP0);
|
|
|
|
|
|
|
|
int w = r.width();
|
|
|
|
int h = r.height();
|
|
|
|
|
|
|
|
GSVector4 src = GSVector4(r) * GSVector4(t->m_texture->GetScale()).xyxy() / GSVector4(t->m_texture->GetSize()).xyxy();
|
|
|
|
|
2011-12-23 12:32:40 +00:00
|
|
|
GLuint format = TEX0.PSM == PSM_PSMCT16 || TEX0.PSM == PSM_PSMCT16S ? GL_R16UI : GL_RGBA8;
|
2012-02-11 10:22:02 +00:00
|
|
|
//if (format == GL_R16UI) fprintf(stderr, "Format 16 bits integer\n");
|
2011-12-23 12:32:40 +00:00
|
|
|
#if 0
|
2011-11-16 22:17:37 +00:00
|
|
|
DXGI_FORMAT format = TEX0.PSM == PSM_PSMCT16 || TEX0.PSM == PSM_PSMCT16S ? DXGI_FORMAT_R16_UINT : DXGI_FORMAT_R8G8B8A8_UNORM;
|
2011-12-23 12:32:40 +00:00
|
|
|
#endif
|
2011-11-16 22:17:37 +00:00
|
|
|
|
|
|
|
if(GSTexture* offscreen = m_renderer->m_dev->CopyOffscreen(t->m_texture, src, w, h, format))
|
|
|
|
{
|
|
|
|
GSTexture::GSMap m;
|
|
|
|
|
|
|
|
if(offscreen->Map(m))
|
|
|
|
{
|
|
|
|
// TODO: block level write
|
|
|
|
|
|
|
|
GSOffset* o = m_renderer->m_mem.GetOffset(TEX0.TBP0, TEX0.TBW, TEX0.PSM);
|
|
|
|
|
|
|
|
switch(TEX0.PSM)
|
|
|
|
{
|
|
|
|
case PSM_PSMCT32:
|
|
|
|
m_renderer->m_mem.WritePixel32(m.bits, m.pitch, o, r);
|
|
|
|
break;
|
|
|
|
case PSM_PSMCT24:
|
|
|
|
m_renderer->m_mem.WritePixel24(m.bits, m.pitch, o, r);
|
|
|
|
break;
|
|
|
|
case PSM_PSMCT16:
|
|
|
|
case PSM_PSMCT16S:
|
|
|
|
m_renderer->m_mem.WritePixel16(m.bits, m.pitch, o, r);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ASSERT(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
offscreen->Unmap();
|
|
|
|
}
|
|
|
|
|
2013-07-19 19:25:50 +00:00
|
|
|
// FIXME invalidate data
|
2012-03-05 20:16:26 +00:00
|
|
|
m_renderer->m_dev->Recycle(offscreen);
|
2011-11-16 22:17:37 +00:00
|
|
|
}
|
2015-05-06 16:52:51 +00:00
|
|
|
|
|
|
|
GL_POP();
|
2011-11-16 22:17:37 +00:00
|
|
|
}
|
|
|
|
|