2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:29:41 +00:00
|
|
|
// 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>
|
|
|
|
|
2015-09-18 16:40:00 +00:00
|
|
|
#include "Common/GL/GLUtil.h"
|
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/BPStructs.h"
|
|
|
|
#include "VideoCommon/TextureCacheBase.h"
|
|
|
|
#include "VideoCommon/VideoCommon.h"
|
2010-10-19 22:24:27 +00:00
|
|
|
|
|
|
|
namespace OGL
|
|
|
|
{
|
2015-11-06 00:28:05 +00:00
|
|
|
class TextureCache : public TextureCacheBase
|
2008-12-08 04:46:09 +00:00
|
|
|
{
|
|
|
|
public:
|
2016-06-24 08:43:46 +00:00
|
|
|
TextureCache();
|
|
|
|
~TextureCache();
|
2015-12-21 02:49:49 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
static void DisableStage(unsigned int stage);
|
|
|
|
static void SetStage();
|
2010-10-19 22:24:27 +00:00
|
|
|
|
|
|
|
private:
|
2016-06-24 08:43:46 +00:00
|
|
|
struct TCacheEntry : TCacheEntryBase
|
|
|
|
{
|
|
|
|
GLuint texture;
|
|
|
|
GLuint framebuffer;
|
2010-10-19 22:24:27 +00:00
|
|
|
|
2016-06-24 08:43:46 +00: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
|
2010-10-19 22:24:27 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
TCacheEntry(const TCacheEntryConfig& config);
|
|
|
|
~TCacheEntry();
|
2010-10-19 22:24:27 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void CopyRectangleFromTexture(const TCacheEntryBase* source,
|
|
|
|
const MathUtil::Rectangle<int>& srcrect,
|
|
|
|
const MathUtil::Rectangle<int>& dstrect) override;
|
2015-06-13 13:51:58 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void Load(unsigned int width, unsigned int height, unsigned int expanded_width,
|
|
|
|
unsigned int level) override;
|
2010-10-19 22:24:27 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void FromRenderTarget(u8* dst, PEControl::PixelFormat srcFormat, const EFBRectangle& srcRect,
|
|
|
|
bool scaleByHalf, unsigned int cbufid, const float* colmat) override;
|
2010-10-19 22:24:27 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void Bind(unsigned int stage) override;
|
|
|
|
bool Save(const std::string& filename, unsigned int level) override;
|
|
|
|
};
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
TCacheEntryBase* CreateTexture(const TCacheEntryConfig& config) override;
|
|
|
|
void ConvertTexture(TCacheEntryBase* entry, TCacheEntryBase* unconverted, void* palette,
|
|
|
|
TlutFormat format) override;
|
2014-11-03 23:53:14 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void CopyEFB(u8* dst, u32 format, u32 native_width, u32 bytes_per_row, u32 num_blocks_y,
|
|
|
|
u32 memory_stride, PEControl::PixelFormat srcFormat, const EFBRectangle& srcRect,
|
|
|
|
bool isIntensity, bool scaleByHalf) override;
|
2015-10-29 16:48:35 +00:00
|
|
|
|
2016-08-13 12:56:01 +00:00
|
|
|
bool CompileShaders() override;
|
2016-06-24 08:43:46 +00:00
|
|
|
void DeleteShaders() override;
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
bool SaveTexture(const std::string& filename, u32 textarget, u32 tex, int virtual_width,
|
|
|
|
int virtual_height, unsigned int level);
|
2010-10-19 22:24:27 +00:00
|
|
|
}
|