Skip to content

Commit 64d7c75

Browse files
authored
Added Khronous Videos
1 parent 6cf6382 commit 64d7c75

File tree

1 file changed

+32
-18
lines changed

1 file changed

+32
-18
lines changed

ReadMe.md

Lines changed: 32 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,20 @@ This is a list of resources related to learning Vulkan that I've come across.
22

33
### For those who know nothing:
44

5-
This links in this section help you understand the GPU in detail
6-
7-
[A Trip Through the Pipeline by Fabian Giesen ](https://fgiesen.wordpress.com/2011/07/09/a-trip-through-the-graphics-pipeline-2011-index/)
8-
9-
[Render Hell 2.0 by Simon Trümpler](https://simonschreibt.de/gat/renderhell/)
10-
115
[Vulkan in 30 minutes](https://renderdoc.org/vulkan-in-30-minutes.html)
126

13-
#### Definitions (from Above)
14-
* **Queue** : A queue onto which you submit commands that the GPU reads and executes (asynchronously).
15-
* **Semaphore** : A GPU-GPU synchronization object.
16-
* **Fence** : A GPU-CPU synchronization object.
17-
* **Buffer** : Linear data for use on the device.
18-
* **Image** : Texture data (including dimensions & format) for use on the device.
19-
* **Sampler** : A collection of state required for a shader to sample textures (format, filtering etc).
20-
* **Pipeline** : A compiled collection of GPU state setting commands, shaders and other such data. (Almost) everything the GPU needs to get ready for rendering/compute work.
21-
* **PipelineCache** : A cache used by the pipeline compilation process. It is used to avoid unnecessary recompilations and can be saved and restored to and from disk to speed up subsequent compilations (for instance, in subsequent runs of the application).
22-
* **Swapchain** : A "ring buffer" of images offered by the platform's presentation engine (desktop compositors etc) on which the application can render and then submit for presentation.
23-
* **Pool** : A fast memory allocator specifically designed for objects of some specific type (descriptors, command buffers etc).
7+
### Khronous Videos
8+
9+
* [Vulkan 101](https://www.youtube.com/watch?v=iwKGmm3lw8Q)
10+
* [Porting to Vulkan](https://www.youtube.com/watch?v=nBfrPerknBk)
11+
* [Swapchains Unchained](https://www.youtube.com/watch?v=EXK_ZJwzxnQ)
12+
* [Command Buffers and Pipelines](https://www.youtube.com/watch?v=X8Ob_b3ANzs)
13+
* [Vulkan Subpasses](https://www.youtube.com/watch?v=3jJmLDKEYCU)
14+
* [Feeding Your Shaders](https://www.youtube.com/watch?v=Px4NW_QcjmQ)
15+
* [Keeping Your GPU Fed](https://www.youtube.com/watch?v=iZ3J25qsacA)
16+
* [Intro to SPIR V and using SPIR V Cross ](https://www.youtube.com/watch?v=XRpVwdduzgU)
17+
* [Asynchronous compute ](https://www.youtube.com/watch?v=XyJlYw4jpgU)
2418

25-
Source: https://www.reddit.com/r/vulkan/comments/4aveyh/tutorial_request_for_newbies_explain_the_things/d14551a
2619

2720
### Vulkan API - Companion Guide by Harry Gould
2821
* [Book](https://www.gitbook.com/book/harrylovescode/vulkan-api/details)
@@ -139,3 +132,24 @@ http://nextgenapis.realtimerendering.com/
139132
* [Google](https://developer.android.com/ndk/guides/graphics/index.html)
140133

141134

135+
136+
This links in this section help you understand the GPU in detail
137+
138+
[A Trip Through the Pipeline by Fabian Giesen ](https://fgiesen.wordpress.com/2011/07/09/a-trip-through-the-graphics-pipeline-2011-index/)
139+
140+
[Render Hell 2.0 by Simon Trümpler](https://simonschreibt.de/gat/renderhell/)
141+
142+
143+
#### Definitions (from Above)
144+
* **Queue** : A queue onto which you submit commands that the GPU reads and executes (asynchronously).
145+
* **Semaphore** : A GPU-GPU synchronization object.
146+
* **Fence** : A GPU-CPU synchronization object.
147+
* **Buffer** : Linear data for use on the device.
148+
* **Image** : Texture data (including dimensions & format) for use on the device.
149+
* **Sampler** : A collection of state required for a shader to sample textures (format, filtering etc).
150+
* **Pipeline** : A compiled collection of GPU state setting commands, shaders and other such data. (Almost) everything the GPU needs to get ready for rendering/compute work.
151+
* **PipelineCache** : A cache used by the pipeline compilation process. It is used to avoid unnecessary recompilations and can be saved and restored to and from disk to speed up subsequent compilations (for instance, in subsequent runs of the application).
152+
* **Swapchain** : A "ring buffer" of images offered by the platform's presentation engine (desktop compositors etc) on which the application can render and then submit for presentation.
153+
* **Pool** : A fast memory allocator specifically designed for objects of some specific type (descriptors, command buffers etc).
154+
155+
Source: https://www.reddit.com/r/vulkan/comments/4aveyh/tutorial_request_for_newbies_explain_the_things/d14551a

0 commit comments

Comments
 (0)