2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 21:29:41 -06:00
|
|
|
// Refer to the license.txt file included.
|
2010-06-13 13:50:06 -06:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2010-06-13 13:50:06 -06:00
|
|
|
|
2014-02-17 03:18:15 -07:00
|
|
|
#include <map>
|
2010-06-13 13:50:06 -06:00
|
|
|
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "VideoBackends/D3D/D3DBase.h"
|
|
|
|
#include "VideoBackends/D3D/D3DBlob.h"
|
2011-01-25 09:43:08 -07:00
|
|
|
|
2017-07-19 23:25:31 -06:00
|
|
|
#include "VideoCommon/AsyncShaderCompiler.h"
|
|
|
|
#include "VideoCommon/UberShaderVertex.h"
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "VideoCommon/VertexShaderGen.h"
|
2011-01-25 09:43:08 -07:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
namespace DX11
|
|
|
|
{
|
2017-07-19 23:25:31 -06:00
|
|
|
class D3DVertexFormat;
|
|
|
|
|
2010-06-13 13:50:06 -06:00
|
|
|
class VertexShaderCache
|
|
|
|
{
|
|
|
|
public:
|
2016-06-24 02:43:46 -06:00
|
|
|
static void Init();
|
2017-06-24 03:29:03 -06:00
|
|
|
static void Reload();
|
2016-06-24 02:43:46 -06:00
|
|
|
static void Clear();
|
|
|
|
static void Shutdown();
|
2017-07-19 23:25:31 -06:00
|
|
|
static bool SetShader(D3DVertexFormat* vertex_format);
|
|
|
|
static bool SetUberShader(D3DVertexFormat* vertex_format);
|
|
|
|
static void RetreiveAsyncShaders();
|
|
|
|
static void PrecompileUberShaders();
|
2011-01-24 04:57:17 -07:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
static ID3D11Buffer*& GetConstantBuffer();
|
2010-06-13 13:50:06 -06:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
static ID3D11VertexShader* GetSimpleVertexShader();
|
|
|
|
static ID3D11VertexShader* GetClearVertexShader();
|
|
|
|
static ID3D11InputLayout* GetSimpleInputLayout();
|
|
|
|
static ID3D11InputLayout* GetClearInputLayout();
|
2010-06-13 13:50:06 -06:00
|
|
|
|
2017-07-19 23:25:31 -06:00
|
|
|
static bool InsertByteCode(const VertexShaderUid& uid, D3DBlob* blob);
|
|
|
|
static bool InsertByteCode(const UberShader::VertexShaderUid& uid, D3DBlob* blob);
|
|
|
|
static bool InsertShader(const VertexShaderUid& uid, ID3D11VertexShader* shader, D3DBlob* blob);
|
|
|
|
static bool InsertShader(const UberShader::VertexShaderUid& uid, ID3D11VertexShader* shader,
|
|
|
|
D3DBlob* blob);
|
2010-06-13 13:50:06 -06:00
|
|
|
|
|
|
|
private:
|
2016-06-24 02:43:46 -06:00
|
|
|
struct VSCacheEntry
|
|
|
|
{
|
|
|
|
ID3D11VertexShader* shader;
|
|
|
|
D3DBlob* bytecode; // needed to initialize the input layout
|
2017-07-19 23:25:31 -06:00
|
|
|
bool pending;
|
2010-06-13 13:50:06 -06:00
|
|
|
|
2017-07-19 23:25:31 -06:00
|
|
|
VSCacheEntry() : shader(nullptr), bytecode(nullptr), pending(false) {}
|
2016-06-24 02:43:46 -06:00
|
|
|
void SetByteCode(D3DBlob* blob)
|
|
|
|
{
|
|
|
|
SAFE_RELEASE(bytecode);
|
|
|
|
bytecode = blob;
|
|
|
|
blob->AddRef();
|
|
|
|
}
|
|
|
|
void Destroy()
|
|
|
|
{
|
|
|
|
SAFE_RELEASE(shader);
|
|
|
|
SAFE_RELEASE(bytecode);
|
|
|
|
}
|
|
|
|
};
|
2017-07-19 23:25:31 -06:00
|
|
|
|
|
|
|
class VertexShaderCompilerWorkItem : public VideoCommon::AsyncShaderCompiler::WorkItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
VertexShaderCompilerWorkItem(const VertexShaderUid& uid);
|
|
|
|
~VertexShaderCompilerWorkItem() override;
|
|
|
|
|
|
|
|
bool Compile() override;
|
|
|
|
void Retrieve() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
VertexShaderUid m_uid;
|
|
|
|
D3DBlob* m_bytecode = nullptr;
|
|
|
|
ID3D11VertexShader* m_vs = nullptr;
|
|
|
|
};
|
|
|
|
|
|
|
|
class UberVertexShaderCompilerWorkItem : public VideoCommon::AsyncShaderCompiler::WorkItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
UberVertexShaderCompilerWorkItem(const UberShader::VertexShaderUid& uid);
|
|
|
|
~UberVertexShaderCompilerWorkItem() override;
|
|
|
|
|
|
|
|
bool Compile() override;
|
|
|
|
void Retrieve() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
UberShader::VertexShaderUid m_uid;
|
|
|
|
D3DBlob* m_bytecode = nullptr;
|
|
|
|
ID3D11VertexShader* m_vs = nullptr;
|
|
|
|
};
|
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
typedef std::map<VertexShaderUid, VSCacheEntry> VSCache;
|
2017-07-19 23:25:31 -06:00
|
|
|
typedef std::map<UberShader::VertexShaderUid, VSCacheEntry> UberVSCache;
|
2013-10-28 23:23:17 -06:00
|
|
|
|
2017-06-24 03:29:03 -06:00
|
|
|
static void LoadShaderCache();
|
2017-07-19 23:25:31 -06:00
|
|
|
static void SetInputLayout();
|
2017-06-24 03:29:03 -06:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
static VSCache vshaders;
|
2017-07-19 23:25:31 -06:00
|
|
|
static UberVSCache ubervshaders;
|
2016-06-24 02:43:46 -06:00
|
|
|
static const VSCacheEntry* last_entry;
|
2017-07-19 23:25:31 -06:00
|
|
|
static const VSCacheEntry* last_uber_entry;
|
2016-06-24 02:43:46 -06:00
|
|
|
static VertexShaderUid last_uid;
|
2017-07-19 23:25:31 -06:00
|
|
|
static UberShader::VertexShaderUid last_uber_uid;
|
2010-06-13 13:50:06 -06:00
|
|
|
};
|
|
|
|
|
2011-01-29 13:16:51 -07:00
|
|
|
} // namespace DX11
|