1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-07 07:46:19 +01:00
dxvk/src/d3d11/d3d11_buffer.h

142 lines
3.3 KiB
C
Raw Normal View History

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
#include "d3d11_device_child.h"
#include "d3d11_interfaces.h"
2017-10-15 21:38:09 +02:00
namespace dxvk {
class D3D11Device;
class D3D11DeviceContext;
/**
* \brief Buffer map mode
*/
enum D3D11_COMMON_BUFFER_MAP_MODE {
D3D11_COMMON_BUFFER_MAP_MODE_NONE,
D3D11_COMMON_BUFFER_MAP_MODE_DIRECT,
};
/**
* \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
class D3D11Buffer : public D3D11DeviceChild<ID3D11Buffer> {
static constexpr VkDeviceSize BufferSliceAlignment = 64;
2017-10-15 21:38:09 +02:00
public:
D3D11Buffer(
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
bool CheckViewCompatibility(
UINT BindFlags,
DXGI_FORMAT Format) const;
const D3D11_BUFFER_DESC* Desc() const {
return &m_desc;
}
D3D11_COMMON_BUFFER_MAP_MODE GetMapMode() const {
return (m_buffer->memFlags() & VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT)
? D3D11_COMMON_BUFFER_MAP_MODE_DIRECT
: D3D11_COMMON_BUFFER_MAP_MODE_NONE;
}
Rc<DxvkBuffer> GetBuffer() const {
return m_buffer;
}
DxvkBufferSlice GetBufferSlice() const {
return GetBufferSlice(0, m_desc.ByteWidth);
}
DxvkBufferSlice GetBufferSlice(VkDeviceSize offset) const {
return GetBufferSlice(offset, m_desc.ByteWidth - offset);
}
DxvkBufferSlice GetBufferSlice(VkDeviceSize offset, VkDeviceSize length) const {
return DxvkBufferSlice(m_buffer, offset, length);
}
DxvkBufferSlice GetSOCounter() {
return m_soCounter;
}
DxvkBufferSliceHandle AllocSlice() {
return m_buffer->allocSlice();
}
DxvkBufferSliceHandle DiscardSlice() {
m_mapped = m_buffer->allocSlice();
return m_mapped;
}
DxvkBufferSliceHandle GetMappedSlice() const {
return m_mapped;
2018-01-20 22:28:15 +01: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;
DxvkBufferSlice m_soCounter;
DxvkBufferSliceHandle m_mapped;
2018-08-11 19:28:30 +02:00
D3D10Buffer m_d3d10;
BOOL CheckFormatFeatureSupport(
VkFormat Format,
VkFormatFeatureFlags Features) const;
2017-10-15 21:38:09 +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
}