From 35f90c4b2fec42f8e63e6b8bce11dc3b734e0c7b Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Tue, 16 Feb 2021 06:44:29 +0100 Subject: [PATCH] vkd3d: Only print some swapchain FIXMEs once. Silences a whole bunch of log spam in Control. Signed-off-by: Philip Rebohle --- libs/vkd3d/swapchain.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/vkd3d/swapchain.c b/libs/vkd3d/swapchain.c index ae1590b5..95bb3f83 100644 --- a/libs/vkd3d/swapchain.c +++ b/libs/vkd3d/swapchain.c @@ -2114,7 +2114,7 @@ static HRESULT STDMETHODCALLTYPE d3d12_swapchain_GetContainingOutput(dxgi_swapch static HRESULT STDMETHODCALLTYPE d3d12_swapchain_GetFrameStatistics(dxgi_swapchain_iface *iface, DXGI_FRAME_STATISTICS *stats) { - FIXME("iface %p, stats %p stub!\n", iface, stats); + FIXME_ONCE("iface %p, stats %p stub!\n", iface, stats); return E_NOTIMPL; } @@ -2122,7 +2122,7 @@ static HRESULT STDMETHODCALLTYPE d3d12_swapchain_GetFrameStatistics(dxgi_swapcha static HRESULT STDMETHODCALLTYPE d3d12_swapchain_GetLastPresentCount(dxgi_swapchain_iface *iface, UINT *last_present_count) { - FIXME("iface %p, last_present_count %p stub!\n", iface, last_present_count); + FIXME_ONCE("iface %p, last_present_count %p stub!\n", iface, last_present_count); return E_NOTIMPL; }