mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-09-12 18:50:22 -07:00
vkd3d: Introduce FIXME_ONCE().
The debug log level is demoted to WARN after the FIXME is printed once. Signed-off-by: Józef Kucia <jkucia@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
committed by
Alexandre Julliard
parent
4a0b62084a
commit
285a19408f
@@ -2838,7 +2838,7 @@ static HRESULT STDMETHODCALLTYPE d3d12_device_OpenSharedHandleByName(ID3D12Devic
|
||||
static HRESULT STDMETHODCALLTYPE d3d12_device_MakeResident(ID3D12Device *iface,
|
||||
UINT object_count, ID3D12Pageable * const *objects)
|
||||
{
|
||||
FIXME("iface %p, object_count %u, objects %p stub!\n",
|
||||
FIXME_ONCE("iface %p, object_count %u, objects %p stub!\n",
|
||||
iface, object_count, objects);
|
||||
|
||||
return S_OK;
|
||||
@@ -2847,7 +2847,7 @@ static HRESULT STDMETHODCALLTYPE d3d12_device_MakeResident(ID3D12Device *iface,
|
||||
static HRESULT STDMETHODCALLTYPE d3d12_device_Evict(ID3D12Device *iface,
|
||||
UINT object_count, ID3D12Pageable * const *objects)
|
||||
{
|
||||
FIXME("iface %p, object_count %u, objects %p stub!\n",
|
||||
FIXME_ONCE("iface %p, object_count %u, objects %p stub!\n",
|
||||
iface, object_count, objects);
|
||||
|
||||
return S_OK;
|
||||
|
||||
Reference in New Issue
Block a user