mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 11:48:06 +02:00
dzn: Get options14
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19537>
This commit is contained in:
parent
6b887034be
commit
c5b6d0c882
2 changed files with 2 additions and 0 deletions
|
|
@ -505,6 +505,7 @@ dzn_physical_device_cache_caps(struct dzn_physical_device *pdev)
|
|||
ID3D12Device1_CheckFeatureSupport(pdev->dev, D3D12_FEATURE_D3D12_OPTIONS2, &pdev->options2, sizeof(pdev->options2));
|
||||
ID3D12Device1_CheckFeatureSupport(pdev->dev, D3D12_FEATURE_D3D12_OPTIONS3, &pdev->options3, sizeof(pdev->options3));
|
||||
ID3D12Device1_CheckFeatureSupport(pdev->dev, D3D12_FEATURE_D3D12_OPTIONS12, &pdev->options12, sizeof(pdev->options12));
|
||||
ID3D12Device1_CheckFeatureSupport(pdev->dev, D3D12_FEATURE_D3D12_OPTIONS14, &pdev->options14, sizeof(pdev->options14));
|
||||
|
||||
pdev->queue_families[pdev->queue_family_count++] = (struct dzn_queue_family) {
|
||||
.props = {
|
||||
|
|
|
|||
|
|
@ -209,6 +209,7 @@ struct dzn_physical_device {
|
|||
D3D12_FEATURE_DATA_D3D12_OPTIONS2 options2;
|
||||
D3D12_FEATURE_DATA_D3D12_OPTIONS3 options3;
|
||||
D3D12_FEATURE_DATA_D3D12_OPTIONS12 options12;
|
||||
D3D12_FEATURE_DATA_D3D12_OPTIONS14 options14;
|
||||
VkPhysicalDeviceMemoryProperties memory;
|
||||
D3D12_HEAP_FLAGS heap_flags_for_mem_type[VK_MAX_MEMORY_TYPES];
|
||||
const struct vk_sync_type *sync_types[MAX_SYNC_TYPES + 1];
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue