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.
|
2010-06-13 19:50:06 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoBackends/D3D/D3DTexture.h"
|
|
|
|
#include "VideoCommon/TextureCacheBase.h"
|
2010-10-19 22:24:27 +00:00
|
|
|
|
|
|
|
namespace DX11
|
|
|
|
{
|
|
|
|
|
2015-11-06 00:28:05 +00:00
|
|
|
class TextureCache : public TextureCacheBase
|
2010-06-13 19:50:06 +00:00
|
|
|
{
|
|
|
|
public:
|
2010-10-19 22:24:27 +00:00
|
|
|
TextureCache();
|
|
|
|
~TextureCache();
|
|
|
|
|
|
|
|
private:
|
|
|
|
struct TCacheEntry : TCacheEntryBase
|
2010-06-13 19:50:06 +00:00
|
|
|
{
|
2011-06-11 19:37:21 +00:00
|
|
|
D3DTexture2D *const texture;
|
2010-06-13 19:50:06 +00:00
|
|
|
|
2010-10-19 22:24:27 +00:00
|
|
|
D3D11_USAGE usage;
|
2010-06-13 19:50:06 +00:00
|
|
|
|
2015-01-11 14:03:41 +00:00
|
|
|
TCacheEntry(const TCacheEntryConfig& config, D3DTexture2D *_tex) : TCacheEntryBase(config), texture(_tex) {}
|
2011-06-11 19:37:21 +00:00
|
|
|
~TCacheEntry();
|
2010-06-13 19:50:06 +00:00
|
|
|
|
2015-06-30 01:19:19 +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
|
|
|
|
2010-10-19 22:24:27 +00:00
|
|
|
void Load(unsigned int width, unsigned int height,
|
2014-03-11 05:55:00 +00:00
|
|
|
unsigned int expanded_width, unsigned int levels) override;
|
2010-10-19 22:24:27 +00:00
|
|
|
|
2015-10-29 17:08:04 +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
|
|
|
|
2014-03-11 05:55:00 +00:00
|
|
|
void Bind(unsigned int stage) override;
|
|
|
|
bool Save(const std::string& filename, unsigned int level) override;
|
2010-10-19 22:24:27 +00:00
|
|
|
};
|
|
|
|
|
2015-01-17 09:01:41 +00:00
|
|
|
TCacheEntryBase* CreateTexture(const TCacheEntryConfig& config) override;
|
2010-10-19 22:24:27 +00:00
|
|
|
|
2011-06-11 19:37:21 +00:00
|
|
|
u64 EncodeToRamFromTexture(u32 address, void* source_texture, u32 SourceW, u32 SourceH, bool bFromZBuffer, bool bIsIntensityFmt, u32 copyfmt, int bScaleByHalf, const EFBRectangle& source) {return 0;};
|
2014-11-03 23:53:14 +00:00
|
|
|
|
2015-01-26 23:33:23 +00:00
|
|
|
void ConvertTexture(TCacheEntryBase* entry, TCacheEntryBase* unconverted, void* palette, TlutFormat format) override;
|
|
|
|
|
2015-10-29 16:48:35 +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;
|
|
|
|
|
2014-11-03 23:53:14 +00:00
|
|
|
void CompileShaders() override { }
|
|
|
|
void DeleteShaders() override { }
|
2015-01-26 23:33:23 +00:00
|
|
|
|
|
|
|
ID3D11Buffer* palette_buf;
|
|
|
|
ID3D11ShaderResourceView* palette_buf_srv;
|
|
|
|
ID3D11Buffer* palette_uniform;
|
|
|
|
ID3D11PixelShader* palette_pixel_shader[3];
|
2010-06-13 19:50:06 +00:00
|
|
|
};
|
2010-10-19 22:24:27 +00:00
|
|
|
|
|
|
|
}
|