2017-12-06 13:16:54 +01:00
|
|
|
#pragma once
|
|
|
|
|
2018-08-11 22:44:10 +02:00
|
|
|
#include "../dxvk/dxvk_device.h"
|
|
|
|
|
|
|
|
#include "../d3d10/d3d10_rasterizer.h"
|
2017-12-06 13:16:54 +01:00
|
|
|
|
|
|
|
#include "d3d11_device_child.h"
|
|
|
|
|
|
|
|
namespace dxvk {
|
|
|
|
|
|
|
|
class D3D11Device;
|
|
|
|
|
2018-03-18 22:53:20 +01:00
|
|
|
class D3D11RasterizerState : public D3D11DeviceChild<ID3D11RasterizerState1> {
|
2017-12-06 13:16:54 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2018-03-18 22:53:20 +01:00
|
|
|
using DescType = D3D11_RASTERIZER_DESC1;
|
2017-12-06 13:16:54 +01:00
|
|
|
|
|
|
|
D3D11RasterizerState(
|
|
|
|
D3D11Device* device,
|
2018-03-18 22:53:20 +01:00
|
|
|
const D3D11_RASTERIZER_DESC1& desc);
|
2017-12-06 13:16:54 +01:00
|
|
|
~D3D11RasterizerState();
|
|
|
|
|
2017-12-12 12:50:52 +01:00
|
|
|
HRESULT STDMETHODCALLTYPE QueryInterface(
|
2017-12-06 13:16:54 +01:00
|
|
|
REFIID riid,
|
|
|
|
void** ppvObject) final;
|
|
|
|
|
2017-12-12 12:50:52 +01:00
|
|
|
void STDMETHODCALLTYPE GetDevice(
|
2017-12-06 13:16:54 +01:00
|
|
|
ID3D11Device **ppDevice) final;
|
|
|
|
|
2017-12-12 12:50:52 +01:00
|
|
|
void STDMETHODCALLTYPE GetDesc(
|
2017-12-06 13:16:54 +01:00
|
|
|
D3D11_RASTERIZER_DESC* pDesc) final;
|
|
|
|
|
2018-03-18 22:53:20 +01:00
|
|
|
void STDMETHODCALLTYPE GetDesc1(
|
|
|
|
D3D11_RASTERIZER_DESC1* pDesc) final;
|
|
|
|
|
2017-12-11 13:07:27 +01:00
|
|
|
void BindToContext(
|
|
|
|
const Rc<DxvkContext>& ctx);
|
2017-12-06 13:16:54 +01:00
|
|
|
|
2018-08-11 22:44:10 +02:00
|
|
|
D3D10RasterizerState* GetD3D10Iface() {
|
|
|
|
return &m_d3d10;
|
|
|
|
}
|
|
|
|
|
2018-03-18 22:53:20 +01:00
|
|
|
static D3D11_RASTERIZER_DESC1 DefaultDesc();
|
|
|
|
|
|
|
|
static D3D11_RASTERIZER_DESC1 PromoteDesc(
|
|
|
|
const D3D11_RASTERIZER_DESC* pDesc);
|
|
|
|
|
|
|
|
static HRESULT NormalizeDesc(
|
|
|
|
D3D11_RASTERIZER_DESC1* pDesc);
|
|
|
|
|
2017-12-06 13:16:54 +01:00
|
|
|
private:
|
|
|
|
|
2018-03-18 22:53:20 +01:00
|
|
|
D3D11Device* const m_device;
|
|
|
|
D3D11_RASTERIZER_DESC1 m_desc;
|
|
|
|
DxvkRasterizerState m_state;
|
2018-08-11 22:44:10 +02:00
|
|
|
D3D10RasterizerState m_d3d10;
|
2017-12-06 13:16:54 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|