Skip to content

Commit ab6706f

Browse files
committed
Change links from "1.x-extensions" to "latest"
1 parent 8e966eb commit ab6706f

File tree

41 files changed

+234
-234
lines changed

Some content is hidden

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

41 files changed

+234
-234
lines changed

docs/misc.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
////
2-
- Copyright (c) 2019-2023, Arm Limited and Contributors
2+
- Copyright (c) 2019-2025, Arm Limited and Contributors
33
-
44
- SPDX-License-Identifier: Apache-2.0
55
-
@@ -61,7 +61,7 @@ image::./images/debug-window.png[Debug Window]
6161

6262
== Driver version
6363

64-
The debug window shows the driver version of the GPU, which follows the https://registry.khronos.org/vulkan/specs/1.3-extensions/html/chap44.html#extendingvulkan-coreversions-versionnumbers[Vulkan semantics], with a major, minor, and patch number.
64+
The debug window shows the driver version of the GPU, which follows the https://registry.khronos.org/vulkan/specs/latest/html/chap44.html#extendingvulkan-coreversions-versionnumbers[Vulkan semantics], with a major, minor, and patch number.
6565
New versions of the driver will increment these numbers.
6666

6767
The framework is able to get these values by calling `vkGetPhysicalDeviceProperties(physical_device, &properties)`.

samples/api/hpp_timestamp_queries/README.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
////
2-
- Copyright (c) 2023-2024, The Khronos Group
2+
- Copyright (c) 2023-2025, The Khronos Group
33
-
44
- SPDX-License-Identifier: Apache-2.0
55
-
@@ -36,8 +36,8 @@ improve performance where needed.
3636

3737
== Introduction
3838

39-
Vulkan offers several https://registry.khronos.org/vulkan/specs/1.3-extensions/html/vkspec.html#queries[query types] that allow you to query different types of information from the GPU.
40-
One such query type is the https://registry.khronos.org/vulkan/specs/1.3-extensions/html/vkspec.html#queries-timestamps[timestamp query].
39+
Vulkan offers several https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#queries[query types] that allow you to query different types of information from the GPU.
40+
One such query type is the https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#queries-timestamps[timestamp query].
4141

4242
This provides your application with a mechanism to time the execution of commands on the GPU.
4343
As with the other query types, a query pool is then used to either directly fetch or copy over the results to the host.
@@ -274,7 +274,7 @@ float delta_in_ms = float(time_stamps[1] - time_stamps[0]) * device_limits.times
274274

275275
== vk::CommandBuffer::writeTimestamp2
276276

277-
The https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VK_KHR_synchronization2.html[VK_KHR_synchronization2] extension introduced `vk::CommandBuffer::writeTimestamp2`.
277+
The https://registry.khronos.org/vulkan/specs/latest/man/html/VK_KHR_synchronization2.html[VK_KHR_synchronization2] extension introduced `vk::CommandBuffer::writeTimestamp2`.
278278
This is pretty much the same as the `vk::CommandBuffer::writeTimestamp` function used in this sample, but adds support for some additional pipeline stages using `vk::PipelineStageFlags2`.
279279

280280
== Verdict

samples/api/timestamp_queries/README.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
////
2-
- Copyright (c) 2022-2024, Sascha Willems
2+
- Copyright (c) 2022-2025, Sascha Willems
33
-
44
- SPDX-License-Identifier: Apache-2.0
55
-
@@ -32,8 +32,8 @@ improve performance where needed.
3232

3333
== Introduction
3434

35-
Vulkan offers several https://registry.khronos.org/vulkan/specs/1.3-extensions/html/vkspec.html#queries[query types] that allow you to query different types of information from the GPU.
36-
One such query type is the https://registry.khronos.org/vulkan/specs/1.3-extensions/html/vkspec.html#queries-timestamps[timestamp query].
35+
Vulkan offers several https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#queries[query types] that allow you to query different types of information from the GPU.
36+
One such query type is the https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#queries-timestamps[timestamp query].
3737

3838
This provides your application with a mechanism to time the execution of commands on the GPU.
3939
As with the other query types, a query pool is then used to either directly fetch or copy over the results to the host.
@@ -256,7 +256,7 @@ float delta_in_ms = float(time_stamps[1] - time_stamps[0]) * device_limits.times
256256

257257
== vkCmdWriteTimestamp2
258258

259-
The https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VK_KHR_synchronization2.html[VK_KHR_synchronization2] extension introduced `vkCmdWriteTimestamp2`.
259+
The https://registry.khronos.org/vulkan/specs/latest/man/html/VK_KHR_synchronization2.html[VK_KHR_synchronization2] extension introduced `vkCmdWriteTimestamp2`.
260260
This is pretty much the same as the `vkCmdWriteTimestamp` function used in this sample, but adds support for some additional pipeline stages using `VkPipelineStageFlags2`.
261261

262262
== Verdict

samples/extensions/README.adoc

Lines changed: 41 additions & 41 deletions
Large diffs are not rendered by default.

samples/extensions/color_write_enable/README.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
////
2-
- Copyright (c) 2023, Mobica Limited
2+
- Copyright (c) 2023-2025, Mobica Limited
33
-
44
- SPDX-License-Identifier: Apache-2.0
55
-
@@ -58,12 +58,12 @@ The sample shows how to setup an application to work with this extension:
5858

5959
== Documentation links
6060

61-
https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VK_EXT_color_write_enable.html
61+
https://registry.khronos.org/vulkan/specs/latest/man/html/VK_EXT_color_write_enable.html
6262

63-
https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VkSubpassDescription.html
63+
https://registry.khronos.org/vulkan/specs/latest/man/html/VkSubpassDescription.html
6464

65-
https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VkFramebufferCreateInfo.html
65+
https://registry.khronos.org/vulkan/specs/latest/man/html/VkFramebufferCreateInfo.html
6666

6767
== See also
6868

69-
https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/vkCmdSetColorWriteMaskEXT.html
69+
https://registry.khronos.org/vulkan/specs/latest/man/html/vkCmdSetColorWriteMaskEXT.html

samples/extensions/conditional_rendering/README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
////
2-
- Copyright (c) 2022-2023, Sascha Willems
2+
- Copyright (c) 2022-2025, Sascha Willems
33
-
44
- SPDX-License-Identifier: Apache-2.0
55
-
@@ -28,7 +28,7 @@ image::./images/sample.png[Sample]
2828

2929
== Overview
3030

31-
The https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_EXT_conditional_rendering.html[VK_EXT_conditional_rendering] extension allows the execution of rendering commands to be conditional based on a value taken from a dedicated conditional buffer.
31+
The https://www.khronos.org/registry/vulkan/specs/latest/man/html/VK_EXT_conditional_rendering.html[VK_EXT_conditional_rendering] extension allows the execution of rendering commands to be conditional based on a value taken from a dedicated conditional buffer.
3232
This may help an application reduce the latency by conditionally discarding rendering commands without application intervention.
3333

3434
This sample demonstrates usage of this extension for conditionally toggling the visibility of sub-meshes of a complex glTF model.

samples/extensions/conservative_rasterization/README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
////
2-
- Copyright (c) 2019-2023, The Khronos Group
2+
- Copyright (c) 2019-2025, The Khronos Group
33
-
44
- SPDX-License-Identifier: Apache-2.0
55
-
@@ -24,7 +24,7 @@ TIP: The source for this sample can be found in the https://github.com/KhronosGr
2424
endif::[]
2525

2626

27-
*Extension*: https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#VK_EXT_conservative_rasterization[`VK_EXT_conservative_rasterization`]
27+
*Extension*: https://www.khronos.org/registry/vulkan/specs/latest/html/vkspec.html#VK_EXT_conservative_rasterization[`VK_EXT_conservative_rasterization`]
2828

2929
Uses conservative rasterization to change the way fragments are generated.
3030
Enables overestimation to generate fragments for every pixel touched instead of only pixels that are fully covered.

samples/extensions/debug_utils/README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ endif::[]
2525

2626
== Overview
2727

28-
This tutorial, along with the accompanying example code, demonstrates the use of the https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#VK_EXT_debug_utils[VK_EXT_debug_utils] extension to setup a validation layer messenger callback and pass additional debugging information to debuggers like https://renderdoc.org/[RenderDoc].
28+
This tutorial, along with the accompanying example code, demonstrates the use of the https://www.khronos.org/registry/vulkan/specs/latest/html/vkspec.html#VK_EXT_debug_utils[VK_EXT_debug_utils] extension to setup a validation layer messenger callback and pass additional debugging information to debuggers like https://renderdoc.org/[RenderDoc].
2929

3030
`VK_EXT_debug_utils` has been introduced based on feedback for the initial Vulkan debugging extensions `VK_EXT_debug_report` and `VK_EXT_debug_marker`, combining these into a single instance extensions with some added functionality.
3131

samples/extensions/descriptor_buffer_basic/README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
////
2-
- Copyright (c) 2023-2024, Sascha Willems
2+
- Copyright (c) 2023-2025, Sascha Willems
33
-
44
- SPDX-License-Identifier: Apache-2.0
55
-
@@ -26,7 +26,7 @@ endif::[]
2626
== Overview
2727

2828
Binding and managing descriptors in Vulkan can become pretty complex, both for the application and the driver.
29-
With the https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#VK_ext_descriptor_buffer[`VK_EXT_descriptor_buffer`] extension, this interface is simplified and maps more directly to how hardware sees descriptors.
29+
With the https://www.khronos.org/registry/vulkan/specs/latest/html/vkspec.html#VK_ext_descriptor_buffer[`VK_EXT_descriptor_buffer`] extension, this interface is simplified and maps more directly to how hardware sees descriptors.
3030
It also simplifies the programming model, as you no longer have to create descriptor pool upfront.
3131

3232
This sample shows how to use that extension by rendering multiple objects with different uniform buffers and images using the new interface of creating and binding descriptors.

samples/extensions/dynamic_blending/README.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
////
2-
- Copyright (c) 2023, Mobica Limited
2+
- Copyright (c) 2023-2025, Mobica Limited
33
-
44
- SPDX-License-Identifier: Apache-2.0
55
-
@@ -58,10 +58,10 @@ The sample demonstrates how the use of each operator affects color blending.
5858

5959
== Documentation links
6060

61-
https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/vkCmdSetColorBlendEnableEXT.html
61+
https://registry.khronos.org/vulkan/specs/latest/man/html/vkCmdSetColorBlendEnableEXT.html
6262

63-
https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/vkCmdSetColorBlendEquationEXT.html
63+
https://registry.khronos.org/vulkan/specs/latest/man/html/vkCmdSetColorBlendEquationEXT.html
6464

65-
https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/vkCmdSetColorBlendAdvancedEXT.html
65+
https://registry.khronos.org/vulkan/specs/latest/man/html/vkCmdSetColorBlendAdvancedEXT.html
6666

67-
https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/vkCmdSetColorWriteMaskEXT.html
67+
https://registry.khronos.org/vulkan/specs/latest/man/html/vkCmdSetColorWriteMaskEXT.html

0 commit comments

Comments
 (0)