|
4 | 4 |
|
5 | 5 | == Attribution |
6 | 6 |
|
7 | | -The Khronos Vulkan^®^ Tutorial is based on the "link:https://vulkan-tutorial .com/[Vulkan Tutorial]" by Alexander Overvoorde licensed under |
| 7 | +The Khronos Vulkan^®^ Tutorial is based on the "link:https://vulkan-tutorial.com/[Vulkan Tutorial]" by Alexander Overvoorde licensed under |
8 | 8 | link:https://creativecommons.org/licenses/by-sa/4.0/[CC BY-SA 4.0]. |
9 | 9 |
|
10 | 10 | == About |
11 | 11 |
|
12 | 12 | This tutorial will teach you the basics of using the |
13 | 13 | https://www.khronos.org/vulkan/[Vulkan] graphics and compute API. |
14 | | -Vulkan is a new API by the https://www.khronos.org/[Khronos group] (known |
15 | | -for OpenGL) that provides a much better abstraction of modern graphics cards. |
| 14 | +Vulkan is an API by the https://www.khronos.org/[Khronos group] that |
| 15 | +provides a much better abstraction of modern graphics cards. |
16 | 16 | This new interface allows you to better describe what your application |
17 | 17 | intends to do, which can lead to better performance and less surprising |
18 | 18 | driver behavior compared to existing APIs like |
@@ -82,10 +82,6 @@ different linear algebra library, and you will be on your own in terms of |
82 | 82 | code structuring. |
83 | 83 | We will use C{pp} features like classes and RAII to organize logic and |
84 | 84 | resource lifetimes. |
85 | | -There are also two alternative versions of this tutorial available for Rust |
86 | | - developers: |
87 | | -https://github.com/bwasty/vulkan-tutorial-rs[Vulkano based], |
88 | | -https://kylemayes.github.io/vulkanalia[Vulkanalia based]. |
89 | 85 |
|
90 | 86 | To make it easier to learn to work with Vulkan, we'll be using the newer |
91 | 87 | https://github.com/KhronosGroup/Vulkan-Hpp[Vulkan-Hpp] bindings that |
@@ -133,8 +129,6 @@ certain Vulkan feature. |
133 | 129 | That means that the site is also useful as a reference. |
134 | 130 | All the Vulkan functions and types are linked to the specification, so you |
135 | 131 | can click them to learn more. |
136 | | -Vulkan is a very new API, so there may be some shortcomings in the |
137 | | -specification itself. |
138 | 132 | You are encouraged to submit feedback to https://github |
139 | 133 | .com/KhronosGroup/Vulkan-Docs[this Khronos repository]. |
140 | 134 |
|
|
0 commit comments