2013-04-18 03:29:41 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoBackends/OGL/GLUtil.h"
|
|
|
|
#include "VideoCommon/BPStructs.h"
|
|
|
|
#include "VideoCommon/TextureCacheBase.h"
|
|
|
|
#include "VideoCommon/VideoCommon.h"
|
2010-10-19 22:24:27 +00:00
|
|
|
|
|
|
|
namespace OGL
|
|
|
|
{
|
|
|
|
|
|
|
|
class TextureCache : public ::TextureCache
|
2008-12-08 04:46:09 +00:00
|
|
|
{
|
|
|
|
public:
|
2012-12-07 23:54:38 +00:00
|
|
|
TextureCache();
|
2010-10-19 22:24:27 +00:00
|
|
|
static void DisableStage(unsigned int stage);
|
2013-01-18 23:39:31 +00:00
|
|
|
static void SetStage();
|
2010-10-19 22:24:27 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
struct TCacheEntry : TCacheEntryBase
|
2011-02-06 15:02:26 +00:00
|
|
|
{
|
|
|
|
GLuint texture;
|
2013-04-08 12:36:58 +00:00
|
|
|
GLuint framebuffer;
|
2010-10-19 22:24:27 +00:00
|
|
|
|
|
|
|
PC_TexFormat pcfmt;
|
|
|
|
|
|
|
|
int gl_format;
|
|
|
|
int gl_iformat;
|
|
|
|
int gl_type;
|
|
|
|
|
|
|
|
//TexMode0 mode; // current filter and clamp modes that texture is set to
|
|
|
|
//TexMode1 mode1; // current filter and clamp modes that texture is set to
|
|
|
|
|
|
|
|
TCacheEntry();
|
|
|
|
~TCacheEntry();
|
|
|
|
|
|
|
|
void Load(unsigned int width, unsigned int height,
|
2013-10-29 05:34:26 +00:00
|
|
|
unsigned int expanded_width, unsigned int level) override;
|
2010-10-19 22:24:27 +00:00
|
|
|
|
2011-02-26 23:41:02 +00:00
|
|
|
void FromRenderTarget(u32 dstAddr, unsigned int dstFormat,
|
|
|
|
unsigned int srcFormat, const EFBRectangle& srcRect,
|
|
|
|
bool isIntensity, bool scaleByHalf, unsigned int cbufid,
|
2013-10-29 05:34:26 +00:00
|
|
|
const float *colmat) override;
|
2010-10-19 22:24:27 +00:00
|
|
|
|
2013-10-29 05:34:26 +00:00
|
|
|
void Bind(unsigned int stage) override;
|
2013-11-16 22:12:07 +00:00
|
|
|
bool Save(const std::string filename, unsigned int level);
|
2011-02-06 15:02:26 +00:00
|
|
|
};
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2010-10-19 22:24:27 +00:00
|
|
|
~TextureCache();
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2010-10-19 22:24:27 +00:00
|
|
|
TCacheEntryBase* CreateTexture(unsigned int width, unsigned int height,
|
2013-10-29 05:34:26 +00:00
|
|
|
unsigned int expanded_width, unsigned int tex_levels, PC_TexFormat pcfmt) override;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2013-10-29 05:34:26 +00:00
|
|
|
TCacheEntryBase* CreateRenderTargetTexture(unsigned int scaled_tex_w, unsigned int scaled_tex_h) override;
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
|
|
|
|
2013-11-16 22:12:07 +00:00
|
|
|
bool SaveTexture(const std::string filename, u32 textarget, u32 tex, int virtual_width, int virtual_height, unsigned int level);
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2010-10-19 22:24:27 +00:00
|
|
|
}
|