mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-14 00:48:44 +01:00
45 lines
910 B
C++
45 lines
910 B
C++
#pragma once
|
|
|
|
#include <dxvk_device.h>
|
|
|
|
#include "d3d11_device_child.h"
|
|
#include "d3d11_interfaces.h"
|
|
|
|
namespace dxvk {
|
|
|
|
class D3D11Device;
|
|
|
|
|
|
class D3D11Buffer : public D3D11DeviceChild<ID3D11Buffer> {
|
|
|
|
public:
|
|
|
|
D3D11Buffer(
|
|
D3D11Device* device,
|
|
IDXGIBufferResourcePrivate* resource,
|
|
const D3D11_BUFFER_DESC& desc);
|
|
~D3D11Buffer();
|
|
|
|
HRESULT QueryInterface(
|
|
REFIID riid,
|
|
void** ppvObject) final;
|
|
|
|
void GetDevice(
|
|
ID3D11Device **ppDevice) final;
|
|
|
|
void GetType(
|
|
D3D11_RESOURCE_DIMENSION *pResourceDimension) final;
|
|
|
|
void GetDesc(
|
|
D3D11_BUFFER_DESC *pDesc) final;
|
|
|
|
private:
|
|
|
|
D3D11Device* const m_device;
|
|
Com<IDXGIBufferResourcePrivate> m_resource;
|
|
D3D11_BUFFER_DESC m_desc;
|
|
|
|
};
|
|
|
|
}
|