2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2010 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
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Core/HW/Memmap.h"
|
|
|
|
#include "VideoBackends/D3D/D3DBase.h"
|
2015-01-26 23:33:23 +00:00
|
|
|
#include "VideoBackends/D3D/D3DShader.h"
|
2014-10-29 00:19:09 +00:00
|
|
|
#include "VideoBackends/D3D/D3DState.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoBackends/D3D/D3DUtil.h"
|
|
|
|
#include "VideoBackends/D3D/FramebufferManager.h"
|
2014-11-29 20:31:30 +00:00
|
|
|
#include "VideoBackends/D3D/GeometryShaderCache.h"
|
2014-10-29 00:19:09 +00:00
|
|
|
#include "VideoBackends/D3D/PixelShaderCache.h"
|
2014-10-29 08:52:08 +00:00
|
|
|
#include "VideoBackends/D3D/PSTextureEncoder.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoBackends/D3D/TextureCache.h"
|
|
|
|
#include "VideoBackends/D3D/TextureEncoder.h"
|
2014-02-19 11:14:09 +00:00
|
|
|
#include "VideoBackends/D3D/VertexShaderCache.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/ImageWrite.h"
|
2015-01-26 23:33:23 +00:00
|
|
|
#include "VideoCommon/LookUpTables.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/RenderBase.h"
|
|
|
|
#include "VideoCommon/VideoConfig.h"
|
2010-06-13 19:50:06 +00:00
|
|
|
|
2010-10-19 22:24:27 +00:00
|
|
|
namespace DX11
|
|
|
|
{
|
|
|
|
|
2014-03-09 20:14:26 +00:00
|
|
|
static TextureEncoder* g_encoder = nullptr;
|
2013-11-24 03:43:54 +00:00
|
|
|
const size_t MAX_COPY_BUFFERS = 32;
|
2011-06-11 19:37:21 +00:00
|
|
|
ID3D11Buffer* efbcopycbuf[MAX_COPY_BUFFERS] = { 0 };
|
|
|
|
|
|
|
|
TextureCache::TCacheEntry::~TCacheEntry()
|
|
|
|
{
|
|
|
|
texture->Release();
|
|
|
|
}
|
2010-06-13 19:50:06 +00:00
|
|
|
|
2010-10-19 22:24:27 +00:00
|
|
|
void TextureCache::TCacheEntry::Bind(unsigned int stage)
|
|
|
|
{
|
2014-12-06 13:54:06 +00:00
|
|
|
D3D::stateman->SetTexture(stage, texture->GetSRV());
|
2010-10-19 22:24:27 +00:00
|
|
|
}
|
|
|
|
|
2014-03-01 00:33:19 +00:00
|
|
|
bool TextureCache::TCacheEntry::Save(const std::string& filename, unsigned int level)
|
2010-10-19 22:24:27 +00:00
|
|
|
{
|
2012-05-12 11:50:03 +00:00
|
|
|
// TODO: Somehow implement this (D3DX11 doesn't support dumping individual LODs)
|
|
|
|
static bool warn_once = true;
|
|
|
|
if (level && warn_once)
|
|
|
|
{
|
|
|
|
WARN_LOG(VIDEO, "Dumping individual LOD not supported by D3D11 backend!");
|
|
|
|
warn_once = false;
|
|
|
|
return false;
|
|
|
|
}
|
2013-11-13 11:48:02 +00:00
|
|
|
|
2014-03-09 20:14:26 +00:00
|
|
|
ID3D11Texture2D* pNewTexture = nullptr;
|
2013-11-13 11:48:02 +00:00
|
|
|
ID3D11Texture2D* pSurface = texture->GetTex();
|
|
|
|
D3D11_TEXTURE2D_DESC desc;
|
|
|
|
pSurface->GetDesc(&desc);
|
|
|
|
|
|
|
|
desc.BindFlags = 0;
|
|
|
|
desc.CPUAccessFlags = D3D11_CPU_ACCESS_READ | D3D11_CPU_ACCESS_WRITE;
|
|
|
|
desc.Usage = D3D11_USAGE_STAGING;
|
|
|
|
|
2014-03-09 20:14:26 +00:00
|
|
|
HRESULT hr = D3D::device->CreateTexture2D(&desc, nullptr, &pNewTexture);
|
2013-11-13 11:48:02 +00:00
|
|
|
|
2013-11-15 00:00:38 +00:00
|
|
|
bool saved_png = false;
|
|
|
|
|
2013-11-13 11:48:02 +00:00
|
|
|
if (SUCCEEDED(hr) && pNewTexture)
|
|
|
|
{
|
|
|
|
D3D::context->CopyResource(pNewTexture, pSurface);
|
|
|
|
|
|
|
|
D3D11_MAPPED_SUBRESOURCE map;
|
2015-03-16 02:28:47 +00:00
|
|
|
hr = D3D::context->Map(pNewTexture, 0, D3D11_MAP_READ_WRITE, 0, &map);
|
2013-11-13 11:48:02 +00:00
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
2013-11-16 22:12:07 +00:00
|
|
|
saved_png = TextureToPng((u8*)map.pData, map.RowPitch, filename, desc.Width, desc.Height);
|
2013-11-13 11:48:02 +00:00
|
|
|
D3D::context->Unmap(pNewTexture, 0);
|
|
|
|
}
|
|
|
|
SAFE_RELEASE(pNewTexture);
|
|
|
|
}
|
|
|
|
|
2013-11-15 00:00:38 +00:00
|
|
|
return saved_png;
|
2010-10-19 22:24:27 +00:00
|
|
|
}
|
2010-06-13 19:50:06 +00:00
|
|
|
|
2015-06-30 01:19:19 +00:00
|
|
|
void TextureCache::TCacheEntry::CopyRectangleFromTexture(
|
|
|
|
const TCacheEntryBase* source,
|
|
|
|
const MathUtil::Rectangle<int> &srcrect,
|
|
|
|
const MathUtil::Rectangle<int> &dstrect)
|
2015-06-13 13:51:58 +00:00
|
|
|
{
|
2015-06-30 01:19:19 +00:00
|
|
|
TCacheEntry* srcentry = (TCacheEntry*)source;
|
|
|
|
if (srcrect.GetWidth() == dstrect.GetWidth()
|
|
|
|
&& srcrect.GetHeight() == dstrect.GetHeight())
|
|
|
|
{
|
|
|
|
const D3D11_BOX *psrcbox = nullptr;
|
|
|
|
D3D11_BOX srcbox;
|
|
|
|
if (srcrect.left != 0 || srcrect.top != 0)
|
|
|
|
{
|
|
|
|
srcbox.left = srcrect.left;
|
|
|
|
srcbox.top = srcrect.top;
|
|
|
|
srcbox.right = srcrect.right;
|
|
|
|
srcbox.bottom = srcrect.bottom;
|
|
|
|
psrcbox = &srcbox;
|
|
|
|
}
|
|
|
|
D3D::context->CopySubresourceRegion(
|
|
|
|
texture->GetTex(),
|
|
|
|
0,
|
|
|
|
dstrect.left,
|
|
|
|
dstrect.top,
|
|
|
|
0,
|
|
|
|
srcentry->texture->GetTex(),
|
|
|
|
0,
|
|
|
|
psrcbox);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (!config.rendertarget)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
g_renderer->ResetAPIState(); // reset any game specific settings
|
|
|
|
|
|
|
|
const D3D11_VIEWPORT vp = CD3D11_VIEWPORT(
|
|
|
|
float(dstrect.left),
|
|
|
|
float(dstrect.top),
|
|
|
|
float(dstrect.GetWidth()),
|
|
|
|
float(dstrect.GetHeight()));
|
|
|
|
|
|
|
|
D3D::context->OMSetRenderTargets(1, &texture->GetRTV(), nullptr);
|
|
|
|
D3D::context->RSSetViewports(1, &vp);
|
|
|
|
D3D::SetLinearCopySampler();
|
|
|
|
D3D11_RECT srcRC;
|
|
|
|
srcRC.left = srcrect.left;
|
|
|
|
srcRC.right = srcrect.right;
|
|
|
|
srcRC.top = srcrect.top;
|
|
|
|
srcRC.bottom = srcrect.bottom;
|
|
|
|
D3D::drawShadedTexQuad(srcentry->texture->GetSRV(), &srcRC,
|
|
|
|
srcentry->config.width, srcentry->config.height,
|
|
|
|
PixelShaderCache::GetColorCopyProgram(false),
|
|
|
|
VertexShaderCache::GetSimpleVertexShader(),
|
|
|
|
VertexShaderCache::GetSimpleInputLayout(), nullptr, 1.0, 0);
|
|
|
|
|
|
|
|
D3D::context->OMSetRenderTargets(1,
|
|
|
|
&FramebufferManager::GetEFBColorTexture()->GetRTV(),
|
|
|
|
FramebufferManager::GetEFBDepthTexture()->GetDSV());
|
|
|
|
|
|
|
|
g_renderer->RestoreAPIState();
|
2015-06-13 13:51:58 +00:00
|
|
|
}
|
|
|
|
|
2010-10-19 22:24:27 +00:00
|
|
|
void TextureCache::TCacheEntry::Load(unsigned int width, unsigned int height,
|
2012-08-10 11:13:51 +00:00
|
|
|
unsigned int expanded_width, unsigned int level)
|
2010-10-19 22:24:27 +00:00
|
|
|
{
|
|
|
|
D3D::ReplaceRGBATexture2D(texture->GetTex(), TextureCache::temp, width, height, expanded_width, level, usage);
|
|
|
|
}
|
2010-06-13 19:50:06 +00:00
|
|
|
|
2015-01-17 09:01:41 +00:00
|
|
|
TextureCache::TCacheEntryBase* TextureCache::CreateTexture(const TCacheEntryConfig& config)
|
2010-06-13 19:50:06 +00:00
|
|
|
{
|
2015-01-17 09:01:41 +00:00
|
|
|
if (config.rendertarget)
|
2010-06-13 19:50:06 +00:00
|
|
|
{
|
2015-01-17 09:01:41 +00:00
|
|
|
return new TCacheEntry(config, D3DTexture2D::Create(config.width, config.height,
|
|
|
|
(D3D11_BIND_FLAG)((int)D3D11_BIND_RENDER_TARGET | (int)D3D11_BIND_SHADER_RESOURCE),
|
|
|
|
D3D11_USAGE_DEFAULT, DXGI_FORMAT_R8G8B8A8_UNORM, 1, config.layers));
|
2010-06-13 19:50:06 +00:00
|
|
|
}
|
2015-01-17 09:01:41 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
D3D11_USAGE usage = D3D11_USAGE_DEFAULT;
|
|
|
|
D3D11_CPU_ACCESS_FLAG cpu_access = (D3D11_CPU_ACCESS_FLAG)0;
|
2010-10-19 22:24:27 +00:00
|
|
|
|
2015-01-17 09:01:41 +00:00
|
|
|
if (config.levels == 1)
|
|
|
|
{
|
|
|
|
usage = D3D11_USAGE_DYNAMIC;
|
|
|
|
cpu_access = D3D11_CPU_ACCESS_WRITE;
|
|
|
|
}
|
2010-10-19 22:24:27 +00:00
|
|
|
|
2015-01-17 09:01:41 +00:00
|
|
|
const D3D11_TEXTURE2D_DESC texdesc = CD3D11_TEXTURE2D_DESC(DXGI_FORMAT_R8G8B8A8_UNORM,
|
|
|
|
config.width, config.height, 1, config.levels, D3D11_BIND_SHADER_RESOURCE, usage, cpu_access);
|
2010-10-19 22:24:27 +00:00
|
|
|
|
2015-01-17 09:01:41 +00:00
|
|
|
ID3D11Texture2D *pTexture;
|
|
|
|
const HRESULT hr = D3D::device->CreateTexture2D(&texdesc, nullptr, &pTexture);
|
|
|
|
CHECK(SUCCEEDED(hr), "Create texture of the TextureCache");
|
2015-01-11 14:03:41 +00:00
|
|
|
|
2015-01-17 09:01:41 +00:00
|
|
|
TCacheEntry* const entry = new TCacheEntry(config, new D3DTexture2D(pTexture, D3D11_BIND_SHADER_RESOURCE));
|
|
|
|
entry->usage = usage;
|
2010-10-19 22:24:27 +00:00
|
|
|
|
2015-01-17 09:01:41 +00:00
|
|
|
// TODO: better debug names
|
|
|
|
D3D::SetDebugObjectName((ID3D11DeviceChild*)entry->texture->GetTex(), "a texture of the TextureCache");
|
|
|
|
D3D::SetDebugObjectName((ID3D11DeviceChild*)entry->texture->GetSRV(), "shader resource view of a texture of the TextureCache");
|
2011-06-11 19:37:21 +00:00
|
|
|
|
2015-01-17 09:01:41 +00:00
|
|
|
SAFE_RELEASE(pTexture);
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2015-01-17 09:01:41 +00:00
|
|
|
return entry;
|
|
|
|
}
|
2010-06-13 19:50:06 +00:00
|
|
|
}
|
|
|
|
|
2011-02-26 23:41:02 +00:00
|
|
|
void TextureCache::TCacheEntry::FromRenderTarget(u32 dstAddr, unsigned int dstFormat,
|
2014-03-23 20:44:23 +00:00
|
|
|
PEControl::PixelFormat srcFormat, const EFBRectangle& srcRect,
|
2011-02-26 23:41:02 +00:00
|
|
|
bool isIntensity, bool scaleByHalf, unsigned int cbufid,
|
|
|
|
const float *colmat)
|
2010-06-13 19:50:06 +00:00
|
|
|
{
|
2015-01-22 04:37:12 +00:00
|
|
|
g_renderer->ResetAPIState();
|
2011-02-26 23:41:02 +00:00
|
|
|
|
2015-01-22 04:37:12 +00:00
|
|
|
// stretch picture with increased internal resolution
|
|
|
|
const D3D11_VIEWPORT vp = CD3D11_VIEWPORT(0.f, 0.f, (float)config.width, (float)config.height);
|
|
|
|
D3D::context->RSSetViewports(1, &vp);
|
2011-02-26 23:41:02 +00:00
|
|
|
|
2015-01-22 04:37:12 +00:00
|
|
|
// set transformation
|
|
|
|
if (nullptr == efbcopycbuf[cbufid])
|
|
|
|
{
|
|
|
|
const D3D11_BUFFER_DESC cbdesc = CD3D11_BUFFER_DESC(28 * sizeof(float), D3D11_BIND_CONSTANT_BUFFER, D3D11_USAGE_DEFAULT);
|
|
|
|
D3D11_SUBRESOURCE_DATA data;
|
|
|
|
data.pSysMem = colmat;
|
|
|
|
HRESULT hr = D3D::device->CreateBuffer(&cbdesc, &data, &efbcopycbuf[cbufid]);
|
|
|
|
CHECK(SUCCEEDED(hr), "Create efb copy constant buffer %d", cbufid);
|
|
|
|
D3D::SetDebugObjectName((ID3D11DeviceChild*)efbcopycbuf[cbufid], "a constant buffer used in TextureCache::CopyRenderTargetToTexture");
|
|
|
|
}
|
|
|
|
D3D::stateman->SetPixelConstants(efbcopycbuf[cbufid]);
|
2011-02-26 23:41:02 +00:00
|
|
|
|
2015-01-22 04:37:12 +00:00
|
|
|
const TargetRectangle targetSource = g_renderer->ConvertEFBRectangle(srcRect);
|
|
|
|
// TODO: try targetSource.asRECT();
|
|
|
|
const D3D11_RECT sourcerect = CD3D11_RECT(targetSource.left, targetSource.top, targetSource.right, targetSource.bottom);
|
2014-12-12 23:32:08 +00:00
|
|
|
|
2015-01-22 04:37:12 +00:00
|
|
|
// Use linear filtering if (bScaleByHalf), use point filtering otherwise
|
|
|
|
if (scaleByHalf)
|
|
|
|
D3D::SetLinearCopySampler();
|
|
|
|
else
|
|
|
|
D3D::SetPointCopySampler();
|
2011-02-26 23:41:02 +00:00
|
|
|
|
2015-01-28 02:25:35 +00:00
|
|
|
// Make sure we don't draw with the texture set as both a source and target.
|
|
|
|
// (This can happen because we don't unbind textures when we free them.)
|
|
|
|
D3D::stateman->UnsetTexture(texture->GetSRV());
|
|
|
|
|
2015-01-22 04:37:12 +00:00
|
|
|
D3D::context->OMSetRenderTargets(1, &texture->GetRTV(), nullptr);
|
2011-02-26 23:41:02 +00:00
|
|
|
|
2015-01-22 04:37:12 +00:00
|
|
|
// Create texture copy
|
|
|
|
D3D::drawShadedTexQuad(
|
|
|
|
(srcFormat == PEControl::Z24) ? FramebufferManager::GetEFBDepthTexture()->GetSRV() : FramebufferManager::GetEFBColorTexture()->GetSRV(),
|
|
|
|
&sourcerect, Renderer::GetTargetWidth(), Renderer::GetTargetHeight(),
|
|
|
|
(srcFormat == PEControl::Z24) ? PixelShaderCache::GetDepthMatrixProgram(true) : PixelShaderCache::GetColorMatrixProgram(true),
|
|
|
|
VertexShaderCache::GetSimpleVertexShader(), VertexShaderCache::GetSimpleInputLayout(), GeometryShaderCache::GetCopyGeometryShader());
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2015-01-22 04:37:12 +00:00
|
|
|
D3D::context->OMSetRenderTargets(1, &FramebufferManager::GetEFBColorTexture()->GetRTV(), FramebufferManager::GetEFBDepthTexture()->GetDSV());
|
2014-12-12 23:32:08 +00:00
|
|
|
|
2015-01-22 04:37:12 +00:00
|
|
|
g_renderer->RestoreAPIState();
|
2010-11-27 11:11:05 +00:00
|
|
|
|
2015-02-21 11:08:47 +00:00
|
|
|
if (!g_ActiveConfig.bSkipEFBCopyToRam)
|
2011-02-26 23:41:02 +00:00
|
|
|
{
|
|
|
|
u8* dst = Memory::GetPointer(dstAddr);
|
2011-12-30 00:00:34 +00:00
|
|
|
size_t encoded_size = g_encoder->Encode(dst, dstFormat, srcFormat, srcRect, isIntensity, scaleByHalf);
|
|
|
|
|
2015-01-10 12:47:52 +00:00
|
|
|
size_in_bytes = (u32)encoded_size;
|
|
|
|
|
2015-01-26 23:33:23 +00:00
|
|
|
TextureCache::MakeRangeDynamic(dstAddr, (u32)encoded_size);
|
2012-06-20 14:43:13 +00:00
|
|
|
|
2015-03-16 02:28:47 +00:00
|
|
|
this->hash = GetHash64(dst, (int)encoded_size, g_ActiveConfig.iSafeTextureCache_ColorSamples);
|
2011-02-26 23:41:02 +00:00
|
|
|
}
|
2010-10-19 22:24:27 +00:00
|
|
|
}
|
|
|
|
|
2015-01-26 23:33:23 +00:00
|
|
|
const char palette_shader[] =
|
|
|
|
R"HLSL(
|
|
|
|
sampler samp0 : register(s0);
|
|
|
|
Texture2DArray Tex0 : register(t0);
|
|
|
|
Buffer<uint> Tex1 : register(t1);
|
|
|
|
uniform float Multiply;
|
|
|
|
|
|
|
|
uint Convert3To8(uint v)
|
|
|
|
{
|
|
|
|
// Swizzle bits: 00000123 -> 12312312
|
|
|
|
return (v << 5) | (v << 2) | (v >> 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint Convert4To8(uint v)
|
|
|
|
{
|
|
|
|
// Swizzle bits: 00001234 -> 12341234
|
|
|
|
return (v << 4) | v;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint Convert5To8(uint v)
|
|
|
|
{
|
|
|
|
// Swizzle bits: 00012345 -> 12345123
|
|
|
|
return (v << 3) | (v >> 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint Convert6To8(uint v)
|
|
|
|
{
|
|
|
|
// Swizzle bits: 00123456 -> 12345612
|
|
|
|
return (v << 2) | (v >> 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
float4 DecodePixel_RGB5A3(uint val)
|
|
|
|
{
|
|
|
|
int r,g,b,a;
|
|
|
|
if ((val&0x8000))
|
|
|
|
{
|
|
|
|
r=Convert5To8((val>>10) & 0x1f);
|
|
|
|
g=Convert5To8((val>>5 ) & 0x1f);
|
|
|
|
b=Convert5To8((val ) & 0x1f);
|
|
|
|
a=0xFF;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
a=Convert3To8((val>>12) & 0x7);
|
|
|
|
r=Convert4To8((val>>8 ) & 0xf);
|
|
|
|
g=Convert4To8((val>>4 ) & 0xf);
|
|
|
|
b=Convert4To8((val ) & 0xf);
|
|
|
|
}
|
|
|
|
return float4(r, g, b, a) / 255;
|
|
|
|
}
|
|
|
|
|
|
|
|
float4 DecodePixel_RGB565(uint val)
|
|
|
|
{
|
|
|
|
int r, g, b, a;
|
|
|
|
r = Convert5To8((val >> 11) & 0x1f);
|
|
|
|
g = Convert6To8((val >> 5) & 0x3f);
|
|
|
|
b = Convert5To8((val) & 0x1f);
|
|
|
|
a = 0xFF;
|
|
|
|
return float4(r, g, b, a) / 255;
|
|
|
|
}
|
|
|
|
|
|
|
|
float4 DecodePixel_IA8(uint val)
|
|
|
|
{
|
|
|
|
int i = val & 0xFF;
|
|
|
|
int a = val >> 8;
|
|
|
|
return float4(i, i, i, a) / 255;
|
|
|
|
}
|
|
|
|
|
|
|
|
void main(
|
|
|
|
out float4 ocol0 : SV_Target,
|
|
|
|
in float4 pos : SV_Position,
|
|
|
|
in float3 uv0 : TEXCOORD0)
|
|
|
|
{
|
|
|
|
uint src = round(Tex0.Sample(samp0,uv0) * Multiply).r;
|
|
|
|
src = Tex1.Load(src);
|
|
|
|
src = ((src << 8) & 0xFF00) | (src >> 8);
|
|
|
|
ocol0 = DECODE(src);
|
|
|
|
}
|
|
|
|
)HLSL";
|
|
|
|
|
|
|
|
void TextureCache::ConvertTexture(TCacheEntryBase* entry, TCacheEntryBase* unconverted, void* palette, TlutFormat format)
|
|
|
|
{
|
|
|
|
g_renderer->ResetAPIState();
|
|
|
|
|
|
|
|
// stretch picture with increased internal resolution
|
|
|
|
const D3D11_VIEWPORT vp = CD3D11_VIEWPORT(0.f, 0.f, (float)unconverted->config.width, (float)unconverted->config.height);
|
|
|
|
D3D::context->RSSetViewports(1, &vp);
|
|
|
|
|
|
|
|
D3D11_BOX box{ 0, 0, 0, 512, 1, 1 };
|
|
|
|
D3D::context->UpdateSubresource(palette_buf, 0, &box, palette, 0, 0);
|
|
|
|
|
|
|
|
D3D::stateman->SetTexture(1, palette_buf_srv);
|
|
|
|
|
|
|
|
// TODO: Add support for C14X2 format. (Different multiplier, more palette entries.)
|
|
|
|
float params[4] = { unconverted->format == 0 ? 15.f : 255.f };
|
|
|
|
D3D::context->UpdateSubresource(palette_uniform, 0, nullptr, ¶ms, 0, 0);
|
|
|
|
D3D::stateman->SetPixelConstants(palette_uniform);
|
|
|
|
|
|
|
|
const D3D11_RECT sourcerect = CD3D11_RECT(0, 0, unconverted->config.width, unconverted->config.height);
|
|
|
|
|
|
|
|
D3D::SetPointCopySampler();
|
|
|
|
|
|
|
|
// Make sure we don't draw with the texture set as both a source and target.
|
|
|
|
// (This can happen because we don't unbind textures when we free them.)
|
|
|
|
D3D::stateman->UnsetTexture(static_cast<TCacheEntry*>(entry)->texture->GetSRV());
|
|
|
|
|
|
|
|
D3D::context->OMSetRenderTargets(1, &static_cast<TCacheEntry*>(entry)->texture->GetRTV(), nullptr);
|
|
|
|
|
|
|
|
// Create texture copy
|
|
|
|
D3D::drawShadedTexQuad(
|
|
|
|
static_cast<TCacheEntry*>(unconverted)->texture->GetSRV(),
|
|
|
|
&sourcerect, unconverted->config.width, unconverted->config.height,
|
|
|
|
palette_pixel_shader[format],
|
|
|
|
VertexShaderCache::GetSimpleVertexShader(), VertexShaderCache::GetSimpleInputLayout(),
|
|
|
|
GeometryShaderCache::GetCopyGeometryShader());
|
|
|
|
|
|
|
|
D3D::context->OMSetRenderTargets(1, &FramebufferManager::GetEFBColorTexture()->GetRTV(), FramebufferManager::GetEFBDepthTexture()->GetDSV());
|
|
|
|
|
|
|
|
g_renderer->RestoreAPIState();
|
|
|
|
}
|
|
|
|
|
|
|
|
ID3D11PixelShader *GetConvertShader(const char* Type)
|
|
|
|
{
|
|
|
|
std::string shader = "#define DECODE DecodePixel_";
|
|
|
|
shader.append(Type);
|
|
|
|
shader.append("\n");
|
|
|
|
shader.append(palette_shader);
|
|
|
|
return D3D::CompileAndCreatePixelShader(shader);
|
|
|
|
}
|
|
|
|
|
2010-10-19 22:24:27 +00:00
|
|
|
TextureCache::TextureCache()
|
|
|
|
{
|
2011-02-26 23:41:02 +00:00
|
|
|
// FIXME: Is it safe here?
|
2011-06-11 19:37:21 +00:00
|
|
|
g_encoder = new PSTextureEncoder;
|
|
|
|
g_encoder->Init();
|
2015-01-26 23:33:23 +00:00
|
|
|
|
|
|
|
palette_buf = nullptr;
|
|
|
|
palette_buf_srv = nullptr;
|
|
|
|
palette_uniform = nullptr;
|
|
|
|
palette_pixel_shader[GX_TL_IA8] = GetConvertShader("IA8");
|
|
|
|
palette_pixel_shader[GX_TL_RGB565] = GetConvertShader("RGB565");
|
|
|
|
palette_pixel_shader[GX_TL_RGB5A3] = GetConvertShader("RGB5A3");
|
|
|
|
auto lutBd = CD3D11_BUFFER_DESC(sizeof(u16) * 256, D3D11_BIND_SHADER_RESOURCE);
|
|
|
|
HRESULT hr = D3D::device->CreateBuffer(&lutBd, nullptr, &palette_buf);
|
|
|
|
CHECK(SUCCEEDED(hr), "create palette decoder lut buffer");
|
|
|
|
D3D::SetDebugObjectName(palette_buf, "texture decoder lut buffer");
|
|
|
|
// TODO: C14X2 format.
|
|
|
|
auto outlutUavDesc = CD3D11_SHADER_RESOURCE_VIEW_DESC(palette_buf, DXGI_FORMAT_R16_UINT, 0, 256, 0);
|
|
|
|
hr = D3D::device->CreateShaderResourceView(palette_buf, &outlutUavDesc, &palette_buf_srv);
|
|
|
|
CHECK(SUCCEEDED(hr), "create palette decoder lut srv");
|
|
|
|
D3D::SetDebugObjectName(palette_buf_srv, "texture decoder lut srv");
|
|
|
|
const D3D11_BUFFER_DESC cbdesc = CD3D11_BUFFER_DESC(16, D3D11_BIND_CONSTANT_BUFFER, D3D11_USAGE_DEFAULT);
|
|
|
|
hr = D3D::device->CreateBuffer(&cbdesc, nullptr, &palette_uniform);
|
|
|
|
CHECK(SUCCEEDED(hr), "Create palette decoder constant buffer");
|
|
|
|
D3D::SetDebugObjectName((ID3D11DeviceChild*)palette_uniform, "a constant buffer used in TextureCache::CopyRenderTargetToTexture");
|
2010-06-13 19:50:06 +00:00
|
|
|
}
|
|
|
|
|
2010-10-19 22:24:27 +00:00
|
|
|
TextureCache::~TextureCache()
|
2010-06-13 19:50:06 +00:00
|
|
|
{
|
2011-06-11 19:37:21 +00:00
|
|
|
for (unsigned int k = 0; k < MAX_COPY_BUFFERS; ++k)
|
|
|
|
SAFE_RELEASE(efbcopycbuf[k]);
|
|
|
|
|
|
|
|
g_encoder->Shutdown();
|
|
|
|
delete g_encoder;
|
2014-03-09 20:14:26 +00:00
|
|
|
g_encoder = nullptr;
|
2015-01-26 23:33:23 +00:00
|
|
|
|
|
|
|
SAFE_RELEASE(palette_buf);
|
|
|
|
SAFE_RELEASE(palette_buf_srv);
|
|
|
|
SAFE_RELEASE(palette_uniform);
|
|
|
|
for (ID3D11PixelShader*& shader : palette_pixel_shader)
|
|
|
|
SAFE_RELEASE(shader);
|
2010-06-13 19:50:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|