2017-10-15 21:38:09 +02:00
|
|
|
#pragma once
|
|
|
|
|
2022-02-09 02:54:32 +01:00
|
|
|
#include "../dxvk/dxvk_cs.h"
|
2018-08-11 19:28:30 +02:00
|
|
|
#include "../dxvk/dxvk_device.h"
|
|
|
|
|
|
|
|
#include "../d3d10/d3d10_buffer.h"
|
2017-10-15 21:38:09 +02:00
|
|
|
|
2017-11-29 15:16:07 +01:00
|
|
|
#include "d3d11_device_child.h"
|
2017-11-29 16:23:33 +01:00
|
|
|
#include "d3d11_interfaces.h"
|
2019-04-27 19:33:47 +02:00
|
|
|
#include "d3d11_resource.h"
|
2017-10-15 21:38:09 +02:00
|
|
|
|
|
|
|
namespace dxvk {
|
|
|
|
|
|
|
|
class D3D11Device;
|
2017-12-13 17:49:08 +01:00
|
|
|
class D3D11DeviceContext;
|
2018-08-30 15:56:51 +02:00
|
|
|
|
|
|
|
|
2019-02-04 10:24:04 +01:00
|
|
|
/**
|
|
|
|
* \brief Buffer map mode
|
|
|
|
*/
|
|
|
|
enum D3D11_COMMON_BUFFER_MAP_MODE {
|
|
|
|
D3D11_COMMON_BUFFER_MAP_MODE_NONE,
|
|
|
|
D3D11_COMMON_BUFFER_MAP_MODE_DIRECT,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2018-08-30 15:56:51 +02:00
|
|
|
/**
|
|
|
|
* \brief Stream output buffer offset
|
|
|
|
*
|
|
|
|
* A byte offset into the buffer that
|
|
|
|
* stores the byte offset where new
|
|
|
|
* data will be written to.
|
|
|
|
*/
|
|
|
|
struct D3D11SOCounter {
|
|
|
|
uint32_t byteOffset;
|
|
|
|
};
|
2017-10-15 21:38:09 +02:00
|
|
|
|
2017-11-29 15:16:07 +01:00
|
|
|
|
2017-12-14 19:07:08 +01:00
|
|
|
class D3D11Buffer : public D3D11DeviceChild<ID3D11Buffer> {
|
|
|
|
static constexpr VkDeviceSize BufferSliceAlignment = 64;
|
2017-10-15 21:38:09 +02:00
|
|
|
public:
|
|
|
|
|
|
|
|
D3D11Buffer(
|
2017-12-14 15:59:55 +01:00
|
|
|
D3D11Device* pDevice,
|
|
|
|
const D3D11_BUFFER_DESC* pDesc);
|
2017-10-15 21:38:09 +02:00
|
|
|
~D3D11Buffer();
|
|
|
|
|
2017-12-12 12:50:52 +01:00
|
|
|
HRESULT STDMETHODCALLTYPE QueryInterface(
|
2017-10-15 21:38:09 +02:00
|
|
|
REFIID riid,
|
|
|
|
void** ppvObject) final;
|
|
|
|
|
2017-12-12 12:50:52 +01:00
|
|
|
void STDMETHODCALLTYPE GetType(
|
2017-10-15 21:38:09 +02:00
|
|
|
D3D11_RESOURCE_DIMENSION *pResourceDimension) final;
|
|
|
|
|
2017-12-12 12:50:52 +01:00
|
|
|
UINT STDMETHODCALLTYPE GetEvictionPriority() final;
|
2017-12-07 13:31:32 +01:00
|
|
|
|
2017-12-12 12:50:52 +01:00
|
|
|
void STDMETHODCALLTYPE SetEvictionPriority(UINT EvictionPriority) final;
|
2017-12-07 13:31:32 +01:00
|
|
|
|
2017-12-12 12:50:52 +01:00
|
|
|
void STDMETHODCALLTYPE GetDesc(
|
2017-11-27 15:51:53 +01:00
|
|
|
D3D11_BUFFER_DESC *pDesc) final;
|
2017-10-15 21:38:09 +02:00
|
|
|
|
2018-08-09 22:04:03 +02:00
|
|
|
bool CheckViewCompatibility(
|
|
|
|
UINT BindFlags,
|
|
|
|
DXGI_FORMAT Format) const;
|
|
|
|
|
2018-08-05 18:45:24 +02:00
|
|
|
const D3D11_BUFFER_DESC* Desc() const {
|
|
|
|
return &m_desc;
|
|
|
|
}
|
2018-10-16 12:29:04 +02:00
|
|
|
|
2019-02-04 10:24:04 +01:00
|
|
|
D3D11_COMMON_BUFFER_MAP_MODE GetMapMode() const {
|
2022-02-08 23:44:23 +01:00
|
|
|
return m_mapMode;
|
2019-02-04 10:24:04 +01:00
|
|
|
}
|
|
|
|
|
2018-03-19 03:19:13 +01:00
|
|
|
Rc<DxvkBuffer> GetBuffer() const {
|
|
|
|
return m_buffer;
|
|
|
|
}
|
|
|
|
|
2017-12-16 13:35:11 +01:00
|
|
|
DxvkBufferSlice GetBufferSlice() const {
|
2021-03-04 17:37:13 +01:00
|
|
|
return DxvkBufferSlice(m_buffer, 0, m_desc.ByteWidth);
|
2017-12-16 13:35:11 +01:00
|
|
|
}
|
2017-12-13 17:49:08 +01:00
|
|
|
|
2017-12-20 17:37:46 +01:00
|
|
|
DxvkBufferSlice GetBufferSlice(VkDeviceSize offset) const {
|
2021-03-04 17:37:13 +01:00
|
|
|
VkDeviceSize size = m_desc.ByteWidth;
|
|
|
|
|
|
|
|
return likely(offset < size)
|
|
|
|
? DxvkBufferSlice(m_buffer, offset, size - offset)
|
|
|
|
: DxvkBufferSlice();
|
2017-12-20 17:37:46 +01:00
|
|
|
}
|
|
|
|
|
2018-03-18 12:36:45 +01:00
|
|
|
DxvkBufferSlice GetBufferSlice(VkDeviceSize offset, VkDeviceSize length) const {
|
2021-03-04 17:37:13 +01:00
|
|
|
VkDeviceSize size = m_desc.ByteWidth;
|
|
|
|
|
|
|
|
return likely(offset < size)
|
|
|
|
? DxvkBufferSlice(m_buffer, offset, std::min(length, size - offset))
|
|
|
|
: DxvkBufferSlice();
|
2018-03-18 12:36:45 +01:00
|
|
|
}
|
2018-08-30 15:56:51 +02:00
|
|
|
|
|
|
|
DxvkBufferSlice GetSOCounter() {
|
2019-10-26 15:46:40 +02:00
|
|
|
return m_soCounter != nullptr
|
|
|
|
? DxvkBufferSlice(m_soCounter)
|
|
|
|
: DxvkBufferSlice();
|
2018-08-30 15:56:51 +02:00
|
|
|
}
|
2018-03-18 12:36:45 +01:00
|
|
|
|
2019-02-04 10:25:49 +01:00
|
|
|
DxvkBufferSliceHandle AllocSlice() {
|
|
|
|
return m_buffer->allocSlice();
|
|
|
|
}
|
|
|
|
|
2019-01-09 17:56:53 +01:00
|
|
|
DxvkBufferSliceHandle DiscardSlice() {
|
|
|
|
m_mapped = m_buffer->allocSlice();
|
2018-08-30 15:56:51 +02:00
|
|
|
return m_mapped;
|
2018-08-05 18:24:01 +02:00
|
|
|
}
|
|
|
|
|
2019-01-09 17:56:53 +01:00
|
|
|
DxvkBufferSliceHandle GetMappedSlice() const {
|
2018-10-16 12:29:04 +02:00
|
|
|
return m_mapped;
|
2018-01-20 22:28:15 +01:00
|
|
|
}
|
2018-08-05 18:45:24 +02:00
|
|
|
|
2018-08-11 19:28:30 +02:00
|
|
|
D3D10Buffer* GetD3D10Iface() {
|
|
|
|
return &m_d3d10;
|
|
|
|
}
|
|
|
|
|
2022-02-09 02:54:32 +01:00
|
|
|
bool HasSequenceNumber() const {
|
|
|
|
return m_mapMode != D3D11_COMMON_BUFFER_MAP_MODE_NONE
|
|
|
|
&& !(m_desc.MiscFlags & D3D11_RESOURCE_MISC_DRAWINDIRECT_ARGS)
|
|
|
|
&& !(m_desc.BindFlags);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TrackSequenceNumber(uint64_t Seq) {
|
|
|
|
m_seq = Seq;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t GetSequenceNumber() {
|
|
|
|
return HasSequenceNumber() ? m_seq
|
|
|
|
: DxvkCsThread::SynchronizeAll;
|
|
|
|
}
|
|
|
|
|
2019-06-13 03:06:11 +02:00
|
|
|
/**
|
2019-10-11 17:23:02 +02:00
|
|
|
* \brief Normalizes buffer description
|
2019-06-13 03:06:11 +02:00
|
|
|
*
|
|
|
|
* \param [in] pDesc Buffer description
|
|
|
|
* \returns \c S_OK if the parameters are valid
|
|
|
|
*/
|
2019-10-11 17:23:02 +02:00
|
|
|
static HRESULT NormalizeBufferProperties(
|
|
|
|
D3D11_BUFFER_DESC* pDesc);
|
2019-06-13 03:06:11 +02:00
|
|
|
|
2017-10-15 21:38:09 +02:00
|
|
|
private:
|
|
|
|
|
2022-02-08 23:44:23 +01:00
|
|
|
D3D11_BUFFER_DESC m_desc;
|
|
|
|
D3D11_COMMON_BUFFER_MAP_MODE m_mapMode;
|
2017-10-15 21:38:09 +02:00
|
|
|
|
2022-02-08 23:44:23 +01:00
|
|
|
Rc<DxvkBuffer> m_buffer;
|
|
|
|
Rc<DxvkBuffer> m_soCounter;
|
|
|
|
DxvkBufferSliceHandle m_mapped;
|
2022-02-09 02:54:32 +01:00
|
|
|
uint64_t m_seq = 0ull;
|
2018-08-11 19:28:30 +02:00
|
|
|
|
2022-02-08 23:44:23 +01:00
|
|
|
D3D11DXGIResource m_resource;
|
|
|
|
D3D10Buffer m_d3d10;
|
2018-08-09 23:37:41 +02:00
|
|
|
|
|
|
|
BOOL CheckFormatFeatureSupport(
|
|
|
|
VkFormat Format,
|
|
|
|
VkFormatFeatureFlags Features) const;
|
2017-12-14 15:59:55 +01:00
|
|
|
|
2019-09-17 17:21:10 +02:00
|
|
|
VkMemoryPropertyFlags GetMemoryFlags() const;
|
|
|
|
|
2019-10-26 15:46:40 +02:00
|
|
|
Rc<DxvkBuffer> CreateSoCounterBuffer();
|
|
|
|
|
2022-02-08 23:44:23 +01:00
|
|
|
D3D11_COMMON_BUFFER_MAP_MODE DetermineMapMode();
|
|
|
|
|
2017-10-15 21:38:09 +02:00
|
|
|
};
|
2018-08-05 18:29:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Retrieves buffer from resource pointer
|
|
|
|
*
|
|
|
|
* \param [in] pResource The resource to query
|
|
|
|
* \returns Pointer to buffer, or \c nullptr
|
|
|
|
*/
|
|
|
|
D3D11Buffer* GetCommonBuffer(
|
|
|
|
ID3D11Resource* pResource);
|
2017-10-15 21:38:09 +02:00
|
|
|
|
|
|
|
}
|