Skip to content

Update Vulkan headers to 1.4.318 #119

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions generator/generate_vulkan_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,18 @@ def load_api_core_versions(self, root: ET.Element):
api_version = feature.get('number')

# Get the commands added in this API version
commands = feature.findall('.//command')
for command in commands:
fname = command.get('name')
assert fname not in self, fname
self[fname] = [(api_version, None)]
parents = feature.findall(".//command/..")
for parent in parents:
# Skip functions in deprecated blocks
if parent.tag == 'deprecate':
continue

# Include all of the other blocks
commands = parent.findall("command")
for command in commands:
fname = command.get('name')
assert fname not in self, fname
self[fname] = [(api_version, None)]

def load_api_extensions(self, root: ET.Element):
'''
Expand Down
3 changes: 2 additions & 1 deletion generator/vk_layer/android_build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# SPDX-License-Identifier: MIT
# ----------------------------------------------------------------------------
# Copyright (c) 2024 Arm Limited
# Copyright (c) 2024-2025 Arm Limited
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down Expand Up @@ -65,6 +65,7 @@ cmake \
-DANDROID_STL=c++_static \
-DCMAKE_BUILD_TYPE=${BUILD_TYPE} \
-DCMAKE_TOOLCHAIN_FILE="${ANDROID_NDK_HOME}/build/cmake/android.toolchain.cmake" \
-DCMAKE_WARN_DEPRECATED=OFF \
..

make -j1
Expand Down
3 changes: 2 additions & 1 deletion layer_example/android_build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# SPDX-License-Identifier: MIT
# ----------------------------------------------------------------------------
# Copyright (c) 2024 Arm Limited
# Copyright (c) 2024-2025 Arm Limited
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down Expand Up @@ -65,6 +65,7 @@ cmake \
-DANDROID_STL=c++_static \
-DCMAKE_BUILD_TYPE=${BUILD_TYPE} \
-DCMAKE_TOOLCHAIN_FILE="${ANDROID_NDK_HOME}/build/cmake/android.toolchain.cmake" \
-DCMAKE_WARN_DEPRECATED=OFF \
..

make -j1
Expand Down
3 changes: 2 additions & 1 deletion layer_gpu_support/android_build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# SPDX-License-Identifier: MIT
# ----------------------------------------------------------------------------
# Copyright (c) 2024 Arm Limited
# Copyright (c) 2024-2025 Arm Limited
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down Expand Up @@ -65,6 +65,7 @@ cmake \
-DANDROID_STL=c++_static \
-DCMAKE_BUILD_TYPE=${BUILD_TYPE} \
-DCMAKE_TOOLCHAIN_FILE="${ANDROID_NDK_HOME}/build/cmake/android.toolchain.cmake" \
-DCMAKE_WARN_DEPRECATED=OFF \
..

make -j1
Expand Down
3 changes: 2 additions & 1 deletion layer_gpu_timeline/android_build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# SPDX-License-Identifier: MIT
# ----------------------------------------------------------------------------
# Copyright (c) 2024 Arm Limited
# Copyright (c) 2024-2025 Arm Limited
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down Expand Up @@ -65,6 +65,7 @@ cmake \
-DANDROID_STL=c++_static \
-DCMAKE_BUILD_TYPE=${BUILD_TYPE} \
-DCMAKE_TOOLCHAIN_FILE="${ANDROID_NDK_HOME}/build/cmake/android.toolchain.cmake" \
-DCMAKE_WARN_DEPRECATED=OFF \
..

make -j1
Expand Down
Loading