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;
|
2011-12-28 20:21:32 +00:00
|
|
|
const vector<uint32>* m_fb_pages;
|
|
|
|
const vector<uint32>* m_zb_pages;
|
|
|
|
const vector<uint32>* m_tex_pages[7];
|
2011-12-27 09:15:35 +00:00
|
|
|
bool m_using_pages;
|
2011-12-23 15:53:53 +00:00
|
|
|
|
2011-12-18 08:13:20 +00:00
|
|
|
public:
|
2011-12-28 14:10:20 +00:00
|
|
|
GSRasterizerData2(GSRendererSW* parent);
|
|
|
|
virtual ~GSRasterizerData2();
|
2011-12-18 08:13:20 +00:00
|
|
|
|
2011-12-28 20:21:32 +00:00
|
|
|
void UseTargetPages(const vector<uint32>* fb_pages, const vector<uint32>* zb_pages);
|
2011-12-28 14:10:20 +00:00
|
|
|
void UseSourcePages(GSTextureCacheSW::Texture* t, int level);
|
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-25 07:26:42 +00:00
|
|
|
uint32 m_fzb_pages[512]; // uint16 frame/zbuf pages interleaved
|
2011-12-28 14:10:20 +00:00
|
|
|
uint16 m_tex_pages[512];
|
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-28 20:21:32 +00:00
|
|
|
void UsePages(const vector<uint32>* pages, int type);
|
|
|
|
void ReleasePages(const vector<uint32>* pages, int type);
|
2011-12-18 21:57:48 +00:00
|
|
|
|
2011-12-28 14:10:20 +00:00
|
|
|
bool GetScanlineGlobalData(GSRasterizerData2* data2);
|
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
|
|
|
};
|