dxvk/src/d3d11/d3d11_shader.h

101 lines
2.3 KiB
C
Raw Normal View History

2017-12-06 13:16:14 +00:00
#pragma once
#include <dxbc_module.h>
2017-12-06 13:16:14 +00:00
#include <dxvk_device.h>
#include "../util/sha1/sha1_util.h"
#include "../util/util_env.h"
2017-12-06 13:16:14 +00:00
#include "d3d11_device_child.h"
#include "d3d11_interfaces.h"
namespace dxvk {
class D3D11Device;
/**
* \brief Shader module
*
*
*/
class D3D11ShaderModule {
public:
D3D11ShaderModule();
D3D11ShaderModule(
2017-12-07 09:12:48 +00:00
D3D11Device* pDevice,
const void* pShaderBytecode,
size_t BytecodeLength);
~D3D11ShaderModule();
2017-12-07 09:12:48 +00:00
Rc<DxvkShader> GetShader() const {
return m_shader;
}
2017-12-07 09:12:48 +00:00
private:
2017-12-07 09:12:48 +00:00
Rc<DxvkShader> m_shader;
Sha1Hash ComputeShaderHash(
const void* pShaderBytecode,
size_t BytecodeLength) const;
std::string ConstructFileName(
const Sha1Hash& hash,
const DxbcProgramType& type) const;
};
2017-12-06 13:16:14 +00:00
/**
* \brief Common shader interface
*
* Implements methods for all D3D11*Shader
* interfaces and stores the actual shader
* module object.
*/
template<typename Base>
class D3D11Shader : public D3D11DeviceChild<Base> {
public:
D3D11Shader(D3D11Device* device, D3D11ShaderModule&& module)
: m_device(device), m_module(std::move(module)) { }
2017-12-06 13:16:14 +00:00
~D3D11Shader() { }
HRESULT QueryInterface(REFIID riid, void** ppvObject) final {
COM_QUERY_IFACE(riid, ppvObject, IUnknown);
COM_QUERY_IFACE(riid, ppvObject, ID3D11DeviceChild);
COM_QUERY_IFACE(riid, ppvObject, Base);
Logger::warn("D3D11Shader::QueryInterface: Unknown interface query");
return E_NOINTERFACE;
}
void GetDevice(ID3D11Device **ppDevice) final {
*ppDevice = ref(m_device);
2017-12-06 13:16:14 +00:00
}
2017-12-07 09:12:48 +00:00
Rc<DxvkShader> GetShader() const {
return m_module.GetShader();
}
2017-12-06 13:16:14 +00:00
private:
D3D11Device* const m_device;
D3D11ShaderModule m_module;
2017-12-06 13:16:14 +00:00
};
using D3D11VertexShader = D3D11Shader<ID3D11VertexShader>;
using D3D11HullShader = D3D11Shader<ID3D11HullShader>;
using D3D11DomainShader = D3D11Shader<ID3D11DomainShader>;
using D3D11GeometryShader = D3D11Shader<ID3D11GeometryShader>;
using D3D11PixelShader = D3D11Shader<ID3D11PixelShader>;
using D3D11ComputeShader = D3D11Shader<ID3D11ComputeShader>;
}