Skip to content
Snippets Groups Projects
Commit b8c31b77 authored by Józef Kucia's avatar Józef Kucia
Browse files

libs/vkd3d: Add missing return statement in d3d12_command_list_ResolveQueryData().

parent faf86ebc
No related branches found
No related tags found
No related merge requests found
......@@ -3170,6 +3170,7 @@ static void STDMETHODCALLTYPE d3d12_command_list_ResolveQueryData(ID3D12Graphics
{
WARN("Would overflow destination buffer (%"PRIu64" + 8 > %"PRIu64").\n",
aligned_dst_buffer_offset, buffer->desc.Width);
return;
}
if (type != D3D12_QUERY_TYPE_TIMESTAMP)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment