From 589548337c38eb8673a22cbcc1cda7b4a25b1265 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 24 Apr 2022 22:03:08 +0200 Subject: [PATCH] (D3D10) Cleanup --- gfx/common/d3d10_common.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/gfx/common/d3d10_common.h b/gfx/common/d3d10_common.h index 2d7860f402..78806c7e2a 100644 --- a/gfx/common/d3d10_common.h +++ b/gfx/common/d3d10_common.h @@ -259,15 +259,6 @@ D3D10GetDepthStencilViewResource(D3D10DepthStencilView depth_stencil_view, D3D10 } static INLINE void D3D10BeginQuery(D3D10Query query) { query->lpVtbl->Begin(query); } static INLINE void D3D10EndQuery(D3D10Query query) { query->lpVtbl->End(query); } -static INLINE HRESULT -D3D10GetQueryData(D3D10Query query, void* data, UINT data_size, UINT get_data_flags) -{ - return query->lpVtbl->GetData(query, data, data_size, get_data_flags); -} -static INLINE UINT D3D10GetQueryDataSize(D3D10Query query) -{ - return query->lpVtbl->GetDataSize(query); -} static INLINE void D3D10SetVShaderConstantBuffers( D3D10Device device, UINT start_slot, UINT num_buffers, D3D10Buffer* const constant_buffers) {