libs/vkd3d: Downgrade some FIXMEs() to WARNs().

These should be performance warnings at most.
This commit is contained in:
Józef Kucia 2017-08-04 17:06:33 +02:00
parent 1c69c504f6
commit 5825acc3a0

View File

@ -476,7 +476,7 @@ static HRESULT STDMETHODCALLTYPE d3d12_resource_Map(ID3D12Resource *iface, UINT
return E_NOTIMPL; return E_NOTIMPL;
} }
FIXME("Ignoring read range %p.\n", read_range); WARN("Ignoring read range %p.\n", read_range);
if (!resource->map_count) if (!resource->map_count)
{ {
@ -654,7 +654,7 @@ static HRESULT d3d12_committed_resource_init(struct d3d12_resource *resource, st
} }
if (optimized_clear_value) if (optimized_clear_value)
FIXME("Ignoring optimized clear value.\n"); WARN("Ignoring optimized clear value.\n");
resource->gpu_address = 0; resource->gpu_address = 0;
resource->flags = 0; resource->flags = 0;