2017-10-15 21:38:09 +02:00
|
|
|
#pragma once
|
|
|
|
|
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"
|
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
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \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 GetDevice(
|
2017-10-15 21:38:09 +02:00
|
|
|
ID3D11Device **ppDevice) 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
|
|
|
|
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 {
|
|
|
|
return DxvkBufferSlice(m_buffer, 0, m_buffer->info().size);
|
|
|
|
}
|
2017-12-13 17:49:08 +01:00
|
|
|
|
2017-12-20 17:37:46 +01:00
|
|
|
DxvkBufferSlice GetBufferSlice(VkDeviceSize offset) const {
|
|
|
|
return DxvkBufferSlice(m_buffer, offset, m_buffer->info().size - offset);
|
|
|
|
}
|
|
|
|
|
2018-03-18 12:36:45 +01:00
|
|
|
DxvkBufferSlice GetBufferSlice(VkDeviceSize offset, VkDeviceSize length) const {
|
|
|
|
return DxvkBufferSlice(m_buffer, offset, length);
|
|
|
|
}
|
2018-08-30 15:56:51 +02:00
|
|
|
|
|
|
|
DxvkBufferSlice GetSOCounter() {
|
|
|
|
return m_soCounter;
|
|
|
|
}
|
2018-03-18 12:36:45 +01:00
|
|
|
|
|
|
|
VkDeviceSize GetSize() const {
|
2018-10-16 12:29:04 +02:00
|
|
|
return m_desc.ByteWidth;
|
2018-03-18 12:36:45 +01:00
|
|
|
}
|
2018-08-05 18:24:01 +02:00
|
|
|
|
2018-10-16 12:29:04 +02:00
|
|
|
DxvkPhysicalBufferSlice DiscardSlice() {
|
|
|
|
m_mapped = m_buffer->allocPhysicalSlice();
|
2018-08-30 15:56:51 +02:00
|
|
|
return m_mapped;
|
2018-08-05 18:24:01 +02:00
|
|
|
}
|
|
|
|
|
2018-10-16 12:29:04 +02:00
|
|
|
DxvkPhysicalBufferSlice GetMappedSlice() const {
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-10-15 21:38:09 +02:00
|
|
|
private:
|
|
|
|
|
2017-12-15 19:11:10 +01:00
|
|
|
const Com<D3D11Device> m_device;
|
|
|
|
const D3D11_BUFFER_DESC m_desc;
|
2017-10-15 21:38:09 +02:00
|
|
|
|
2017-12-15 19:11:10 +01:00
|
|
|
Rc<DxvkBuffer> m_buffer;
|
2018-08-30 15:56:51 +02:00
|
|
|
DxvkBufferSlice m_soCounter;
|
|
|
|
DxvkPhysicalBufferSlice m_mapped;
|
2018-08-11 19:28:30 +02:00
|
|
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
|
|
|
}
|