Skip to content

Commit 25412ce

Browse files
profiles: Improve minimum requirements and roadmap profiles def
And fix crash when checking unsupported profiles
1 parent 12103e2 commit 25412ce

42 files changed

Lines changed: 696 additions & 234 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,15 @@
1111

1212
# Release Notes
1313

14-
## [Vulkan Profiles Tools 1.4.XXX](https://github.com/KhronosGroup/Vulkan-Profiles/tree/sdk-1.4.XXX.0) - February 2026
14+
## [Vulkan Profiles Tools 1.4.XXX](https://github.com/KhronosGroup/Vulkan-Profiles/tree/main) - May 2026
15+
16+
### Features:
17+
- Add Vulkan 1.4 minimum requirements profile
18+
19+
### Bugfixes:
20+
- Fix Vulkan Profiles library crash when checking capabilities of unsupported extensions
21+
22+
## [Vulkan Profiles Tools 1.4.341](https://github.com/KhronosGroup/Vulkan-Profiles/tree/sdk-1.4.341.0) - February 2026
1523

1624
### Features:
1725
- Add VP_ANDROID_17_requirements and VP_ANDROID_vulkan_profile_2025 profiles

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ~~~
2-
# Copyright (c) 2020-2025 LunarG, Inc.
2+
# Copyright (c) 2020-2026 LunarG, Inc.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.

layer/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ~~~
2-
# Copyright (c) 2021-2025 LunarG, Inc.
2+
# Copyright (c) 2021-2026 LunarG, Inc.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.

layer/profiles.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Copyright (C) 2015-2025 Valve Corporation
3-
* Copyright (C) 2015-2025 LunarG, Inc.
2+
* Copyright (C) 2015-2026 Valve Corporation
3+
* Copyright (C) 2015-2026 LunarG, Inc.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

layer/profiles_interface.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Copyright (C) 2022-2025 Valve Corporation
3-
* Copyright (C) 2022-2025 LunarG, Inc.
2+
* Copyright (C) 2022-2026 Valve Corporation
3+
* Copyright (C) 2022-2026 LunarG, Inc.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

layer/profiles_interface.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Copyright (C) 2022-2025 Valve Corporation
3-
* Copyright (C) 2022-2025 LunarG, Inc.
2+
* Copyright (C) 2022-2026 Valve Corporation
3+
* Copyright (C) 2022-2026 LunarG, Inc.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

layer/profiles_json.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Copyright (C) 2022-2025 Valve Corporation
3-
* Copyright (C) 2022-2025 LunarG, Inc.
2+
* Copyright (C) 2022-2026 Valve Corporation
3+
* Copyright (C) 2022-2026 LunarG, Inc.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

layer/profiles_json.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Copyright (C) 2022-2025 Valve Corporation
3-
* Copyright (C) 2022-2025 LunarG, Inc.
2+
* Copyright (C) 2022-2026 Valve Corporation
3+
* Copyright (C) 2022-2026 LunarG, Inc.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

layer/profiles_settings.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Copyright (C) 2022-2025 Valve Corporation
3-
* Copyright (C) 2022-2025 LunarG, Inc.
2+
* Copyright (C) 2022-2026 Valve Corporation
3+
* Copyright (C) 2022-2026 LunarG, Inc.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

layer/profiles_settings.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Copyright (C) 2022-2025 Valve Corporation
3-
* Copyright (C) 2022-2025 LunarG, Inc.
2+
* Copyright (C) 2022-2026 Valve Corporation
3+
* Copyright (C) 2022-2026 LunarG, Inc.
44
* Copyright (c) 2024 RasterGrid Kft.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");

0 commit comments

Comments
 (0)