2012-01-29 20:55:07 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
|
|
|
|
|
|
|
// 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, version 2.0.
|
|
|
|
|
|
|
|
// 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 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
2010-10-19 22:24:27 +00:00
|
|
|
|
|
|
|
#ifndef _TEXTURECACHEBASE_H
|
|
|
|
#define _TEXTURECACHEBASE_H
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
2011-01-25 16:43:08 +00:00
|
|
|
#include "VideoCommon.h"
|
2010-10-19 22:24:27 +00:00
|
|
|
#include "TextureDecoder.h"
|
|
|
|
#include "BPMemory.h"
|
2011-02-05 10:08:06 +00:00
|
|
|
#include "Thread.h"
|
2010-10-19 22:24:27 +00:00
|
|
|
|
|
|
|
#include "CommonTypes.h"
|
|
|
|
|
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,
|
2012-01-29 19:24:23 +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
|
|
|
};
|
|
|
|
|
2010-10-19 22:24:27 +00:00
|
|
|
struct TCacheEntryBase
|
|
|
|
{
|
2011-12-26 17:05:01 +00:00
|
|
|
#define TEXHASH_INVALID 0
|
|
|
|
|
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;
|
2011-12-26 16:35:27 +00:00
|
|
|
//u32 pal_hash;
|
2010-10-19 22:24:27 +00:00
|
|
|
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 num_mipmaps;
|
|
|
|
unsigned int native_width, native_height; // Texture dimensions from the GameCube's point of view
|
|
|
|
unsigned int virtual_width, virtual_height; // Texture dimensions from OUR point of view - for hires textures or scaled EFB copies
|
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;
|
|
|
|
|
|
|
|
|
2011-12-26 17:05:01 +00:00
|
|
|
void SetGeneralParameters(u32 addr, u32 size, u32 format, unsigned int num_mipmaps)
|
|
|
|
{
|
|
|
|
this->addr = addr;
|
|
|
|
this->size_in_bytes = size;
|
|
|
|
this->format = format;
|
|
|
|
this->num_mipmaps = num_mipmaps;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetDimensions(unsigned int native_width, unsigned int native_height, unsigned int virtual_width, unsigned int virtual_height)
|
|
|
|
{
|
|
|
|
this->native_width = native_width;
|
|
|
|
this->native_height = native_height;
|
|
|
|
this->virtual_width = virtual_width;
|
|
|
|
this->virtual_height = virtual_height;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetHashes(u64 hash/*, u32 pal_hash*/)
|
|
|
|
{
|
|
|
|
this->hash = hash;
|
|
|
|
//this->pal_hash = pal_hash;
|
|
|
|
}
|
|
|
|
|
2010-10-19 22:24:27 +00:00
|
|
|
|
|
|
|
virtual ~TCacheEntryBase();
|
|
|
|
|
|
|
|
virtual void Bind(unsigned int stage) = 0;
|
2012-05-12 11:50:03 +00:00
|
|
|
virtual bool Save(const char filename[], unsigned int level) = 0;
|
2010-10-19 22:24:27 +00:00
|
|
|
|
|
|
|
virtual void Load(unsigned int width, unsigned int height,
|
2011-12-26 19:05:32 +00:00
|
|
|
unsigned int expanded_width, unsigned int level, bool autogen_mips) = 0;
|
2011-02-26 23:41:02 +00:00
|
|
|
virtual void FromRenderTarget(u32 dstAddr, unsigned int dstFormat,
|
|
|
|
unsigned int srcFormat, const EFBRectangle& srcRect,
|
|
|
|
bool isIntensity, bool scaleByHalf, unsigned int cbufid,
|
|
|
|
const float *colmat) = 0;
|
2010-10-19 22:24:27 +00:00
|
|
|
|
|
|
|
int IntersectsMemoryRange(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);
|
2010-10-19 22:24:27 +00:00
|
|
|
static void Cleanup();
|
|
|
|
|
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);
|
|
|
|
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,
|
|
|
|
unsigned int expanded_width, unsigned int tex_levels, PC_TexFormat pcfmt) = 0;
|
|
|
|
virtual TCacheEntryBase* CreateRenderTargetTexture(unsigned int scaled_tex_w, unsigned int scaled_tex_h) = 0;
|
|
|
|
|
|
|
|
static TCacheEntryBase* Load(unsigned int stage, u32 address, unsigned int width, unsigned int height,
|
2012-01-29 20:49:50 +00:00
|
|
|
int format, unsigned int tlutaddr, int tlutfmt, bool UseNativeMips, unsigned int maxlevel, bool from_tmem);
|
2011-02-26 23:41:02 +00:00
|
|
|
static void CopyRenderTargetToTexture(u32 dstAddr, unsigned int dstFormat, unsigned int srcFormat,
|
|
|
|
const EFBRectangle& srcRect, bool isIntensity, bool scaleByHalf);
|
2010-10-19 22:24:27 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
TextureCache();
|
|
|
|
|
2011-02-25 20:35:05 +00:00
|
|
|
static GC_ALIGNED16(u8 *temp);
|
2012-05-13 13:38:56 +00:00
|
|
|
static unsigned int temp_size;
|
2010-10-19 22:24:27 +00:00
|
|
|
|
|
|
|
private:
|
2012-05-12 12:31:38 +00:00
|
|
|
static bool CheckForCustomTextureLODs(u64 tex_hash, int texformat, unsigned int levels);
|
2012-05-13 13:38:56 +00:00
|
|
|
static PC_TexFormat LoadCustomTexture(u64 tex_hash, int texformat, unsigned int level, unsigned int& width, unsigned int& height);
|
2012-05-12 11:50:03 +00:00
|
|
|
static void DumpTexture(TCacheEntryBase* entry, unsigned int level);
|
2012-05-12 11:25:13 +00:00
|
|
|
|
|
|
|
|
2010-10-19 22:24:27 +00:00
|
|
|
typedef std::map<u32, TCacheEntryBase*> TexCache;
|
|
|
|
|
|
|
|
static TexCache textures;
|
2012-05-28 09:31:37 +00:00
|
|
|
|
|
|
|
// Backup configuration values
|
|
|
|
static struct BackupConfig {
|
|
|
|
int s_colorsamples;
|
|
|
|
bool s_copy_efb_to_texture;
|
|
|
|
bool s_copy_efb_scaled;
|
|
|
|
bool s_copy_efb;
|
|
|
|
int s_efb_scale;
|
|
|
|
bool s_texfmt_overlay;
|
|
|
|
bool s_texfmt_overlay_center;
|
|
|
|
bool s_hires_textures;
|
|
|
|
bool s_copy_cache_enable;
|
|
|
|
} backup_config;
|
2010-10-19 22:24:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern TextureCache *g_texture_cache;
|
|
|
|
|
|
|
|
#endif
|