Skip to content

Commit

Permalink
fix(Vulkan): values of aliased tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
Spasi committed Mar 16, 2021
1 parent 565ea93 commit 7e3531e
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public class EXTBufferDeviceAddress {
public static final int VK_BUFFER_CREATE_DEVICE_ADDRESS_CAPTURE_REPLAY_BIT_EXT = 0x10;

/** Extends {@code VkResult}. */
public static final int VK_ERROR_INVALID_DEVICE_ADDRESS_EXT = -1000244000;
public static final int VK_ERROR_INVALID_DEVICE_ADDRESS_EXT = -1000257000;

protected EXTBufferDeviceAddress() {
throw new UnsupportedOperationException();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public class KHRBufferDeviceAddress {
*/
public static final int
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BUFFER_DEVICE_ADDRESS_FEATURES_KHR = 1000257000,
VK_STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_INFO_KHR = 1000257001,
VK_STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_INFO_KHR = 1000244001,
VK_STRUCTURE_TYPE_BUFFER_OPAQUE_CAPTURE_ADDRESS_CREATE_INFO_KHR = 1000257002,
VK_STRUCTURE_TYPE_MEMORY_OPAQUE_CAPTURE_ADDRESS_ALLOCATE_INFO_KHR = 1000257003,
VK_STRUCTURE_TYPE_DEVICE_MEMORY_OPAQUE_CAPTURE_ADDRESS_INFO_KHR = 1000257004;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public class KHRExternalFenceCapabilities {
public static final int
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_FENCE_INFO_KHR = 1000112000,
VK_STRUCTURE_TYPE_EXTERNAL_FENCE_PROPERTIES_KHR = 1000112001,
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ID_PROPERTIES_KHR = 1000112004;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ID_PROPERTIES_KHR = 1000071004;

/** VK_LUID_SIZE_KHR */
public static final int VK_LUID_SIZE_KHR = 8;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public class KHRExternalSemaphoreCapabilities {
public static final int
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_SEMAPHORE_INFO_KHR = 1000076000,
VK_STRUCTURE_TYPE_EXTERNAL_SEMAPHORE_PROPERTIES_KHR = 1000076001,
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ID_PROPERTIES_KHR = 1000076004;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ID_PROPERTIES_KHR = 1000071004;

/** VK_LUID_SIZE_KHR */
public static final int VK_LUID_SIZE_KHR = 8;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ val EXT_buffer_device_address = "EXTBufferDeviceAddress".nativeClassVK("EXT_buff
EnumConstant(
"Extends {@code VkResult}.",

"ERROR_INVALID_DEVICE_ADDRESS_EXT".."-1000244000"
"ERROR_INVALID_DEVICE_ADDRESS_EXT".."-1000257000"
)

VkDeviceAddress(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ val KHR_buffer_device_address = "KHRBufferDeviceAddress".nativeClassVK("KHR_buff
"Extends {@code VkStructureType}.",

"STRUCTURE_TYPE_PHYSICAL_DEVICE_BUFFER_DEVICE_ADDRESS_FEATURES_KHR".."1000257000",
"STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_INFO_KHR".."1000257001",
"STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_INFO_KHR".."1000244001",
"STRUCTURE_TYPE_BUFFER_OPAQUE_CAPTURE_ADDRESS_CREATE_INFO_KHR".."1000257002",
"STRUCTURE_TYPE_MEMORY_OPAQUE_CAPTURE_ADDRESS_ALLOCATE_INFO_KHR".."1000257003",
"STRUCTURE_TYPE_DEVICE_MEMORY_OPAQUE_CAPTURE_ADDRESS_INFO_KHR".."1000257004"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ val KHR_external_fence_capabilities = "KHRExternalFenceCapabilities".nativeClass

"STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_FENCE_INFO_KHR".."1000112000",
"STRUCTURE_TYPE_EXTERNAL_FENCE_PROPERTIES_KHR".."1000112001",
"STRUCTURE_TYPE_PHYSICAL_DEVICE_ID_PROPERTIES_KHR".."1000112004"
"STRUCTURE_TYPE_PHYSICAL_DEVICE_ID_PROPERTIES_KHR".."1000071004"
)

EnumConstant(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ val KHR_external_semaphore_capabilities = "KHRExternalSemaphoreCapabilities".nat

"STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_SEMAPHORE_INFO_KHR".."1000076000",
"STRUCTURE_TYPE_EXTERNAL_SEMAPHORE_PROPERTIES_KHR".."1000076001",
"STRUCTURE_TYPE_PHYSICAL_DEVICE_ID_PROPERTIES_KHR".."1000076004"
"STRUCTURE_TYPE_PHYSICAL_DEVICE_ID_PROPERTIES_KHR".."1000071004"
)

EnumConstant(
Expand Down

0 comments on commit 7e3531e

Please sign in to comment.