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
|
2010-04-25 00:31:27 +00:00
|
|
|
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
2009-02-09 21:15:56 +00:00
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "GSRenderer.h"
|
|
|
|
#include "GSTextureCacheSW.h"
|
|
|
|
#include "GSDrawScanline.h"
|
|
|
|
|
2009-05-22 01:22:52 +00:00
|
|
|
class GSRendererSW : public GSRendererT<GSVertexSW>
|
2009-02-09 21:15:56 +00:00
|
|
|
{
|
2011-12-18 08:13:20 +00:00
|
|
|
class GSRasterizerData2 : public GSRasterizerData
|
|
|
|
{
|
2011-12-23 15:53:53 +00:00
|
|
|
GSRendererSW* m_parent;
|
|
|
|
GSOffset* m_fb;
|
|
|
|
GSOffset* m_zb;
|
|
|
|
|
2011-12-18 08:13:20 +00:00
|
|
|
public:
|
2011-12-23 15:53:53 +00:00
|
|
|
GSRasterizerData2(GSRendererSW* parent)
|
|
|
|
: m_parent(parent)
|
|
|
|
, m_fb(parent->m_context->offset.fb)
|
|
|
|
, m_zb(parent->m_context->offset.zb)
|
2011-12-18 08:13:20 +00:00
|
|
|
{
|
|
|
|
GSScanlineGlobalData* gd = (GSScanlineGlobalData*)_aligned_malloc(sizeof(GSScanlineGlobalData), 32);
|
|
|
|
|
|
|
|
gd->clut = NULL;
|
|
|
|
gd->dimx = NULL;
|
|
|
|
|
|
|
|
param = gd;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~GSRasterizerData2()
|
|
|
|
{
|
|
|
|
GSScanlineGlobalData* gd = (GSScanlineGlobalData*)param;
|
2011-12-23 15:53:53 +00:00
|
|
|
|
|
|
|
GSVector4i r = bbox.rintersect(scissor);
|
|
|
|
|
|
|
|
if(gd->sel.fwrite)
|
|
|
|
{
|
|
|
|
m_parent->ReleaseTargetPages(m_fb, r);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(gd->sel.zwrite)
|
|
|
|
{
|
|
|
|
m_parent->ReleaseTargetPages(m_zb, r);
|
|
|
|
}
|
2011-12-18 08:13:20 +00:00
|
|
|
|
|
|
|
if(gd->clut) _aligned_free(gd->clut);
|
|
|
|
if(gd->dimx) _aligned_free(gd->dimx);
|
|
|
|
|
|
|
|
_aligned_free(gd);
|
|
|
|
}
|
2011-12-19 01:20:55 +00:00
|
|
|
};
|
2011-12-18 08:13:20 +00:00
|
|
|
|
2009-02-09 21:15:56 +00:00
|
|
|
protected:
|
2011-12-20 14:33:28 +00:00
|
|
|
IRasterizer* m_rl;
|
2009-02-09 21:15:56 +00:00
|
|
|
GSTextureCacheSW* m_tc;
|
2009-05-22 01:22:52 +00:00
|
|
|
GSTexture* m_texture[2];
|
2011-02-19 03:36:30 +00:00
|
|
|
uint8* m_output;
|
2009-02-09 21:15:56 +00:00
|
|
|
bool m_reset;
|
2011-12-18 08:13:20 +00:00
|
|
|
GSPixelOffset4* m_fzb;
|
2011-12-23 15:53:53 +00:00
|
|
|
long m_fzb_pages[512];
|
2011-12-18 21:57:48 +00:00
|
|
|
uint32 m_tex_pages[16];
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2009-05-22 01:22:52 +00:00
|
|
|
void Reset();
|
|
|
|
void VSync(int field);
|
|
|
|
void ResetDevice();
|
|
|
|
GSTexture* GetOutput(int i);
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2009-05-22 01:22:52 +00:00
|
|
|
void Draw();
|
2011-12-22 14:36:54 +00:00
|
|
|
void Sync(int reason);
|
2009-05-22 01:22:52 +00:00
|
|
|
void InvalidateVideoMem(const GIFRegBITBLTBUF& BITBLTBUF, const GSVector4i& r);
|
2011-12-20 14:33:28 +00:00
|
|
|
void InvalidateLocalMem(const GIFRegBITBLTBUF& BITBLTBUF, const GSVector4i& r, bool clut = false);
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2011-12-23 15:53:53 +00:00
|
|
|
void UseTargetPages(GSOffset* o, const GSVector4i& rect);
|
|
|
|
void ReleaseTargetPages(GSOffset* o, const GSVector4i& rect);
|
|
|
|
void UseSourcePages(const GSTextureCacheSW::Texture* t);
|
2011-12-18 21:57:48 +00:00
|
|
|
|
2011-03-19 19:29:30 +00:00
|
|
|
bool GetScanlineGlobalData(GSScanlineGlobalData& gd);
|
2009-02-09 21:15:56 +00:00
|
|
|
|
|
|
|
public:
|
2011-02-17 03:24:37 +00:00
|
|
|
GSRendererSW(int threads);
|
2009-05-22 01:22:52 +00:00
|
|
|
virtual ~GSRendererSW();
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2011-12-19 01:20:55 +00:00
|
|
|
template<uint32 prim, uint32 tme, uint32 fst>
|
2011-02-07 01:59:05 +00:00
|
|
|
void VertexKick(bool skip);
|
2009-02-09 21:15:56 +00:00
|
|
|
};
|