2017-12-06 13:16:54 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <dxvk_device.h>
|
|
|
|
|
|
|
|
#include "d3d11_device_child.h"
|
|
|
|
|
|
|
|
namespace dxvk {
|
|
|
|
|
|
|
|
class D3D11Device;
|
|
|
|
|
|
|
|
class D3D11RasterizerState : public D3D11DeviceChild<ID3D11RasterizerState> {
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
using DescType = D3D11_RASTERIZER_DESC;
|
|
|
|
|
|
|
|
D3D11RasterizerState(
|
|
|
|
D3D11Device* device,
|
|
|
|
const D3D11_RASTERIZER_DESC& desc);
|
|
|
|
~D3D11RasterizerState();
|
|
|
|
|
|
|
|
HRESULT QueryInterface(
|
|
|
|
REFIID riid,
|
|
|
|
void** ppvObject) final;
|
|
|
|
|
|
|
|
void GetDevice(
|
|
|
|
ID3D11Device **ppDevice) final;
|
|
|
|
|
|
|
|
void GetDesc(
|
|
|
|
D3D11_RASTERIZER_DESC* pDesc) final;
|
|
|
|
|
2017-12-11 13:07:27 +01:00
|
|
|
void BindToContext(
|
|
|
|
const Rc<DxvkContext>& ctx);
|
2017-12-06 13:16:54 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2017-12-10 00:55:30 +01:00
|
|
|
D3D11Device* const m_device;
|
|
|
|
D3D11_RASTERIZER_DESC m_desc;
|
|
|
|
DxvkRasterizerState m_state;
|
2017-12-06 13:16:54 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|