Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
08499d17
Commit
08499d17
authored
Jul 28, 2023
by
Georg Lehmann
Committed by
Alexandre Julliard
Jul 31, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winevulkan: Update to VK spec version 1.3.260.
parent
0a880e57
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
98 additions
and
6 deletions
+98
-6
loader_thunks.c
dlls/winevulkan/loader_thunks.c
+50
-1
loader_thunks.h
dlls/winevulkan/loader_thunks.h
+37
-2
make_vulkan
dlls/winevulkan/make_vulkan
+1
-1
vulkan_thunks.c
dlls/winevulkan/vulkan_thunks.c
+0
-0
vulkan_thunks.h
dlls/winevulkan/vulkan_thunks.h
+9
-1
winevulkan.json
dlls/winevulkan/winevulkan.json
+1
-1
vulkan.h
include/wine/vulkan.h
+0
-0
No files found.
dlls/winevulkan/loader_thunks.c
View file @
08499d17
...
...
@@ -360,6 +360,17 @@ void WINAPI vkCmdBindIndexBuffer(VkCommandBuffer commandBuffer, VkBuffer buffer,
UNIX_CALL
(
vkCmdBindIndexBuffer
,
&
params
);
}
void
WINAPI
vkCmdBindIndexBuffer2KHR
(
VkCommandBuffer
commandBuffer
,
VkBuffer
buffer
,
VkDeviceSize
offset
,
VkDeviceSize
size
,
VkIndexType
indexType
)
{
struct
vkCmdBindIndexBuffer2KHR_params
params
;
params
.
commandBuffer
=
commandBuffer
;
params
.
buffer
=
buffer
;
params
.
offset
=
offset
;
params
.
size
=
size
;
params
.
indexType
=
indexType
;
UNIX_CALL
(
vkCmdBindIndexBuffer2KHR
,
&
params
);
}
void
WINAPI
vkCmdBindInvocationMaskHUAWEI
(
VkCommandBuffer
commandBuffer
,
VkImageView
imageView
,
VkImageLayout
imageLayout
)
{
struct
vkCmdBindInvocationMaskHUAWEI_params
params
;
...
...
@@ -4135,6 +4146,17 @@ void WINAPI vkGetDeviceImageSparseMemoryRequirementsKHR(VkDevice device, const V
assert
(
!
status
&&
"vkGetDeviceImageSparseMemoryRequirementsKHR"
);
}
void
WINAPI
vkGetDeviceImageSubresourceLayoutKHR
(
VkDevice
device
,
const
VkDeviceImageSubresourceInfoKHR
*
pInfo
,
VkSubresourceLayout2KHR
*
pLayout
)
{
struct
vkGetDeviceImageSubresourceLayoutKHR_params
params
;
NTSTATUS
status
;
params
.
device
=
device
;
params
.
pInfo
=
pInfo
;
params
.
pLayout
=
pLayout
;
status
=
UNIX_CALL
(
vkGetDeviceImageSubresourceLayoutKHR
,
&
params
);
assert
(
!
status
&&
"vkGetDeviceImageSubresourceLayoutKHR"
);
}
void
WINAPI
vkGetDeviceMemoryCommitment
(
VkDevice
device
,
VkDeviceMemory
memory
,
VkDeviceSize
*
pCommittedMemoryInBytes
)
{
struct
vkGetDeviceMemoryCommitment_params
params
;
...
...
@@ -4365,7 +4387,7 @@ void WINAPI vkGetImageSubresourceLayout(VkDevice device, VkImage image, const Vk
assert
(
!
status
&&
"vkGetImageSubresourceLayout"
);
}
void
WINAPI
vkGetImageSubresourceLayout2EXT
(
VkDevice
device
,
VkImage
image
,
const
VkImageSubresource2
EXT
*
pSubresource
,
VkSubresourceLayout2EXT
*
pLayout
)
void
WINAPI
vkGetImageSubresourceLayout2EXT
(
VkDevice
device
,
VkImage
image
,
const
VkImageSubresource2
KHR
*
pSubresource
,
VkSubresourceLayout2KHR
*
pLayout
)
{
struct
vkGetImageSubresourceLayout2EXT_params
params
;
NTSTATUS
status
;
...
...
@@ -4377,6 +4399,18 @@ void WINAPI vkGetImageSubresourceLayout2EXT(VkDevice device, VkImage image, cons
assert
(
!
status
&&
"vkGetImageSubresourceLayout2EXT"
);
}
void
WINAPI
vkGetImageSubresourceLayout2KHR
(
VkDevice
device
,
VkImage
image
,
const
VkImageSubresource2KHR
*
pSubresource
,
VkSubresourceLayout2KHR
*
pLayout
)
{
struct
vkGetImageSubresourceLayout2KHR_params
params
;
NTSTATUS
status
;
params
.
device
=
device
;
params
.
image
=
image
;
params
.
pSubresource
=
pSubresource
;
params
.
pLayout
=
pLayout
;
status
=
UNIX_CALL
(
vkGetImageSubresourceLayout2KHR
,
&
params
);
assert
(
!
status
&&
"vkGetImageSubresourceLayout2KHR"
);
}
VkResult
WINAPI
vkGetImageViewAddressNVX
(
VkDevice
device
,
VkImageView
imageView
,
VkImageViewAddressPropertiesNVX
*
pProperties
)
{
struct
vkGetImageViewAddressNVX_params
params
;
...
...
@@ -5170,6 +5204,17 @@ void WINAPI vkGetRenderAreaGranularity(VkDevice device, VkRenderPass renderPass,
assert
(
!
status
&&
"vkGetRenderAreaGranularity"
);
}
void
WINAPI
vkGetRenderingAreaGranularityKHR
(
VkDevice
device
,
const
VkRenderingAreaInfoKHR
*
pRenderingAreaInfo
,
VkExtent2D
*
pGranularity
)
{
struct
vkGetRenderingAreaGranularityKHR_params
params
;
NTSTATUS
status
;
params
.
device
=
device
;
params
.
pRenderingAreaInfo
=
pRenderingAreaInfo
;
params
.
pGranularity
=
pGranularity
;
status
=
UNIX_CALL
(
vkGetRenderingAreaGranularityKHR
,
&
params
);
assert
(
!
status
&&
"vkGetRenderingAreaGranularityKHR"
);
}
VkResult
WINAPI
vkGetSamplerOpaqueCaptureDescriptorDataEXT
(
VkDevice
device
,
const
VkSamplerCaptureDescriptorDataInfoEXT
*
pInfo
,
void
*
pData
)
{
struct
vkGetSamplerOpaqueCaptureDescriptorDataEXT_params
params
;
...
...
@@ -5916,6 +5961,7 @@ static const struct vulkan_func vk_device_dispatch_table[] =
{
"vkCmdBindDescriptorBuffersEXT"
,
vkCmdBindDescriptorBuffersEXT
},
{
"vkCmdBindDescriptorSets"
,
vkCmdBindDescriptorSets
},
{
"vkCmdBindIndexBuffer"
,
vkCmdBindIndexBuffer
},
{
"vkCmdBindIndexBuffer2KHR"
,
vkCmdBindIndexBuffer2KHR
},
{
"vkCmdBindInvocationMaskHUAWEI"
,
vkCmdBindInvocationMaskHUAWEI
},
{
"vkCmdBindPipeline"
,
vkCmdBindPipeline
},
{
"vkCmdBindPipelineShaderGroupNV"
,
vkCmdBindPipelineShaderGroupNV
},
...
...
@@ -6266,6 +6312,7 @@ static const struct vulkan_func vk_device_dispatch_table[] =
{
"vkGetDeviceImageMemoryRequirementsKHR"
,
vkGetDeviceImageMemoryRequirementsKHR
},
{
"vkGetDeviceImageSparseMemoryRequirements"
,
vkGetDeviceImageSparseMemoryRequirements
},
{
"vkGetDeviceImageSparseMemoryRequirementsKHR"
,
vkGetDeviceImageSparseMemoryRequirementsKHR
},
{
"vkGetDeviceImageSubresourceLayoutKHR"
,
vkGetDeviceImageSubresourceLayoutKHR
},
{
"vkGetDeviceMemoryCommitment"
,
vkGetDeviceMemoryCommitment
},
{
"vkGetDeviceMemoryOpaqueCaptureAddress"
,
vkGetDeviceMemoryOpaqueCaptureAddress
},
{
"vkGetDeviceMemoryOpaqueCaptureAddressKHR"
,
vkGetDeviceMemoryOpaqueCaptureAddressKHR
},
...
...
@@ -6288,6 +6335,7 @@ static const struct vulkan_func vk_device_dispatch_table[] =
{
"vkGetImageSparseMemoryRequirements2KHR"
,
vkGetImageSparseMemoryRequirements2KHR
},
{
"vkGetImageSubresourceLayout"
,
vkGetImageSubresourceLayout
},
{
"vkGetImageSubresourceLayout2EXT"
,
vkGetImageSubresourceLayout2EXT
},
{
"vkGetImageSubresourceLayout2KHR"
,
vkGetImageSubresourceLayout2KHR
},
{
"vkGetImageViewAddressNVX"
,
vkGetImageViewAddressNVX
},
{
"vkGetImageViewHandleNVX"
,
vkGetImageViewHandleNVX
},
{
"vkGetImageViewOpaqueCaptureDescriptorDataEXT"
,
vkGetImageViewOpaqueCaptureDescriptorDataEXT
},
...
...
@@ -6311,6 +6359,7 @@ static const struct vulkan_func vk_device_dispatch_table[] =
{
"vkGetRayTracingShaderGroupHandlesNV"
,
vkGetRayTracingShaderGroupHandlesNV
},
{
"vkGetRayTracingShaderGroupStackSizeKHR"
,
vkGetRayTracingShaderGroupStackSizeKHR
},
{
"vkGetRenderAreaGranularity"
,
vkGetRenderAreaGranularity
},
{
"vkGetRenderingAreaGranularityKHR"
,
vkGetRenderingAreaGranularityKHR
},
{
"vkGetSamplerOpaqueCaptureDescriptorDataEXT"
,
vkGetSamplerOpaqueCaptureDescriptorDataEXT
},
{
"vkGetSemaphoreCounterValue"
,
vkGetSemaphoreCounterValue
},
{
"vkGetSemaphoreCounterValueKHR"
,
vkGetSemaphoreCounterValueKHR
},
...
...
dlls/winevulkan/loader_thunks.h
View file @
08499d17
...
...
@@ -49,6 +49,7 @@ enum unix_call
unix_vkCmdBindDescriptorBuffersEXT
,
unix_vkCmdBindDescriptorSets
,
unix_vkCmdBindIndexBuffer
,
unix_vkCmdBindIndexBuffer2KHR
,
unix_vkCmdBindInvocationMaskHUAWEI
,
unix_vkCmdBindPipeline
,
unix_vkCmdBindPipelineShaderGroupNV
,
...
...
@@ -417,6 +418,7 @@ enum unix_call
unix_vkGetDeviceImageMemoryRequirementsKHR
,
unix_vkGetDeviceImageSparseMemoryRequirements
,
unix_vkGetDeviceImageSparseMemoryRequirementsKHR
,
unix_vkGetDeviceImageSubresourceLayoutKHR
,
unix_vkGetDeviceMemoryCommitment
,
unix_vkGetDeviceMemoryOpaqueCaptureAddress
,
unix_vkGetDeviceMemoryOpaqueCaptureAddressKHR
,
...
...
@@ -438,6 +440,7 @@ enum unix_call
unix_vkGetImageSparseMemoryRequirements2KHR
,
unix_vkGetImageSubresourceLayout
,
unix_vkGetImageSubresourceLayout2EXT
,
unix_vkGetImageSubresourceLayout2KHR
,
unix_vkGetImageViewAddressNVX
,
unix_vkGetImageViewHandleNVX
,
unix_vkGetImageViewOpaqueCaptureDescriptorDataEXT
,
...
...
@@ -506,6 +509,7 @@ enum unix_call
unix_vkGetRayTracingShaderGroupHandlesNV
,
unix_vkGetRayTracingShaderGroupStackSizeKHR
,
unix_vkGetRenderAreaGranularity
,
unix_vkGetRenderingAreaGranularityKHR
,
unix_vkGetSamplerOpaqueCaptureDescriptorDataEXT
,
unix_vkGetSemaphoreCounterValue
,
unix_vkGetSemaphoreCounterValueKHR
,
...
...
@@ -828,6 +832,15 @@ struct vkCmdBindIndexBuffer_params
VkIndexType
indexType
;
};
struct
vkCmdBindIndexBuffer2KHR_params
{
VkCommandBuffer
commandBuffer
;
VkBuffer
DECLSPEC_ALIGN
(
8
)
buffer
;
VkDeviceSize
DECLSPEC_ALIGN
(
8
)
offset
;
VkDeviceSize
DECLSPEC_ALIGN
(
8
)
size
;
VkIndexType
indexType
;
};
struct
vkCmdBindInvocationMaskHUAWEI_params
{
VkCommandBuffer
commandBuffer
;
...
...
@@ -3671,6 +3684,13 @@ struct vkGetDeviceImageSparseMemoryRequirementsKHR_params
VkSparseImageMemoryRequirements2
*
pSparseMemoryRequirements
;
};
struct
vkGetDeviceImageSubresourceLayoutKHR_params
{
VkDevice
device
;
const
VkDeviceImageSubresourceInfoKHR
*
pInfo
;
VkSubresourceLayout2KHR
*
pLayout
;
};
struct
vkGetDeviceMemoryCommitment_params
{
VkDevice
device
;
...
...
@@ -3825,8 +3845,16 @@ struct vkGetImageSubresourceLayout2EXT_params
{
VkDevice
device
;
VkImage
DECLSPEC_ALIGN
(
8
)
image
;
const
VkImageSubresource2EXT
*
pSubresource
;
VkSubresourceLayout2EXT
*
pLayout
;
const
VkImageSubresource2KHR
*
pSubresource
;
VkSubresourceLayout2KHR
*
pLayout
;
};
struct
vkGetImageSubresourceLayout2KHR_params
{
VkDevice
device
;
VkImage
DECLSPEC_ALIGN
(
8
)
image
;
const
VkImageSubresource2KHR
*
pSubresource
;
VkSubresourceLayout2KHR
*
pLayout
;
};
struct
vkGetImageViewAddressNVX_params
...
...
@@ -4370,6 +4398,13 @@ struct vkGetRenderAreaGranularity_params
VkExtent2D
*
pGranularity
;
};
struct
vkGetRenderingAreaGranularityKHR_params
{
VkDevice
device
;
const
VkRenderingAreaInfoKHR
*
pRenderingAreaInfo
;
VkExtent2D
*
pGranularity
;
};
struct
vkGetSamplerOpaqueCaptureDescriptorDataEXT_params
{
VkDevice
device
;
...
...
dlls/winevulkan/make_vulkan
View file @
08499d17
...
...
@@ -65,7 +65,7 @@ from enum import Enum
LOGGER
=
logging
.
Logger
(
"vulkan"
)
LOGGER
.
addHandler
(
logging
.
StreamHandler
())
VK_XML_VERSION
=
"1.3.2
59
"
VK_XML_VERSION
=
"1.3.2
60
"
WINE_VK_VERSION
=
(
1
,
3
)
# Filenames to create.
...
...
dlls/winevulkan/vulkan_thunks.c
View file @
08499d17
This diff is collapsed.
Click to expand it.
dlls/winevulkan/vulkan_thunks.h
View file @
08499d17
...
...
@@ -96,6 +96,7 @@ struct vulkan_device_funcs
void
(
*
p_vkCmdBindDescriptorBuffersEXT
)(
VkCommandBuffer
,
uint32_t
,
const
VkDescriptorBufferBindingInfoEXT
*
);
void
(
*
p_vkCmdBindDescriptorSets
)(
VkCommandBuffer
,
VkPipelineBindPoint
,
VkPipelineLayout
,
uint32_t
,
uint32_t
,
const
VkDescriptorSet
*
,
uint32_t
,
const
uint32_t
*
);
void
(
*
p_vkCmdBindIndexBuffer
)(
VkCommandBuffer
,
VkBuffer
,
VkDeviceSize
,
VkIndexType
);
void
(
*
p_vkCmdBindIndexBuffer2KHR
)(
VkCommandBuffer
,
VkBuffer
,
VkDeviceSize
,
VkDeviceSize
,
VkIndexType
);
void
(
*
p_vkCmdBindInvocationMaskHUAWEI
)(
VkCommandBuffer
,
VkImageView
,
VkImageLayout
);
void
(
*
p_vkCmdBindPipeline
)(
VkCommandBuffer
,
VkPipelineBindPoint
,
VkPipeline
);
void
(
*
p_vkCmdBindPipelineShaderGroupNV
)(
VkCommandBuffer
,
VkPipelineBindPoint
,
VkPipeline
,
uint32_t
);
...
...
@@ -446,6 +447,7 @@ struct vulkan_device_funcs
void
(
*
p_vkGetDeviceImageMemoryRequirementsKHR
)(
VkDevice
,
const
VkDeviceImageMemoryRequirements
*
,
VkMemoryRequirements2
*
);
void
(
*
p_vkGetDeviceImageSparseMemoryRequirements
)(
VkDevice
,
const
VkDeviceImageMemoryRequirements
*
,
uint32_t
*
,
VkSparseImageMemoryRequirements2
*
);
void
(
*
p_vkGetDeviceImageSparseMemoryRequirementsKHR
)(
VkDevice
,
const
VkDeviceImageMemoryRequirements
*
,
uint32_t
*
,
VkSparseImageMemoryRequirements2
*
);
void
(
*
p_vkGetDeviceImageSubresourceLayoutKHR
)(
VkDevice
,
const
VkDeviceImageSubresourceInfoKHR
*
,
VkSubresourceLayout2KHR
*
);
void
(
*
p_vkGetDeviceMemoryCommitment
)(
VkDevice
,
VkDeviceMemory
,
VkDeviceSize
*
);
uint64_t
(
*
p_vkGetDeviceMemoryOpaqueCaptureAddress
)(
VkDevice
,
const
VkDeviceMemoryOpaqueCaptureAddressInfo
*
);
uint64_t
(
*
p_vkGetDeviceMemoryOpaqueCaptureAddressKHR
)(
VkDevice
,
const
VkDeviceMemoryOpaqueCaptureAddressInfo
*
);
...
...
@@ -466,7 +468,8 @@ struct vulkan_device_funcs
void
(
*
p_vkGetImageSparseMemoryRequirements2
)(
VkDevice
,
const
VkImageSparseMemoryRequirementsInfo2
*
,
uint32_t
*
,
VkSparseImageMemoryRequirements2
*
);
void
(
*
p_vkGetImageSparseMemoryRequirements2KHR
)(
VkDevice
,
const
VkImageSparseMemoryRequirementsInfo2
*
,
uint32_t
*
,
VkSparseImageMemoryRequirements2
*
);
void
(
*
p_vkGetImageSubresourceLayout
)(
VkDevice
,
VkImage
,
const
VkImageSubresource
*
,
VkSubresourceLayout
*
);
void
(
*
p_vkGetImageSubresourceLayout2EXT
)(
VkDevice
,
VkImage
,
const
VkImageSubresource2EXT
*
,
VkSubresourceLayout2EXT
*
);
void
(
*
p_vkGetImageSubresourceLayout2EXT
)(
VkDevice
,
VkImage
,
const
VkImageSubresource2KHR
*
,
VkSubresourceLayout2KHR
*
);
void
(
*
p_vkGetImageSubresourceLayout2KHR
)(
VkDevice
,
VkImage
,
const
VkImageSubresource2KHR
*
,
VkSubresourceLayout2KHR
*
);
VkResult
(
*
p_vkGetImageViewAddressNVX
)(
VkDevice
,
VkImageView
,
VkImageViewAddressPropertiesNVX
*
);
uint32_t
(
*
p_vkGetImageViewHandleNVX
)(
VkDevice
,
const
VkImageViewHandleInfoNVX
*
);
VkResult
(
*
p_vkGetImageViewOpaqueCaptureDescriptorDataEXT
)(
VkDevice
,
const
VkImageViewCaptureDescriptorDataInfoEXT
*
,
void
*
);
...
...
@@ -490,6 +493,7 @@ struct vulkan_device_funcs
VkResult
(
*
p_vkGetRayTracingShaderGroupHandlesNV
)(
VkDevice
,
VkPipeline
,
uint32_t
,
uint32_t
,
size_t
,
void
*
);
VkDeviceSize
(
*
p_vkGetRayTracingShaderGroupStackSizeKHR
)(
VkDevice
,
VkPipeline
,
uint32_t
,
VkShaderGroupShaderKHR
);
void
(
*
p_vkGetRenderAreaGranularity
)(
VkDevice
,
VkRenderPass
,
VkExtent2D
*
);
void
(
*
p_vkGetRenderingAreaGranularityKHR
)(
VkDevice
,
const
VkRenderingAreaInfoKHR
*
,
VkExtent2D
*
);
VkResult
(
*
p_vkGetSamplerOpaqueCaptureDescriptorDataEXT
)(
VkDevice
,
const
VkSamplerCaptureDescriptorDataInfoEXT
*
,
void
*
);
VkResult
(
*
p_vkGetSemaphoreCounterValue
)(
VkDevice
,
VkSemaphore
,
uint64_t
*
);
VkResult
(
*
p_vkGetSemaphoreCounterValueKHR
)(
VkDevice
,
VkSemaphore
,
uint64_t
*
);
...
...
@@ -643,6 +647,7 @@ struct vulkan_instance_funcs
USE_VK_FUNC(vkCmdBindDescriptorBuffersEXT) \
USE_VK_FUNC(vkCmdBindDescriptorSets) \
USE_VK_FUNC(vkCmdBindIndexBuffer) \
USE_VK_FUNC(vkCmdBindIndexBuffer2KHR) \
USE_VK_FUNC(vkCmdBindInvocationMaskHUAWEI) \
USE_VK_FUNC(vkCmdBindPipeline) \
USE_VK_FUNC(vkCmdBindPipelineShaderGroupNV) \
...
...
@@ -993,6 +998,7 @@ struct vulkan_instance_funcs
USE_VK_FUNC(vkGetDeviceImageMemoryRequirementsKHR) \
USE_VK_FUNC(vkGetDeviceImageSparseMemoryRequirements) \
USE_VK_FUNC(vkGetDeviceImageSparseMemoryRequirementsKHR) \
USE_VK_FUNC(vkGetDeviceImageSubresourceLayoutKHR) \
USE_VK_FUNC(vkGetDeviceMemoryCommitment) \
USE_VK_FUNC(vkGetDeviceMemoryOpaqueCaptureAddress) \
USE_VK_FUNC(vkGetDeviceMemoryOpaqueCaptureAddressKHR) \
...
...
@@ -1014,6 +1020,7 @@ struct vulkan_instance_funcs
USE_VK_FUNC(vkGetImageSparseMemoryRequirements2KHR) \
USE_VK_FUNC(vkGetImageSubresourceLayout) \
USE_VK_FUNC(vkGetImageSubresourceLayout2EXT) \
USE_VK_FUNC(vkGetImageSubresourceLayout2KHR) \
USE_VK_FUNC(vkGetImageViewAddressNVX) \
USE_VK_FUNC(vkGetImageViewHandleNVX) \
USE_VK_FUNC(vkGetImageViewOpaqueCaptureDescriptorDataEXT) \
...
...
@@ -1037,6 +1044,7 @@ struct vulkan_instance_funcs
USE_VK_FUNC(vkGetRayTracingShaderGroupHandlesNV) \
USE_VK_FUNC(vkGetRayTracingShaderGroupStackSizeKHR) \
USE_VK_FUNC(vkGetRenderAreaGranularity) \
USE_VK_FUNC(vkGetRenderingAreaGranularityKHR) \
USE_VK_FUNC(vkGetSamplerOpaqueCaptureDescriptorDataEXT) \
USE_VK_FUNC(vkGetSemaphoreCounterValue) \
USE_VK_FUNC(vkGetSemaphoreCounterValueKHR) \
...
...
dlls/winevulkan/winevulkan.json
View file @
08499d17
...
...
@@ -2,6 +2,6 @@
"file_format_version"
:
"1.0.0"
,
"ICD"
:
{
"library_path"
:
".
\\
winevulkan.dll"
,
"api_version"
:
"1.3.2
59
"
"api_version"
:
"1.3.2
60
"
}
}
include/wine/vulkan.h
View file @
08499d17
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment