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
|
|
|
|
|
2017-12-05 17:01:04 +00:00
|
|
|
#include <map>
|
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoBackends/D3D/D3DTexture.h"
|
|
|
|
#include "VideoCommon/TextureCacheBase.h"
|
2017-12-05 17:01:04 +00:00
|
|
|
#include "VideoCommon/TextureConverterShaderGen.h"
|
2010-10-19 22:24:27 +00:00
|
|
|
|
2017-04-23 04:44:34 +00:00
|
|
|
class AbstractTexture;
|
|
|
|
struct TextureConfig;
|
|
|
|
|
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:
|
2016-06-24 08:43:46 +00:00
|
|
|
TextureCache();
|
|
|
|
~TextureCache();
|
2010-10-19 22:24:27 +00:00
|
|
|
|
|
|
|
private:
|
2017-07-30 19:45:55 +00:00
|
|
|
void ConvertTexture(TCacheEntry* destination, TCacheEntry* source, const void* palette,
|
|
|
|
TLUTFormat format) override;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2018-11-02 14:17:00 +00:00
|
|
|
void CopyEFB(AbstractStagingTexture* dst, const EFBCopyParams& params, u32 native_width,
|
|
|
|
u32 bytes_per_row, u32 num_blocks_y, u32 memory_stride, const EFBRectangle& src_rect,
|
2018-04-29 08:52:30 +00:00
|
|
|
bool scale_by_half, float y_scale, float gamma, bool clamp_top, bool clamp_bottom,
|
|
|
|
const CopyFilterCoefficientArray& filter_coefficients) override;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-04-23 04:44:34 +00:00
|
|
|
void CopyEFBToCacheEntry(TCacheEntry* entry, bool is_depth_copy, const EFBRectangle& src_rect,
|
2018-04-29 08:52:30 +00:00
|
|
|
bool scale_by_half, EFBCopyFormat dst_format, bool is_intensity,
|
|
|
|
float gamma, bool clamp_top, bool clamp_bottom,
|
|
|
|
const CopyFilterCoefficientArray& filter_coefficients) override;
|
2017-04-23 04:44:34 +00:00
|
|
|
|
2016-08-13 12:56:01 +00:00
|
|
|
bool CompileShaders() override { return true; }
|
2016-06-24 08:43:46 +00:00
|
|
|
void DeleteShaders() override {}
|
2017-12-05 17:01:04 +00:00
|
|
|
ID3D11PixelShader* GetEFBToTexPixelShader(const TextureConversionShaderGen::TCShaderUid& uid);
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
ID3D11Buffer* palette_buf;
|
|
|
|
ID3D11ShaderResourceView* palette_buf_srv;
|
2018-04-29 08:52:30 +00:00
|
|
|
ID3D11Buffer* uniform_buffer;
|
2016-06-24 08:43:46 +00:00
|
|
|
ID3D11PixelShader* palette_pixel_shader[3];
|
2017-12-05 17:01:04 +00:00
|
|
|
|
|
|
|
std::map<TextureConversionShaderGen::TCShaderUid, ID3D11PixelShader*> m_efb_to_tex_pixel_shaders;
|
2010-06-13 19:50:06 +00:00
|
|
|
};
|
2010-10-19 22:24:27 +00:00
|
|
|
}
|