2015-05-24 04:32:32 +00:00
|
|
|
// Copyright 2010 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2010-11-14 23:56:26 +00:00
|
|
|
|
|
|
|
#include <list>
|
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/VideoCommon.h"
|
2010-11-14 23:56:26 +00:00
|
|
|
|
2014-09-20 18:54:59 +00:00
|
|
|
inline bool AddressRangesOverlap(u32 aLower, u32 aUpper, u32 bLower, u32 bUpper)
|
2010-11-14 23:56:26 +00:00
|
|
|
{
|
|
|
|
return !((aLower >= bUpper) || (bLower >= aUpper));
|
|
|
|
}
|
|
|
|
|
|
|
|
struct XFBSourceBase
|
|
|
|
{
|
|
|
|
virtual ~XFBSourceBase() {}
|
|
|
|
|
|
|
|
virtual void DecodeToTexture(u32 xfbAddr, u32 fbWidth, u32 fbHeight) = 0;
|
|
|
|
|
2010-12-27 03:18:01 +00:00
|
|
|
virtual void CopyEFB(float Gamma) = 0;
|
2010-11-14 23:56:26 +00:00
|
|
|
|
|
|
|
u32 srcAddr;
|
|
|
|
u32 srcWidth;
|
|
|
|
u32 srcHeight;
|
|
|
|
|
|
|
|
unsigned int texWidth;
|
|
|
|
unsigned int texHeight;
|
|
|
|
|
2014-12-25 01:37:22 +00:00
|
|
|
// TODO: only used by OGL
|
2010-11-14 23:56:26 +00:00
|
|
|
TargetRectangle sourceRc;
|
|
|
|
};
|
|
|
|
|
|
|
|
class FramebufferManagerBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
// There may be multiple XFBs in GameCube RAM. This is the maximum number to
|
|
|
|
// virtualize.
|
|
|
|
MAX_VIRTUAL_XFB = 8
|
|
|
|
};
|
|
|
|
|
|
|
|
FramebufferManagerBase();
|
|
|
|
virtual ~FramebufferManagerBase();
|
|
|
|
|
2015-07-07 13:09:25 +00:00
|
|
|
static void CopyToXFB(u32 xfbAddr, u32 fbStride, u32 fbHeight, const EFBRectangle& sourceRc,float Gamma);
|
2014-10-02 06:20:46 +00:00
|
|
|
static const XFBSourceBase* const* GetXFBSource(u32 xfbAddr, u32 fbWidth, u32 fbHeight, u32* xfbCount);
|
2010-11-14 23:56:26 +00:00
|
|
|
|
2012-09-28 21:48:18 +00:00
|
|
|
static void SetLastXfbWidth(unsigned int width) { s_last_xfb_width = width; }
|
|
|
|
static void SetLastXfbHeight(unsigned int height) { s_last_xfb_height = height; }
|
|
|
|
static unsigned int LastXfbWidth() { return s_last_xfb_width; }
|
|
|
|
static unsigned int LastXfbHeight() { return s_last_xfb_height; }
|
|
|
|
|
2014-12-24 23:58:16 +00:00
|
|
|
static int ScaleToVirtualXfbWidth(int x);
|
|
|
|
static int ScaleToVirtualXfbHeight(int y);
|
2012-09-28 22:19:28 +00:00
|
|
|
|
2014-11-29 15:53:19 +00:00
|
|
|
static unsigned int GetEFBLayers() { return m_EFBLayers; }
|
2014-11-06 10:41:39 +00:00
|
|
|
|
2010-11-14 23:56:26 +00:00
|
|
|
protected:
|
|
|
|
struct VirtualXFB
|
|
|
|
{
|
2015-02-04 15:36:42 +00:00
|
|
|
VirtualXFB()
|
|
|
|
{
|
|
|
|
}
|
2010-11-14 23:56:26 +00:00
|
|
|
|
|
|
|
// Address and size in GameCube RAM
|
2015-02-04 15:36:42 +00:00
|
|
|
u32 xfbAddr = 0;
|
|
|
|
u32 xfbWidth = 0;
|
|
|
|
u32 xfbHeight = 0;
|
2010-11-14 23:56:26 +00:00
|
|
|
|
2015-02-04 15:36:42 +00:00
|
|
|
XFBSourceBase* xfbSource = nullptr;
|
2010-11-14 23:56:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::list<VirtualXFB> VirtualXFBListType;
|
|
|
|
|
2014-11-06 10:41:39 +00:00
|
|
|
static unsigned int m_EFBLayers;
|
|
|
|
|
2010-11-14 23:56:26 +00:00
|
|
|
private:
|
2014-12-20 16:24:35 +00:00
|
|
|
virtual XFBSourceBase* CreateXFBSource(unsigned int target_width, unsigned int target_height, unsigned int layers) = 0;
|
2010-11-14 23:56:26 +00:00
|
|
|
// TODO: figure out why OGL is different for this guy
|
2014-12-24 23:58:16 +00:00
|
|
|
virtual void GetTargetSize(unsigned int *width, unsigned int *height) = 0;
|
2010-11-14 23:56:26 +00:00
|
|
|
|
|
|
|
static VirtualXFBListType::iterator FindVirtualXFB(u32 xfbAddr, u32 width, u32 height);
|
|
|
|
|
|
|
|
static void ReplaceVirtualXFB();
|
|
|
|
|
|
|
|
// TODO: merge these virtual funcs, they are nearly all the same
|
2015-07-07 13:09:25 +00:00
|
|
|
virtual void CopyToRealXFB(u32 xfbAddr, u32 fbStride, u32 fbHeight, const EFBRectangle& sourceRc,float Gamma = 1.0f) = 0;
|
2010-12-27 03:18:01 +00:00
|
|
|
static void CopyToVirtualXFB(u32 xfbAddr, u32 fbWidth, u32 fbHeight, const EFBRectangle& sourceRc,float Gamma = 1.0f);
|
2010-11-14 23:56:26 +00:00
|
|
|
|
2014-10-02 06:20:46 +00:00
|
|
|
static const XFBSourceBase* const* GetRealXFBSource(u32 xfbAddr, u32 fbWidth, u32 fbHeight, u32* xfbCount);
|
|
|
|
static const XFBSourceBase* const* GetVirtualXFBSource(u32 xfbAddr, u32 fbWidth, u32 fbHeight, u32* xfbCount);
|
2010-11-14 23:56:26 +00:00
|
|
|
|
|
|
|
static XFBSourceBase *m_realXFBSource; // Only used in Real XFB mode
|
|
|
|
static VirtualXFBListType m_virtualXFBList; // Only used in Virtual XFB mode
|
|
|
|
|
|
|
|
static const XFBSourceBase* m_overlappingXFBArray[MAX_VIRTUAL_XFB];
|
2012-09-28 21:48:18 +00:00
|
|
|
|
|
|
|
static unsigned int s_last_xfb_width;
|
|
|
|
static unsigned int s_last_xfb_height;
|
2010-11-14 23:56:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern FramebufferManagerBase *g_framebuffer_manager;
|