2015-05-24 07:55:12 +03:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-18 02:08:10 +03:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 06:29:41 +03:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 06:46:09 +02:00
|
|
|
|
2014-02-10 20:54:46 +02:00
|
|
|
#pragma once
|
2008-12-08 06:46:09 +02:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
2014-02-17 12:18:15 +02:00
|
|
|
#include "VideoBackends/OGL/GLUtil.h"
|
|
|
|
#include "VideoCommon/BPStructs.h"
|
|
|
|
#include "VideoCommon/TextureCacheBase.h"
|
|
|
|
#include "VideoCommon/VideoCommon.h"
|
2010-10-20 01:24:27 +03:00
|
|
|
|
|
|
|
namespace OGL
|
|
|
|
{
|
|
|
|
|
|
|
|
class TextureCache : public ::TextureCache
|
2008-12-08 06:46:09 +02:00
|
|
|
{
|
|
|
|
public:
|
2012-12-08 01:54:38 +02:00
|
|
|
TextureCache();
|
2010-10-20 01:24:27 +03:00
|
|
|
static void DisableStage(unsigned int stage);
|
2013-01-19 01:39:31 +02:00
|
|
|
static void SetStage();
|
2010-10-20 01:24:27 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
struct TCacheEntry : TCacheEntryBase
|
2011-02-06 17:02:26 +02:00
|
|
|
{
|
|
|
|
GLuint texture;
|
2013-04-08 15:36:58 +03:00
|
|
|
GLuint framebuffer;
|
2010-10-20 01:24:27 +03:00
|
|
|
|
|
|
|
//TexMode0 mode; // current filter and clamp modes that texture is set to
|
|
|
|
//TexMode1 mode1; // current filter and clamp modes that texture is set to
|
|
|
|
|
2015-01-11 16:03:41 +02:00
|
|
|
TCacheEntry(const TCacheEntryConfig& config);
|
2010-10-20 01:24:27 +03:00
|
|
|
~TCacheEntry();
|
|
|
|
|
2015-06-30 04:19:19 +03:00
|
|
|
void CopyRectangleFromTexture(
|
|
|
|
const TCacheEntryBase* source,
|
|
|
|
const MathUtil::Rectangle<int> &srcrect,
|
|
|
|
const MathUtil::Rectangle<int> &dstrect) override;
|
2015-06-13 16:51:58 +03:00
|
|
|
|
2010-10-20 01:24:27 +03:00
|
|
|
void Load(unsigned int width, unsigned int height,
|
2013-10-29 07:34:26 +02:00
|
|
|
unsigned int expanded_width, unsigned int level) override;
|
2010-10-20 01:24:27 +03:00
|
|
|
|
2015-09-04 17:45:29 +03:00
|
|
|
void FromRenderTarget(u8 *dst, unsigned int dstFormat, u32 dstStride,
|
2014-03-23 22:44:23 +02:00
|
|
|
PEControl::PixelFormat srcFormat, const EFBRectangle& srcRect,
|
2011-02-27 01:41:02 +02:00
|
|
|
bool isIntensity, bool scaleByHalf, unsigned int cbufid,
|
2013-10-29 07:34:26 +02:00
|
|
|
const float *colmat) override;
|
2010-10-20 01:24:27 +03:00
|
|
|
|
2013-10-29 07:34:26 +02:00
|
|
|
void Bind(unsigned int stage) override;
|
2014-03-08 02:54:44 +02:00
|
|
|
bool Save(const std::string& filename, unsigned int level) override;
|
2011-02-06 17:02:26 +02:00
|
|
|
};
|
2008-12-08 06:46:09 +02:00
|
|
|
|
2010-10-20 01:24:27 +03:00
|
|
|
~TextureCache();
|
2008-12-08 06:46:09 +02:00
|
|
|
|
2015-01-17 11:01:41 +02:00
|
|
|
TCacheEntryBase* CreateTexture(const TCacheEntryConfig& config) override;
|
2015-01-27 01:33:23 +02:00
|
|
|
void ConvertTexture(TCacheEntryBase* entry, TCacheEntryBase* unconverted, void* palette, TlutFormat format) override;
|
2014-11-04 01:53:14 +02:00
|
|
|
|
|
|
|
void CompileShaders() override;
|
|
|
|
void DeleteShaders() override;
|
2008-12-08 06:46:09 +02:00
|
|
|
};
|
|
|
|
|
2014-02-24 00:03:39 +02:00
|
|
|
bool SaveTexture(const std::string& filename, u32 textarget, u32 tex, int virtual_width, int virtual_height, unsigned int level);
|
2008-12-08 06:46:09 +02:00
|
|
|
|
2010-10-20 01:24:27 +03:00
|
|
|
}
|