2013-04-18 03:09:55 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2010-10-19 22:24:27 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2010-10-19 22:24:27 +00:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
#include "Common/Thread.h"
|
2010-10-19 22:24:27 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/BPMemory.h"
|
|
|
|
#include "VideoCommon/TextureDecoder.h"
|
|
|
|
#include "VideoCommon/VideoCommon.h"
|
2010-10-19 22:24:27 +00:00
|
|
|
|
2012-05-28 09:31:37 +00:00
|
|
|
struct VideoConfig;
|
|
|
|
|
2010-10-19 22:24:27 +00:00
|
|
|
class TextureCache
|
|
|
|
{
|
|
|
|
public:
|
2012-01-29 19:24:23 +00:00
|
|
|
enum TexCacheEntryType
|
2011-12-26 23:05:26 +00:00
|
|
|
{
|
2012-01-29 20:49:50 +00:00
|
|
|
TCET_NORMAL,
|
2014-02-17 04:51:41 +00:00
|
|
|
TCET_EC_VRAM, // EFB copy which sits in VRAM and is ready to be used
|
|
|
|
TCET_EC_DYNAMIC, // EFB copy which sits in RAM and needs to be decoded before being used
|
2011-12-26 23:05:26 +00:00
|
|
|
};
|
|
|
|
|
2015-01-11 14:03:41 +00:00
|
|
|
struct TCacheEntryConfig
|
|
|
|
{
|
|
|
|
TCacheEntryConfig() : width(0), height(0), levels(1), layers(1), rendertarget(false) {}
|
|
|
|
|
|
|
|
u32 width, height;
|
|
|
|
u32 levels, layers;
|
|
|
|
bool rendertarget;
|
|
|
|
};
|
|
|
|
|
2010-10-19 22:24:27 +00:00
|
|
|
struct TCacheEntryBase
|
|
|
|
{
|
2015-01-11 14:03:41 +00:00
|
|
|
const TCacheEntryConfig config;
|
|
|
|
|
2011-12-26 16:35:27 +00:00
|
|
|
// common members
|
2010-10-19 22:24:27 +00:00
|
|
|
u32 addr;
|
|
|
|
u32 size_in_bytes;
|
|
|
|
u64 hash;
|
|
|
|
u32 format;
|
2010-10-20 00:39:45 +00:00
|
|
|
|
2012-01-29 19:24:23 +00:00
|
|
|
enum TexCacheEntryType type;
|
2010-10-20 00:39:45 +00:00
|
|
|
|
2011-12-26 16:35:27 +00:00
|
|
|
unsigned int native_width, native_height; // Texture dimensions from the GameCube's point of view
|
2010-10-19 22:24:27 +00:00
|
|
|
|
2011-12-26 17:33:05 +00:00
|
|
|
// used to delete textures which haven't been used for TEXTURE_KILL_THRESHOLD frames
|
|
|
|
int frameCount;
|
|
|
|
|
|
|
|
|
2015-01-11 14:03:41 +00:00
|
|
|
void SetGeneralParameters(u32 _addr, u32 _size, u32 _format)
|
2011-12-26 17:05:01 +00:00
|
|
|
{
|
2013-01-29 22:40:15 +00:00
|
|
|
addr = _addr;
|
|
|
|
size_in_bytes = _size;
|
|
|
|
format = _format;
|
2011-12-26 17:05:01 +00:00
|
|
|
}
|
|
|
|
|
2015-01-11 14:03:41 +00:00
|
|
|
void SetDimensions(unsigned int _native_width, unsigned int _native_height)
|
2011-12-26 17:05:01 +00:00
|
|
|
{
|
2013-01-29 22:40:15 +00:00
|
|
|
native_width = _native_width;
|
|
|
|
native_height = _native_height;
|
2011-12-26 17:05:01 +00:00
|
|
|
}
|
|
|
|
|
2014-05-16 22:24:18 +00:00
|
|
|
void SetHashes(u64 _hash)
|
2011-12-26 17:05:01 +00:00
|
|
|
{
|
2013-01-29 22:40:15 +00:00
|
|
|
hash = _hash;
|
2011-12-26 17:05:01 +00:00
|
|
|
}
|
|
|
|
|
2015-01-11 14:03:41 +00:00
|
|
|
TCacheEntryBase(const TCacheEntryConfig& c) : config(c) {}
|
2010-10-19 22:24:27 +00:00
|
|
|
virtual ~TCacheEntryBase();
|
|
|
|
|
|
|
|
virtual void Bind(unsigned int stage) = 0;
|
2014-02-23 22:03:39 +00:00
|
|
|
virtual bool Save(const std::string& filename, unsigned int level) = 0;
|
2010-10-19 22:24:27 +00:00
|
|
|
|
|
|
|
virtual void Load(unsigned int width, unsigned int height,
|
2012-08-10 11:13:51 +00:00
|
|
|
unsigned int expanded_width, unsigned int level) = 0;
|
2011-02-26 23:41:02 +00:00
|
|
|
virtual void FromRenderTarget(u32 dstAddr, unsigned int dstFormat,
|
2014-03-23 20:44:23 +00:00
|
|
|
PEControl::PixelFormat srcFormat, const EFBRectangle& srcRect,
|
2011-02-26 23:41:02 +00:00
|
|
|
bool isIntensity, bool scaleByHalf, unsigned int cbufid,
|
|
|
|
const float *colmat) = 0;
|
2010-10-19 22:24:27 +00:00
|
|
|
|
2014-05-16 19:57:14 +00:00
|
|
|
bool OverlapsMemoryRange(u32 range_address, u32 range_size) const;
|
2012-01-29 19:24:23 +00:00
|
|
|
|
|
|
|
bool IsEfbCopy() { return (type == TCET_EC_VRAM || type == TCET_EC_DYNAMIC); }
|
2010-10-19 22:24:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
virtual ~TextureCache(); // needs virtual for DX11 dtor
|
|
|
|
|
2012-05-28 09:31:37 +00:00
|
|
|
static void OnConfigChanged(VideoConfig& config);
|
2014-05-19 16:31:38 +00:00
|
|
|
|
|
|
|
// Removes textures which aren't used for more than TEXTURE_KILL_THRESHOLD frames,
|
|
|
|
// frameCount is the current frame number.
|
|
|
|
static void Cleanup(int frameCount);
|
2010-10-19 22:24:27 +00:00
|
|
|
|
2012-05-28 09:37:14 +00:00
|
|
|
static void Invalidate();
|
2010-10-19 22:24:27 +00:00
|
|
|
static void InvalidateRange(u32 start_address, u32 size);
|
|
|
|
static void MakeRangeDynamic(u32 start_address, u32 size);
|
2014-02-17 04:51:41 +00:00
|
|
|
static void ClearRenderTargets(); // currently only used by OGL
|
2010-11-06 04:46:44 +00:00
|
|
|
static bool Find(u32 start_address, u64 hash);
|
2010-10-19 22:24:27 +00:00
|
|
|
|
|
|
|
virtual TCacheEntryBase* CreateTexture(unsigned int width, unsigned int height,
|
2014-11-05 21:09:39 +00:00
|
|
|
unsigned int tex_levels, PC_TexFormat pcfmt) = 0;
|
2015-01-11 14:03:41 +00:00
|
|
|
virtual TCacheEntryBase* CreateRenderTargetTexture(unsigned int scaled_tex_w, unsigned int scaled_tex_h, unsigned int layers) = 0;
|
2010-10-19 22:24:27 +00:00
|
|
|
|
2014-11-03 23:53:14 +00:00
|
|
|
virtual void CompileShaders() = 0; // currently only implemented by OGL
|
|
|
|
virtual void DeleteShaders() = 0; // currently only implemented by OGL
|
|
|
|
|
2015-01-11 11:48:04 +00:00
|
|
|
static TCacheEntryBase* Load(const u32 stage);
|
2014-03-23 20:44:23 +00:00
|
|
|
static void CopyRenderTargetToTexture(u32 dstAddr, unsigned int dstFormat, PEControl::PixelFormat srcFormat,
|
2011-02-26 23:41:02 +00:00
|
|
|
const EFBRectangle& srcRect, bool isIntensity, bool scaleByHalf);
|
2010-10-19 22:24:27 +00:00
|
|
|
|
2013-06-08 01:28:54 +00:00
|
|
|
static void RequestInvalidateTextureCache();
|
|
|
|
|
2010-10-19 22:24:27 +00:00
|
|
|
protected:
|
|
|
|
TextureCache();
|
|
|
|
|
2014-12-22 11:53:03 +00:00
|
|
|
static GC_ALIGNED16(u8 *temp);
|
|
|
|
static size_t temp_size;
|
2010-10-19 22:24:27 +00:00
|
|
|
|
|
|
|
private:
|
2014-12-22 21:33:38 +00:00
|
|
|
static void DumpTexture(TCacheEntryBase* entry, std::string basename, unsigned int level);
|
2014-12-22 11:53:03 +00:00
|
|
|
static void CheckTempSize(size_t required_size);
|
2012-05-12 11:25:13 +00:00
|
|
|
|
2015-01-11 14:03:41 +00:00
|
|
|
static TCacheEntryBase* AllocateRenderTarget(unsigned int width, unsigned int height, unsigned int layers);
|
2014-06-11 23:04:42 +00:00
|
|
|
static void FreeRenderTarget(TCacheEntryBase* entry);
|
|
|
|
|
2010-10-19 22:24:27 +00:00
|
|
|
typedef std::map<u32, TCacheEntryBase*> TexCache;
|
2014-06-11 23:04:42 +00:00
|
|
|
typedef std::vector<TCacheEntryBase*> RenderTargetPool;
|
2013-11-07 20:16:36 +00:00
|
|
|
|
2010-10-19 22:24:27 +00:00
|
|
|
static TexCache textures;
|
2014-06-11 23:04:42 +00:00
|
|
|
static RenderTargetPool render_target_pool;
|
2012-05-28 09:31:37 +00:00
|
|
|
|
|
|
|
// Backup configuration values
|
2013-04-24 13:21:54 +00:00
|
|
|
static struct BackupConfig
|
|
|
|
{
|
2012-05-28 09:31:37 +00:00
|
|
|
int s_colorsamples;
|
|
|
|
bool s_texfmt_overlay;
|
|
|
|
bool s_texfmt_overlay_center;
|
|
|
|
bool s_hires_textures;
|
|
|
|
bool s_copy_cache_enable;
|
2014-11-03 23:53:14 +00:00
|
|
|
bool s_stereo_3d;
|
2014-12-24 22:06:44 +00:00
|
|
|
bool s_efb_mono_depth;
|
2012-05-28 09:31:37 +00:00
|
|
|
} backup_config;
|
2010-10-19 22:24:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern TextureCache *g_texture_cache;
|