2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2010 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
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2014-07-07 17:28:12 -06:00
|
|
|
#include <string>
|
|
|
|
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "VideoBackends/D3D/D3DBase.h"
|
|
|
|
#include "VideoBackends/D3D/D3DBlob.h"
|
2011-06-11 13:37:21 -06:00
|
|
|
|
|
|
|
struct ID3D11PixelShader;
|
|
|
|
struct ID3D11VertexShader;
|
2010-06-13 13:50:06 -06:00
|
|
|
|
2011-01-29 13:16:51 -07:00
|
|
|
namespace DX11
|
|
|
|
{
|
2010-06-13 13:50:06 -06:00
|
|
|
namespace D3D
|
|
|
|
{
|
2017-07-19 23:25:31 -06:00
|
|
|
ID3D11VertexShader* CreateVertexShaderFromByteCode(const void* bytecode, size_t len);
|
|
|
|
ID3D11GeometryShader* CreateGeometryShaderFromByteCode(const void* bytecode, size_t len);
|
|
|
|
ID3D11PixelShader* CreatePixelShaderFromByteCode(const void* bytecode, size_t len);
|
2018-02-09 05:59:51 -07:00
|
|
|
ID3D11ComputeShader* CreateComputeShaderFromByteCode(const void* bytecode, size_t len);
|
2016-06-24 02:43:46 -06:00
|
|
|
|
|
|
|
// The returned bytecode buffers should be Release()d.
|
|
|
|
bool CompileVertexShader(const std::string& code, D3DBlob** blob);
|
|
|
|
bool CompileGeometryShader(const std::string& code, D3DBlob** blob,
|
|
|
|
const D3D_SHADER_MACRO* pDefines = nullptr);
|
|
|
|
bool CompilePixelShader(const std::string& code, D3DBlob** blob,
|
|
|
|
const D3D_SHADER_MACRO* pDefines = nullptr);
|
2018-02-09 05:59:51 -07:00
|
|
|
bool CompileComputeShader(const std::string& code, D3DBlob** blob,
|
|
|
|
const D3D_SHADER_MACRO* pDefines = nullptr);
|
2016-06-24 02:43:46 -06:00
|
|
|
|
|
|
|
// Utility functions
|
|
|
|
ID3D11VertexShader* CompileAndCreateVertexShader(const std::string& code);
|
|
|
|
ID3D11GeometryShader* CompileAndCreateGeometryShader(const std::string& code,
|
|
|
|
const D3D_SHADER_MACRO* pDefines = nullptr);
|
|
|
|
ID3D11PixelShader* CompileAndCreatePixelShader(const std::string& code);
|
2018-02-09 05:59:51 -07:00
|
|
|
ID3D11ComputeShader* CompileAndCreateComputeShader(const std::string& code);
|
2016-06-24 02:43:46 -06:00
|
|
|
|
|
|
|
inline ID3D11VertexShader* CreateVertexShaderFromByteCode(D3DBlob* bytecode)
|
|
|
|
{
|
|
|
|
return CreateVertexShaderFromByteCode(bytecode->Data(), bytecode->Size());
|
|
|
|
}
|
|
|
|
inline ID3D11GeometryShader* CreateGeometryShaderFromByteCode(D3DBlob* bytecode)
|
|
|
|
{
|
|
|
|
return CreateGeometryShaderFromByteCode(bytecode->Data(), bytecode->Size());
|
|
|
|
}
|
|
|
|
inline ID3D11PixelShader* CreatePixelShaderFromByteCode(D3DBlob* bytecode)
|
|
|
|
{
|
|
|
|
return CreatePixelShaderFromByteCode(bytecode->Data(), bytecode->Size());
|
|
|
|
}
|
2018-02-09 05:59:51 -07:00
|
|
|
inline ID3D11ComputeShader* CreateComputeShaderFromByteCode(D3DBlob* bytecode)
|
|
|
|
{
|
|
|
|
return CreateComputeShaderFromByteCode(bytecode->Data(), bytecode->Size());
|
|
|
|
}
|
2016-06-24 02:43:46 -06:00
|
|
|
|
|
|
|
inline ID3D11VertexShader* CompileAndCreateVertexShader(D3DBlob* code)
|
|
|
|
{
|
2018-02-09 05:59:51 -07:00
|
|
|
return CompileAndCreateVertexShader(reinterpret_cast<const char*>(code->Data()));
|
2016-06-24 02:43:46 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
inline ID3D11GeometryShader*
|
|
|
|
CompileAndCreateGeometryShader(D3DBlob* code, const D3D_SHADER_MACRO* pDefines = nullptr)
|
|
|
|
{
|
2018-02-09 05:59:51 -07:00
|
|
|
return CompileAndCreateGeometryShader(reinterpret_cast<const char*>(code->Data()), pDefines);
|
2016-06-24 02:43:46 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
inline ID3D11PixelShader* CompileAndCreatePixelShader(D3DBlob* code)
|
|
|
|
{
|
2018-02-09 05:59:51 -07:00
|
|
|
return CompileAndCreatePixelShader(reinterpret_cast<const char*>(code->Data()));
|
|
|
|
}
|
|
|
|
inline ID3D11ComputeShader* CompileAndCreateComputeShader(D3DBlob* code)
|
|
|
|
{
|
|
|
|
return CompileAndCreateComputeShader(reinterpret_cast<const char*>(code->Data()));
|
2016-06-24 02:43:46 -06:00
|
|
|
}
|
2011-01-29 13:16:51 -07:00
|
|
|
}
|
|
|
|
|
2015-03-01 09:17:09 -07:00
|
|
|
} // namespace DX11
|