mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2024-11-21 16:46:41 -08:00
libs/vkd3d: Simplify d3d12_command_list_BeginQuery().
This commit is contained in:
parent
7e5af314f1
commit
9af2876958
@ -3106,25 +3106,7 @@ static void STDMETHODCALLTYPE d3d12_command_list_BeginQuery(ID3D12GraphicsComman
|
||||
|
||||
TRACE("iface %p, heap %p, type %#x, index %u.\n", iface, heap, type, index);
|
||||
|
||||
switch (type)
|
||||
{
|
||||
case D3D12_QUERY_TYPE_TIMESTAMP:
|
||||
WARN("BeginQuery does not work with timestamp queries");
|
||||
return;
|
||||
|
||||
case D3D12_QUERY_TYPE_PIPELINE_STATISTICS:
|
||||
VK_CALL(vkCmdBeginQuery(list->vk_command_buffer, query_heap->vk_query_pool, index, 0));
|
||||
return;
|
||||
|
||||
case D3D12_QUERY_TYPE_OCCLUSION:
|
||||
case D3D12_QUERY_TYPE_BINARY_OCCLUSION:
|
||||
case D3D12_QUERY_TYPE_SO_STATISTICS_STREAM0:
|
||||
case D3D12_QUERY_TYPE_SO_STATISTICS_STREAM1:
|
||||
case D3D12_QUERY_TYPE_SO_STATISTICS_STREAM2:
|
||||
case D3D12_QUERY_TYPE_SO_STATISTICS_STREAM3:
|
||||
FIXME("Unhandled query type %#x.\n", type);
|
||||
return;
|
||||
}
|
||||
VK_CALL(vkCmdBeginQuery(list->vk_command_buffer, query_heap->vk_query_pool, index, 0));
|
||||
}
|
||||
|
||||
static void STDMETHODCALLTYPE d3d12_command_list_EndQuery(ID3D12GraphicsCommandList *iface,
|
||||
|
Loading…
x
Reference in New Issue
Block a user