diff options
| author | Courtney Goeltzenleuchter <courtneygo@google.com> | 2016-02-14 10:48:22 -0700 |
|---|---|---|
| committer | Jon Ashburn <jon@lunarg.com> | 2016-02-15 08:59:29 -0700 |
| commit | fc9f7610703d73f45c38dd07cb583094fa02c8f9 (patch) | |
| tree | 039fb7a836c5ba13de63a506774525318207e061 /loader | |
| parent | cf6b9154688a002b3c4d0c3670df23aec56da1a7 (diff) | |
| download | usermoji-fc9f7610703d73f45c38dd07cb583094fa02c8f9.tar.xz | |
loader: Add images to interface Doc
Diffstat (limited to 'loader')
| -rw-r--r-- | loader/LoaderAndLayerInterface.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/loader/LoaderAndLayerInterface.md b/loader/LoaderAndLayerInterface.md index 4901fea7..f5a222c0 100644 --- a/loader/LoaderAndLayerInterface.md +++ b/loader/LoaderAndLayerInterface.md @@ -75,6 +75,7 @@ first layer’s vkCreateInstance which will call the next finally terminating in the loader again where this function calls every ICD’s vkCreateInstance and saves the results. This allows every enabled layer for this chain to set up what it needs based on the VkInstanceCreateInfo structure from the application. + This also highlights some of the complexity the loader must manage when using instance chains. As shown here, the loader must aggregate information from @@ -85,6 +86,7 @@ Device chains are created at vkCreateDevice and are generally simpler because they deal with only a single device and the ICD can always be the terminator of the chain. The below diagram also illustrates how layers (either device or instance) can skip intercepting any given Vulkan entry point. + Application interface to loader ------------------------------- @@ -240,6 +242,8 @@ vkGetDeviceProcAddr will only work with the specific VkDevice it was created for, using it with another device has undefined results. For extensions, Get\*ProcAddr will often be the only way to access extension API features. + + Vulkan Installable Client Driver interface with the loader ---------------------------------------------------------- |
