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.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "GSTextureCache.h"
|
2009-05-22 01:22:52 +00:00
|
|
|
|
|
|
|
GSTextureCache::GSTextureCache(GSRenderer* r)
|
|
|
|
: m_renderer(r)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
GSTextureCache::~GSTextureCache()
|
|
|
|
{
|
|
|
|
RemoveAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GSTextureCache::RemoveAll()
|
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
m_src.RemoveAll();
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
for(int type = 0; type < 2; type++)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
for(list<Target*>::iterator i = m_dst[type].begin(); i != m_dst[type].end(); i++)
|
|
|
|
{
|
|
|
|
delete *i;
|
|
|
|
}
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
m_dst[type].clear();
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
GSTextureCache::Source* GSTextureCache::LookupSource(const GIFRegTEX0& TEX0, const GIFRegTEXA& TEXA, const GSVector4i& r)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
const GSLocalMemory::psm_t& psm = GSLocalMemory::m_psm[TEX0.PSM];
|
|
|
|
const uint32* clut = m_renderer->m_mem.m_clut;
|
|
|
|
|
|
|
|
Source* src = NULL;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
const hash_map<Source*, bool>& map = m_src.m_map[TEX0.TBP0 >> 5];
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
for(hash_map<Source*, bool>::const_iterator i = map.begin(); i != map.end(); i++)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
Source* s = i->first;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(((s->m_TEX0.u32[0] ^ TEX0.u32[0]) | ((s->m_TEX0.u32[1] ^ TEX0.u32[1]) & 3)) != 0) // TBP0 TBW PSM TW TH
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
continue;
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if((psm.trbpp == 16 || psm.trbpp == 24) && TEX0.TCC && TEXA != s->m_TEXA)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
continue;
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(psm.pal > 0 && !GSVector4i::compare(s->m_clut, clut, psm.pal * sizeof(clut[0])))
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
continue;
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
src = s;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
break;
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
Target* dst = NULL;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(src == NULL)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
for(int type = 0; type < 2 && dst == NULL; type++)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
for(list<Target*>::iterator i = m_dst[type].begin(); i != m_dst[type].end(); i++)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
Target* t = *i;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(t->m_used && t->m_dirty.empty() && GSUtil::HasSharedBits(t->m_TEX0.TBP0, t->m_TEX0.PSM, TEX0.TBP0, TEX0.PSM))
|
|
|
|
{
|
|
|
|
dst = t;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(src == NULL)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
src = CreateSource();
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(!(dst ? src->Create(dst) : src->Create()))
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
delete src;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(psm.pal > 0)
|
|
|
|
{
|
|
|
|
memcpy(src->m_clut, clut, psm.pal * sizeof(clut[0]));
|
|
|
|
}
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
m_src.Add(src, TEX0);
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(psm.pal > 0)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
int size = psm.pal * sizeof(clut[0]);
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(src->m_palette)
|
2009-06-17 11:24:42 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
if(src->m_initpalette || GSVector4i::update(src->m_clut, clut, size))
|
|
|
|
{
|
|
|
|
src->m_palette->Update(GSVector4i(0, 0, psm.pal, 1), src->m_clut, size);
|
|
|
|
src->m_initpalette = false;
|
|
|
|
}
|
2009-06-17 11:24:42 +00:00
|
|
|
}
|
2009-06-27 03:32:33 +00:00
|
|
|
}
|
2009-06-17 11:24:42 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
src->Update(TEX0, TEXA, r);
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
m_src.m_used = true;
|
2009-06-09 10:13:28 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
return src;
|
|
|
|
}
|
2009-06-20 20:28:36 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
GSTextureCache::Target* GSTextureCache::LookupTarget(const GIFRegTEX0& TEX0, int w, int h, int type, bool used, bool fb)
|
|
|
|
{
|
|
|
|
Target* dst = NULL;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
for(list<Target*>::iterator i = m_dst[type].begin(); i != m_dst[type].end(); i++)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
Target* t = *i;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(t->m_TEX0.TBP0 == TEX0.TBP0)
|
|
|
|
{
|
|
|
|
m_dst[type].splice(m_dst[type].begin(), m_dst[type], i);
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
dst = t;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(!fb) dst->m_TEX0 = TEX0;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
break;
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(dst == NULL && fb)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
// HACK: try to find something close to the base pointer
|
|
|
|
|
|
|
|
for(list<Target*>::iterator i = m_dst[type].begin(); i != m_dst[type].end(); i++)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
Target* t = *i;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(t->m_TEX0.TBP0 <= TEX0.TBP0 && TEX0.TBP0 < t->m_TEX0.TBP0 + 0x700 && (!dst || t->m_TEX0.TBP0 >= dst->m_TEX0.TBP0))
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
dst = t;
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(dst == NULL)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
dst = CreateTarget();
|
|
|
|
|
|
|
|
dst->m_TEX0 = TEX0;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(!dst->Create(w, h, type))
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
delete dst;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
m_dst[type].push_front(dst);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dst->Update();
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(m_renderer->CanUpscale())
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
GSVector4i fr = m_renderer->GetFrameRect();
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
int ww = (int)(fr.left + dst->m_TEX0.TBW * 64);
|
|
|
|
int hh = (int)(fr.top + m_renderer->GetDisplayRect().height());
|
|
|
|
|
|
|
|
if(hh <= m_renderer->GetDeviceSize().y / 2)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
hh *= 2;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
if(hh < 512)
|
|
|
|
{
|
|
|
|
hh = 512;
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
2009-06-27 03:32:33 +00:00
|
|
|
*/
|
|
|
|
if(ww > 0 && hh > 0)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
dst->m_texture->m_scale.x = (float)w / ww;
|
|
|
|
dst->m_texture->m_scale.y = (float)h / hh;
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(used)
|
|
|
|
{
|
|
|
|
dst->m_used = true;
|
|
|
|
}
|
2009-06-09 10:13:28 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
return dst;
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
void GSTextureCache::InvalidateVideoMem(const GIFRegBITBLTBUF& BITBLTBUF, const GSVector4i& rect, bool target)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
bool found = false;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
const GSLocalMemory::psm_t& psm = GSLocalMemory::m_psm[BITBLTBUF.DPSM];
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
uint32 bp = BITBLTBUF.DBP;
|
|
|
|
uint32 bw = BITBLTBUF.DBW;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
GSVector2i bs = (bp & 31) == 0 ? psm.pgs : psm.bs;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
GSVector4i r = rect.ralign<GSVector4i::Outside>(bs);
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(!target)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
const hash_map<Source*, bool>& map = m_src.m_map[bp >> 5];
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
for(hash_map<Source*, bool>::const_iterator i = map.begin(); i != map.end(); )
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
hash_map<Source*, bool>::const_iterator j = i++;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
Source* s = j->first;
|
|
|
|
|
|
|
|
if(GSUtil::HasSharedBits(bp, BITBLTBUF.DPSM, s->m_TEX0.TBP0, s->m_TEX0.PSM))
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
m_src.RemoveAt(s);
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
|
|
|
}
|
2009-06-27 03:32:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for(int y = r.top; y < r.bottom; y += bs.y)
|
|
|
|
{
|
|
|
|
uint32 base = psm.bn(0, y, bp, bw);
|
|
|
|
|
|
|
|
for(int x = r.left; x < r.right; x += bs.x)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
uint32 page = (base + psm.blockOffset[x >> 3]) >> 5;
|
|
|
|
|
|
|
|
if(page < MAX_PAGES)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
const hash_map<Source*, bool>& map = m_src.m_map[page];
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
for(hash_map<Source*, bool>::const_iterator i = map.begin(); i != map.end(); )
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
hash_map<Source*, bool>::const_iterator j = i++;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
Source* s = j->first;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(GSUtil::HasSharedBits(BITBLTBUF.DPSM, s->m_TEX0.PSM))
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
if(!s->m_target)
|
|
|
|
{
|
2009-06-28 02:02:14 +00:00
|
|
|
s->m_blocks -= s->m_valid[page].count;
|
|
|
|
|
|
|
|
s->m_valid[page].block = 0;
|
|
|
|
s->m_valid[page].count = 0;
|
2009-06-27 03:32:33 +00:00
|
|
|
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(s->m_TEX0.TBP0 == bp)
|
|
|
|
{
|
|
|
|
m_src.RemoveAt(s);
|
|
|
|
}
|
|
|
|
}
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(!target) return;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
for(int type = 0; type < 2; type++)
|
|
|
|
{
|
|
|
|
for(list<Target*>::iterator i = m_dst[type].begin(); i != m_dst[type].end(); )
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
list<Target*>::iterator j = i++;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
Target* t = *j;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(GSUtil::HasSharedBits(BITBLTBUF.DBP, BITBLTBUF.DPSM, t->m_TEX0.TBP0, t->m_TEX0.PSM))
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
if(!found && GSUtil::HasCompatibleBits(BITBLTBUF.DPSM, t->m_TEX0.PSM))
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
t->m_dirty.push_back(GSDirtyRect(r, BITBLTBUF.DPSM));
|
|
|
|
t->m_TEX0.TBW = BITBLTBUF.DBW;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_dst[type].erase(j);
|
|
|
|
delete t;
|
2009-05-22 01:22:52 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(GSUtil::HasSharedBits(BITBLTBUF.DPSM, t->m_TEX0.PSM) && BITBLTBUF.DBP < t->m_TEX0.TBP0)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
uint32 rowsize = BITBLTBUF.DBW * 8192;
|
|
|
|
uint32 offset = (uint32)((t->m_TEX0.TBP0 - BITBLTBUF.DBP) * 256);
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(rowsize > 0 && offset % rowsize == 0)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
int y = GSLocalMemory::m_psm[BITBLTBUF.DPSM].pgs.y * offset / rowsize;
|
|
|
|
|
|
|
|
if(r.bottom > y)
|
|
|
|
{
|
|
|
|
// TODO: do not add this rect above too
|
|
|
|
t->m_dirty.push_back(GSDirtyRect(GSVector4i(r.left, r.top - y, r.right, r.bottom - y), BITBLTBUF.DPSM));
|
|
|
|
t->m_TEX0.TBW = BITBLTBUF.DBW;
|
|
|
|
continue;
|
|
|
|
}
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void GSTextureCache::InvalidateLocalMem(const GIFRegBITBLTBUF& BITBLTBUF, const GSVector4i& r)
|
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
for(list<Target*>::iterator i = m_dst[RenderTarget].begin(); i != m_dst[RenderTarget].end(); )
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
list<Target*>::iterator j = i++;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
Target* t = *j;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(GSUtil::HasSharedBits(BITBLTBUF.SBP, BITBLTBUF.SPSM, t->m_TEX0.TBP0, t->m_TEX0.PSM))
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
if(GSUtil::HasCompatibleBits(BITBLTBUF.SPSM, t->m_TEX0.PSM))
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
t->Read(r);
|
|
|
|
|
2009-05-22 01:22:52 +00:00
|
|
|
return;
|
|
|
|
}
|
2009-06-27 03:32:33 +00:00
|
|
|
else if(BITBLTBUF.SPSM == PSM_PSMCT32 && (t->m_TEX0.PSM == PSM_PSMCT16 || t->m_TEX0.PSM == PSM_PSMCT16S))
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
|
|
|
// ffx-2 riku changing to her default (shoots some reflecting glass at the end), 16-bit rt read as 32-bit
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
t->Read(GSVector4i(r.left, r.top, r.right, r.top + (r.bottom - r.top) * 2));
|
|
|
|
|
2009-05-22 01:22:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
m_dst[RenderTarget].erase(j);
|
|
|
|
|
|
|
|
delete t;
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
// no good, ffx does a lot of readback after exiting menu, at 0x02f00 this wrongly finds rt 0x02100 (0,448 - 512,480)
|
|
|
|
|
|
|
|
GSRenderTarget* rt2 = NULL;
|
|
|
|
int ymin = INT_MAX;
|
|
|
|
|
|
|
|
pos = m_rt.GetHeadPosition();
|
|
|
|
|
|
|
|
while(pos)
|
|
|
|
{
|
|
|
|
GSRenderTarget* rt = m_rt.GetNext(pos);
|
|
|
|
|
|
|
|
if(HasSharedBits(BITBLTBUF.SPSM, rt->m_TEX0.PSM) && BITBLTBUF.SBP > rt->m_TEX0.TBP0)
|
|
|
|
{
|
|
|
|
// ffx2 pause screen background
|
|
|
|
|
|
|
|
uint32 rowsize = BITBLTBUF.SBW * 8192;
|
|
|
|
uint32 offset = (uint32)((BITBLTBUF.SBP - rt->m_TEX0.TBP0) * 256);
|
|
|
|
|
|
|
|
if(rowsize > 0 && offset % rowsize == 0)
|
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
int y = GSLocalMemory::m_psm[BITBLTBUF.SPSM].pgs.y * offset / rowsize;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
|
|
|
if(y < ymin && y < 512)
|
|
|
|
{
|
|
|
|
rt2 = rt;
|
|
|
|
ymin = y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(rt2)
|
|
|
|
{
|
|
|
|
rt2->Read(GSVector4i(r.left, r.top + ymin, r.right, r.bottom + ymin));
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: ds
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
void GSTextureCache::IncAge()
|
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
int maxage = m_src.m_used ? 3 : 30;
|
|
|
|
|
|
|
|
for(hash_map<Source*, bool>::iterator i = m_src.m_surfaces.begin(); i != m_src.m_surfaces.end(); )
|
|
|
|
{
|
|
|
|
hash_map<Source*, bool>::iterator j = i++;
|
2009-06-09 10:13:28 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
Source* s = j->first;
|
|
|
|
|
|
|
|
if(++s->m_age > maxage)
|
|
|
|
{
|
|
|
|
m_src.RemoveAt(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m_src.m_used = false;
|
|
|
|
|
|
|
|
maxage = 3;
|
|
|
|
|
|
|
|
for(int type = 0; type < 2; type++)
|
|
|
|
{
|
|
|
|
for(list<Target*>::iterator i = m_dst[type].begin(); i != m_dst[type].end(); )
|
|
|
|
{
|
|
|
|
list<Target*>::iterator j = i++;
|
|
|
|
|
|
|
|
Target* t = *j;
|
|
|
|
|
|
|
|
if(++t->m_age > maxage)
|
|
|
|
{
|
|
|
|
m_dst[type].erase(j);
|
|
|
|
|
|
|
|
delete t;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
// GSTextureCache::Surface
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
GSTextureCache::Surface::Surface(GSRenderer* r)
|
2009-05-22 01:22:52 +00:00
|
|
|
: m_renderer(r)
|
|
|
|
, m_texture(NULL)
|
|
|
|
, m_age(0)
|
|
|
|
{
|
|
|
|
m_TEX0.TBP0 = (uint32)~0;
|
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
GSTextureCache::Surface::~Surface()
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
|
|
|
m_renderer->m_dev->Recycle(m_texture);
|
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
void GSTextureCache::Surface::Update()
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
|
|
|
m_age = 0;
|
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
// GSTextureCache::Source
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
GSTextureCache::Source::Source(GSRenderer* r)
|
|
|
|
: Surface(r)
|
|
|
|
, m_palette(NULL)
|
|
|
|
, m_initpalette(false)
|
|
|
|
, m_bpp(0)
|
|
|
|
, m_target(false)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
memset(m_valid, 0, sizeof(m_valid));
|
|
|
|
|
|
|
|
m_clut = (uint32*)_aligned_malloc(256 * sizeof(uint32), 16);
|
|
|
|
|
|
|
|
memset(m_clut, 0, sizeof(m_clut));
|
2009-06-28 02:02:14 +00:00
|
|
|
|
|
|
|
m_write.rect = (GSVector4i*)_aligned_malloc(3 * sizeof(GSVector4i), 16);
|
|
|
|
m_write.count = 0;
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
GSTextureCache::Source::~Source()
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
m_renderer->m_dev->Recycle(m_palette);
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
_aligned_free(m_clut);
|
2009-06-28 02:02:14 +00:00
|
|
|
|
|
|
|
_aligned_free(m_write.rect);
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
void GSTextureCache::Source::Update(const GIFRegTEX0& TEX0, const GIFRegTEXA& TEXA, const GSVector4i& rect)
|
2009-06-12 19:09:17 +00:00
|
|
|
{
|
|
|
|
__super::Update();
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(m_target)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2009-06-12 19:09:17 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
m_TEX0 = TEX0;
|
|
|
|
m_TEXA = TEXA;
|
2009-06-12 19:09:17 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
if(m_blocks == m_total_blocks)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2009-06-27 03:32:33 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
const GSLocalMemory::psm_t& psm = GSLocalMemory::m_psm[m_TEX0.PSM];
|
2009-06-27 03:32:33 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
GSVector2i bs = psm.bs;
|
2009-06-27 03:32:33 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
GSVector4i r = rect.ralign<GSVector4i::Outside>(bs);
|
2009-06-27 03:32:33 +00:00
|
|
|
|
|
|
|
uint32 bp = m_TEX0.TBP0;
|
|
|
|
uint32 bw = m_TEX0.TBW;
|
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
bool repeating = (1 << m_TEX0.TW) > (bw << 6); // TODO: bw == 0
|
2009-06-12 19:09:17 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
uint32 blocks = 0;
|
2009-06-27 03:32:33 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
for(int y = r.top; y < r.bottom; y += bs.y)
|
2009-06-12 19:09:17 +00:00
|
|
|
{
|
2009-06-28 02:02:14 +00:00
|
|
|
uint32 base = psm.bn(0, y, bp, bw);
|
2009-06-27 03:32:33 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
for(int x = r.left; x < r.right; x += bs.x)
|
2009-06-27 03:32:33 +00:00
|
|
|
{
|
2009-06-28 02:02:14 +00:00
|
|
|
uint32 block = base + psm.blockOffset[x >> 3];
|
2009-06-27 03:32:33 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
if(block < MAX_BLOCKS)
|
2009-06-27 03:32:33 +00:00
|
|
|
{
|
2009-06-28 02:02:14 +00:00
|
|
|
uint32 row = block >> 5;
|
|
|
|
uint32 col = 1 << (block & 31);
|
2009-06-27 03:32:33 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
if((m_valid[row].block & col) == 0)
|
2009-06-27 03:32:33 +00:00
|
|
|
{
|
2009-06-28 02:02:14 +00:00
|
|
|
if(!repeating) m_valid[row].block |= col;
|
2009-06-27 03:32:33 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
m_valid[row].count++;
|
2009-06-12 19:09:17 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
Write(GSVector4i(x, y, x + bs.x, y + bs.y));
|
2009-06-12 19:09:17 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
blocks++;
|
2009-06-27 03:32:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
if(blocks > 0)
|
|
|
|
{
|
|
|
|
if(repeating)
|
2009-06-12 19:09:17 +00:00
|
|
|
{
|
2009-06-28 02:02:14 +00:00
|
|
|
for(int y = r.top; y < r.bottom; y += bs.y)
|
2009-06-27 03:32:33 +00:00
|
|
|
{
|
2009-06-28 02:02:14 +00:00
|
|
|
uint32 base = psm.bn(0, y, bp, bw);
|
2009-06-27 03:32:33 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
for(int x = r.left; x < r.right; x += bs.x)
|
2009-06-27 03:32:33 +00:00
|
|
|
{
|
2009-06-28 02:02:14 +00:00
|
|
|
uint32 block = base + psm.blockOffset[x >> 3];
|
2009-06-27 03:32:33 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
if(block < MAX_BLOCKS)
|
2009-06-27 03:32:33 +00:00
|
|
|
{
|
2009-06-28 02:02:14 +00:00
|
|
|
uint32 row = block >> 5;
|
|
|
|
uint32 col = 1 << (block & 31);
|
2009-06-27 03:32:33 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
m_valid[row].block |= col;
|
2009-06-27 03:32:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-06-12 19:09:17 +00:00
|
|
|
}
|
2009-06-27 03:32:33 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
m_blocks += blocks;
|
2009-06-12 19:09:17 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
m_renderer->m_perfmon.Put(GSPerfMon::Unswizzle, bs.x * bs.y * sizeof(uint32) * blocks);
|
2009-06-27 03:32:33 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
Flush(m_write.count);
|
|
|
|
}
|
|
|
|
}
|
2009-06-27 03:32:33 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
void GSTextureCache::Source::Write(const GSVector4i& r)
|
|
|
|
{
|
|
|
|
m_write.rect[m_write.count++] = r;
|
|
|
|
|
|
|
|
while(m_write.count >= 2)
|
|
|
|
{
|
|
|
|
GSVector4i& a = m_write.rect[m_write.count - 2];
|
|
|
|
GSVector4i& b = m_write.rect[m_write.count - 1];
|
|
|
|
|
|
|
|
if((a == b.zyxw()).mask() == 0xfff0)
|
|
|
|
{
|
|
|
|
a.right = b.right; // extend right
|
|
|
|
|
|
|
|
m_write.count--;
|
2009-06-12 19:09:17 +00:00
|
|
|
}
|
2009-06-28 02:02:14 +00:00
|
|
|
else if((a == b.xwzy()).mask() == 0xff0f)
|
|
|
|
{
|
|
|
|
a.bottom = b.bottom; // extend down
|
2009-06-12 19:09:17 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
m_write.count--;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-06-12 19:09:17 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
if(m_write.count > 2)
|
|
|
|
{
|
|
|
|
Flush(1);
|
|
|
|
}
|
2009-06-27 03:32:33 +00:00
|
|
|
}
|
2009-06-12 19:09:17 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
void GSTextureCache::Source::Flush(uint32 count)
|
2009-06-27 03:32:33 +00:00
|
|
|
{
|
2009-06-28 02:02:14 +00:00
|
|
|
const GSLocalMemory::psm_t& psm = GSLocalMemory::m_psm[m_TEX0.PSM];
|
2009-06-27 03:32:33 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
int tw = 1 << m_TEX0.TW;
|
|
|
|
int th = 1 << m_TEX0.TH;
|
2009-06-27 03:32:33 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
GSVector4i tr(0, 0, tw, th);
|
2009-06-27 03:32:33 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
// TODO
|
|
|
|
static uint8* buff = (uint8*)_aligned_malloc(1024 * 1024 * sizeof(uint32), 16);
|
|
|
|
|
|
|
|
int pitch = max(tw, psm.bs.x) * sizeof(uint32);
|
|
|
|
|
|
|
|
const GSLocalMemory& mem = m_renderer->m_mem;
|
|
|
|
|
|
|
|
GSLocalMemory::readTexture rtx = psm.rtx;
|
|
|
|
|
|
|
|
for(uint32 i = 0; i < count; i++)
|
2009-06-27 03:32:33 +00:00
|
|
|
{
|
2009-06-28 02:02:14 +00:00
|
|
|
GSVector4i r = m_write.rect[i];
|
2009-06-27 19:05:36 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
if((r > tr).mask() & 0xff00)
|
2009-06-27 19:05:36 +00:00
|
|
|
{
|
2009-06-28 02:02:14 +00:00
|
|
|
(mem.*rtx)(r, buff, pitch, m_TEX0, m_TEXA);
|
2009-06-27 03:32:33 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
m_texture->Update(r.rintersect(tr), buff, pitch);
|
2009-06-27 19:05:36 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-06-28 02:02:14 +00:00
|
|
|
GSTexture::GSMap m;
|
|
|
|
|
|
|
|
if(m_texture->Map(m, &r))
|
|
|
|
{
|
|
|
|
(mem.*rtx)(r, m.bits, m.pitch, m_TEX0, m_TEXA);
|
|
|
|
|
|
|
|
m_texture->Unmap();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
(mem.*rtx)(r, buff, pitch, m_TEX0, m_TEXA);
|
2009-06-27 19:05:36 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
m_texture->Update(r, buff, pitch);
|
|
|
|
}
|
2009-06-27 19:05:36 +00:00
|
|
|
}
|
2009-06-12 19:09:17 +00:00
|
|
|
}
|
2009-06-28 02:02:14 +00:00
|
|
|
|
|
|
|
if(count < m_write.count)
|
|
|
|
{
|
|
|
|
memcpy(m_write.rect[0], &m_write.rect[count], (m_write.count - count) * sizeof(m_write.rect[0]));
|
|
|
|
}
|
|
|
|
|
|
|
|
m_write.count -= count;
|
|
|
|
|
|
|
|
//_aligned_free(buff);
|
2009-06-12 19:09:17 +00:00
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
// GSTextureCache::Target
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
GSTextureCache::Target::Target(GSRenderer* r)
|
|
|
|
: Surface(r)
|
|
|
|
, m_type(-1)
|
2009-05-22 01:22:52 +00:00
|
|
|
, m_used(false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
bool GSTextureCache::Target::Create(int w, int h, int type)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
ASSERT(m_texture == NULL);
|
|
|
|
|
2009-05-22 01:22:52 +00:00
|
|
|
// FIXME: initial data should be unswizzled from local mem in Update() if dirty
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
m_type = type;
|
|
|
|
|
|
|
|
if(type == RenderTarget)
|
|
|
|
{
|
|
|
|
m_texture = m_renderer->m_dev->CreateRenderTarget(w, h);
|
|
|
|
|
|
|
|
m_used = true;
|
|
|
|
}
|
|
|
|
else if(type == DepthStencil)
|
|
|
|
{
|
|
|
|
m_texture = m_renderer->m_dev->CreateDepthStencil(w, h);
|
|
|
|
}
|
2009-05-22 01:22:52 +00:00
|
|
|
|
|
|
|
return m_texture != NULL;
|
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
void GSTextureCache::Target::Update()
|
2009-06-12 19:09:17 +00:00
|
|
|
{
|
|
|
|
__super::Update();
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
// FIXME: the union of the rects may also update wrong parts of the render target (but a lot faster :)
|
|
|
|
|
2009-06-20 20:28:36 +00:00
|
|
|
GSVector4i r = m_dirty.GetDirtyRectAndClear(m_TEX0, m_texture->GetSize());
|
|
|
|
|
|
|
|
if(r.rempty()) return;
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(m_type == RenderTarget)
|
|
|
|
{
|
|
|
|
int w = r.width();
|
|
|
|
int h = r.height();
|
2009-06-20 20:28:36 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(GSTexture* t = m_renderer->m_dev->CreateTexture(w, h))
|
|
|
|
{
|
|
|
|
GIFRegTEXA TEXA;
|
2009-06-12 19:09:17 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
TEXA.AEM = 1;
|
|
|
|
TEXA.TA0 = 0;
|
|
|
|
TEXA.TA1 = 0x80;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
GSTexture::GSMap m;
|
2009-06-17 11:24:42 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
if(t->Map(m))
|
|
|
|
{
|
|
|
|
m_renderer->m_mem.ReadTexture(r, m.bits, m.pitch, m_TEX0, TEXA);
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
t->Unmap();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
static uint8* buff = (uint8*)::_aligned_malloc(1024 * 1024 * 4, 16);
|
|
|
|
|
|
|
|
int pitch = ((w + 3) & ~3) * 4;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
m_renderer->m_mem.ReadTexture(r, buff, pitch, m_TEX0, TEXA);
|
|
|
|
|
|
|
|
t->Update(r.rsize(), buff, pitch);
|
|
|
|
}
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
// m_renderer->m_perfmon.Put(GSPerfMon::Unswizzle, w * h * 4);
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
m_renderer->m_dev->StretchRect(t, m_texture, GSVector4(r) * GSVector4(m_texture->m_scale).xyxy());
|
|
|
|
|
|
|
|
m_renderer->m_dev->Recycle(t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(m_type == DepthStencil)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
// do the most likely thing a direct write would do, clear it
|
|
|
|
|
|
|
|
m_renderer->m_dev->ClearDepth(m_texture, 0);
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
2009-06-27 03:32:33 +00:00
|
|
|
}
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
// GSTextureCache::SourceMap
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
void GSTextureCache::SourceMap::Add(Source* s, const GIFRegTEX0& TEX0)
|
|
|
|
{
|
|
|
|
m_surfaces[s] = true;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
int tw = 1 << TEX0.TW;
|
|
|
|
int th = 1 << TEX0.TH;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
uint32 bp = TEX0.TBP0;
|
|
|
|
uint32 bw = TEX0.TBW;
|
2009-06-12 19:09:17 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
const GSLocalMemory::psm_t& psm = GSLocalMemory::m_psm[TEX0.PSM];
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
GSVector2i bs = psm.bs;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
int blocks = 0;
|
|
|
|
|
|
|
|
for(int y = 0; y < th; y += bs.y)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
uint32 base = psm.bn(0, y, bp, bw);
|
2009-05-28 02:57:01 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
for(int x = 0; x < tw; x += bs.x)
|
|
|
|
{
|
2009-06-28 02:02:14 +00:00
|
|
|
uint32 block = base + psm.blockOffset[x >> 3];
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
if(block < MAX_BLOCKS)
|
2009-06-27 03:32:33 +00:00
|
|
|
{
|
2009-06-28 02:02:14 +00:00
|
|
|
m_map[block >> 5][s] = true;
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
blocks++;
|
2009-06-27 03:32:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-06-28 02:02:14 +00:00
|
|
|
|
|
|
|
s->m_blocks = 0;
|
|
|
|
s->m_total_blocks = blocks;
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
void GSTextureCache::SourceMap::RemoveAll()
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
for(hash_map<Source*, bool>::iterator i = m_surfaces.begin(); i != m_surfaces.end(); i++)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
delete i->first;
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
m_surfaces.clear();
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
for(int i = 0; i < MAX_PAGES; i++)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-27 03:32:33 +00:00
|
|
|
m_map[i].clear();
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
2009-06-27 03:32:33 +00:00
|
|
|
}
|
2009-05-22 01:22:52 +00:00
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
void GSTextureCache::SourceMap::RemoveAt(Source* s)
|
|
|
|
{
|
|
|
|
m_surfaces.erase(s);
|
|
|
|
|
2009-06-28 02:02:14 +00:00
|
|
|
for(int i = 0; i < countof(m_map); i++)
|
2009-05-22 01:22:52 +00:00
|
|
|
{
|
2009-06-28 02:02:14 +00:00
|
|
|
m_map[i].erase(s);
|
2009-05-22 01:22:52 +00:00
|
|
|
}
|
|
|
|
|
2009-06-27 03:32:33 +00:00
|
|
|
delete s;
|
|
|
|
}
|