mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-19 04:30:25 +01:00
dzn: Get options15
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20346>
This commit is contained in:
parent
e950224787
commit
e1ea140d77
2 changed files with 2 additions and 0 deletions
|
|
@ -507,6 +507,7 @@ dzn_physical_device_cache_caps(struct dzn_physical_device *pdev)
|
|||
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));
|
||||
ID3D12Device1_CheckFeatureSupport(pdev->dev, D3D12_FEATURE_D3D12_OPTIONS15, &pdev->options15, sizeof(pdev->options15));
|
||||
|
||||
pdev->queue_families[pdev->queue_family_count++] = (struct dzn_queue_family) {
|
||||
.props = {
|
||||
|
|
|
|||
|
|
@ -210,6 +210,7 @@ struct dzn_physical_device {
|
|||
D3D12_FEATURE_DATA_D3D12_OPTIONS3 options3;
|
||||
D3D12_FEATURE_DATA_D3D12_OPTIONS12 options12;
|
||||
D3D12_FEATURE_DATA_D3D12_OPTIONS14 options14;
|
||||
D3D12_FEATURE_DATA_D3D12_OPTIONS15 options15;
|
||||
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