mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-13 16:08:50 +01:00
86 lines
2.2 KiB
C++
86 lines
2.2 KiB
C++
#pragma once
|
|
|
|
#include "../dxvk/dxvk_device.h"
|
|
|
|
#include "d3d11_device_child.h"
|
|
|
|
namespace dxvk {
|
|
|
|
class D3D11Device;
|
|
|
|
/**
|
|
* \brief UAV counter structure
|
|
*
|
|
* Data structure passed to shaders that use
|
|
* append/consume buffer functionality.
|
|
*/
|
|
struct D3D11UavCounter {
|
|
uint32_t atomicCtr;
|
|
};
|
|
|
|
|
|
/**
|
|
* \brief Unordered access view
|
|
*
|
|
* Unordered access views are special in that they can
|
|
* have counters, which can be used inside shaders to
|
|
* atomically append or consume structures.
|
|
*/
|
|
class D3D11UnorderedAccessView : public D3D11DeviceChild<ID3D11UnorderedAccessView> {
|
|
|
|
public:
|
|
|
|
D3D11UnorderedAccessView(
|
|
D3D11Device* pDevice,
|
|
ID3D11Resource* pResource,
|
|
const D3D11_UNORDERED_ACCESS_VIEW_DESC* pDesc);
|
|
|
|
~D3D11UnorderedAccessView();
|
|
|
|
HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject) final;
|
|
|
|
void STDMETHODCALLTYPE GetDevice(ID3D11Device** ppDevice) final;
|
|
|
|
void STDMETHODCALLTYPE GetResource(ID3D11Resource** ppResource) final;
|
|
|
|
void STDMETHODCALLTYPE GetDesc(D3D11_UNORDERED_ACCESS_VIEW_DESC* pDesc) final;
|
|
|
|
D3D11_RESOURCE_DIMENSION GetResourceType() const {
|
|
D3D11_RESOURCE_DIMENSION type;
|
|
m_resource->GetType(&type);
|
|
return type;
|
|
}
|
|
|
|
Rc<DxvkBufferView> GetBufferView() const {
|
|
return m_bufferView;
|
|
}
|
|
|
|
Rc<DxvkImageView> GetImageView() const {
|
|
return m_imageView;
|
|
}
|
|
|
|
DxvkBufferSlice GetCounterSlice() const {
|
|
return m_counterSlice;
|
|
}
|
|
|
|
static HRESULT GetDescFromResource(
|
|
ID3D11Resource* pResource,
|
|
D3D11_UNORDERED_ACCESS_VIEW_DESC* pDesc);
|
|
|
|
static HRESULT NormalizeDesc(
|
|
ID3D11Resource* pResource,
|
|
D3D11_UNORDERED_ACCESS_VIEW_DESC* pDesc);
|
|
|
|
private:
|
|
|
|
Com<D3D11Device> m_device;
|
|
ID3D11Resource* m_resource;
|
|
D3D11_UNORDERED_ACCESS_VIEW_DESC m_desc;
|
|
Rc<DxvkBufferView> m_bufferView;
|
|
Rc<DxvkImageView> m_imageView;
|
|
DxvkBufferSlice m_counterSlice;
|
|
|
|
};
|
|
|
|
}
|