1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-13 16:08:50 +01:00
dxvk/src/d3d11/d3d11_query.h

41 lines
854 B
C
Raw Normal View History

2017-12-29 22:20:31 +01:00
#pragma once
#include "d3d11_device_child.h"
namespace dxvk {
class D3D11Query : public D3D11DeviceChild<ID3D11Query> {
public:
D3D11Query(
D3D11Device* device,
const D3D11_QUERY_DESC& desc);
~D3D11Query();
HRESULT STDMETHODCALLTYPE QueryInterface(
REFIID riid,
void** ppvObject) final;
void STDMETHODCALLTYPE GetDevice(
ID3D11Device **ppDevice) final;
UINT STDMETHODCALLTYPE GetDataSize();
void STDMETHODCALLTYPE GetDesc(
D3D11_QUERY_DESC *pDesc) final;
HRESULT STDMETHODCALLTYPE GetData(
void* pData,
UINT GetDataFlags);
2017-12-29 22:20:31 +01:00
private:
D3D11Device* const m_device;
D3D11_QUERY_DESC m_desc;
};
}