2013-04-18 03:29:41 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2010-06-13 19:50:06 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2011-01-25 16:43:08 +00:00
|
|
|
#include <d3d11.h>
|
2014-02-19 11:14:09 +00:00
|
|
|
#include <map>
|
2011-01-25 16:43:08 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/PixelShaderGen.h"
|
2011-09-08 00:09:44 +00:00
|
|
|
|
2012-08-10 16:57:37 +00:00
|
|
|
enum DSTALPHA_MODE;
|
2010-06-13 19:50:06 +00:00
|
|
|
|
2011-01-31 01:28:32 +00:00
|
|
|
namespace DX11
|
|
|
|
{
|
2011-01-29 20:16:51 +00:00
|
|
|
|
2010-06-13 19:50:06 +00:00
|
|
|
class PixelShaderCache
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static void Init();
|
|
|
|
static void Clear();
|
|
|
|
static void Shutdown();
|
2012-08-10 16:57:37 +00:00
|
|
|
static bool SetShader(DSTALPHA_MODE dstAlphaMode, u32 components); // TODO: Should be renamed to LoadShader
|
2013-03-26 22:35:14 +00:00
|
|
|
static bool InsertByteCode(const PixelShaderUid &uid, const void* bytecode, unsigned int bytecodelen);
|
2010-06-13 19:50:06 +00:00
|
|
|
|
2011-06-11 19:37:21 +00:00
|
|
|
static ID3D11PixelShader* GetActiveShader() { return last_entry->shader; }
|
|
|
|
static ID3D11Buffer* &GetConstantBuffer();
|
2011-01-24 11:57:17 +00:00
|
|
|
|
2010-11-27 11:11:05 +00:00
|
|
|
static ID3D11PixelShader* GetColorMatrixProgram(bool multisampled);
|
|
|
|
static ID3D11PixelShader* GetColorCopyProgram(bool multisampled);
|
|
|
|
static ID3D11PixelShader* GetDepthMatrixProgram(bool multisampled);
|
2010-06-13 19:50:06 +00:00
|
|
|
static ID3D11PixelShader* GetClearProgram();
|
2014-11-29 20:55:14 +00:00
|
|
|
static ID3D11PixelShader* GetAnaglyphProgram();
|
2011-04-30 14:08:58 +00:00
|
|
|
static ID3D11PixelShader* ReinterpRGBA6ToRGB8(bool multisampled);
|
|
|
|
static ID3D11PixelShader* ReinterpRGB8ToRGBA6(bool multisampled);
|
2010-06-13 19:50:06 +00:00
|
|
|
|
2010-11-27 11:11:05 +00:00
|
|
|
static void InvalidateMSAAShaders();
|
|
|
|
|
2010-06-13 19:50:06 +00:00
|
|
|
private:
|
|
|
|
struct PSCacheEntry
|
|
|
|
{
|
2011-06-11 19:37:21 +00:00
|
|
|
ID3D11PixelShader* shader;
|
2010-06-13 19:50:06 +00:00
|
|
|
|
2011-09-08 22:32:04 +00:00
|
|
|
std::string code;
|
|
|
|
|
2014-03-09 20:14:26 +00:00
|
|
|
PSCacheEntry() : shader(nullptr) {}
|
2011-06-11 19:37:21 +00:00
|
|
|
void Destroy() { SAFE_RELEASE(shader); }
|
2010-06-13 19:50:06 +00:00
|
|
|
};
|
|
|
|
|
2013-03-26 22:35:14 +00:00
|
|
|
typedef std::map<PixelShaderUid, PSCacheEntry> PSCache;
|
2010-06-13 19:50:06 +00:00
|
|
|
|
|
|
|
static PSCache PixelShaders;
|
|
|
|
static const PSCacheEntry* last_entry;
|
2013-03-26 22:35:14 +00:00
|
|
|
static PixelShaderUid last_uid;
|
2013-04-29 19:00:39 +00:00
|
|
|
|
|
|
|
static UidChecker<PixelShaderUid,PixelShaderCode> pixel_uid_checker;
|
2010-06-13 19:50:06 +00:00
|
|
|
};
|
2011-01-29 20:16:51 +00:00
|
|
|
|
2011-01-31 01:28:32 +00:00
|
|
|
} // namespace DX11
|