2017-10-15 21:38:09 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <dxvk_device.h>
|
|
|
|
|
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-11-29 15:16:07 +01:00
|
|
|
|
|
|
|
class D3D11Buffer : public D3D11DeviceChild<ID3D11Buffer> {
|
2017-10-15 21:38:09 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
D3D11Buffer(
|
2017-11-29 16:23:33 +01:00
|
|
|
D3D11Device* device,
|
2017-12-07 13:17:16 +01:00
|
|
|
IDXGIBufferResourcePrivate* resource,
|
2017-11-29 16:23:33 +01:00
|
|
|
const D3D11_BUFFER_DESC& desc);
|
2017-10-15 21:38:09 +02:00
|
|
|
~D3D11Buffer();
|
|
|
|
|
|
|
|
HRESULT QueryInterface(
|
|
|
|
REFIID riid,
|
|
|
|
void** ppvObject) final;
|
|
|
|
|
|
|
|
void GetDevice(
|
|
|
|
ID3D11Device **ppDevice) final;
|
|
|
|
|
|
|
|
void GetType(
|
|
|
|
D3D11_RESOURCE_DIMENSION *pResourceDimension) final;
|
|
|
|
|
2017-12-07 13:31:32 +01:00
|
|
|
UINT GetEvictionPriority() final;
|
|
|
|
|
|
|
|
void SetEvictionPriority(UINT EvictionPriority) final;
|
|
|
|
|
2017-10-15 21:38:09 +02:00
|
|
|
void GetDesc(
|
2017-11-27 15:51:53 +01:00
|
|
|
D3D11_BUFFER_DESC *pDesc) final;
|
2017-10-15 21:38:09 +02:00
|
|
|
|
2017-12-07 14:03:15 +01:00
|
|
|
Rc<DxvkBuffer> GetDXVKBuffer();
|
|
|
|
|
2017-10-15 21:38:09 +02:00
|
|
|
private:
|
|
|
|
|
2017-12-09 15:57:05 +01:00
|
|
|
Com<D3D11Device> m_device;
|
2017-12-07 13:17:16 +01:00
|
|
|
Com<IDXGIBufferResourcePrivate> m_resource;
|
2017-11-29 16:23:33 +01:00
|
|
|
D3D11_BUFFER_DESC m_desc;
|
2017-10-15 21:38:09 +02:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|