Home | History | Annotate | Download | only in graphics

Lines Matching full:vulkan

1 page.title=Implementing Vulkan
29 <p>Vulkan is a low-overhead, cross-platform API for high-performance 3D
30 graphics. Like OpenGL ES, Vulkan provides tools for creating high-quality,
31 real-time graphics in applications. Vulkan advantages include reductions in CPU
35 <p class="note"><strong>Note:</strong> This section describes Vulkan
36 implementation; for details on Vulkan architecture, advantages, API, and other
37 resources, see <a href="{@docRoot}devices/graphics/arch-vulkan.html">Vulkan
40 <p>To implement Vulkan, a device:</p>
42 <li>Must include the Vulkan Loader (provided by Android) in the build.</li>
43 <li>Must include a Vulkan driver (provided by SoCs such as GPU IHVs) that
45 <a href="https://www.khronos.org/registry/vulkan/specs/1.0-wsi_extensions/xhtml/vkspec.html">Vulkan
46 API</a>. To support Vulkan functionality, the Android device needs capable GPU
50 <p>If a Vulkan driver is available on the device, the device needs to declare
55 <h2 id=vulkan_loader>Vulkan Loader</h2>
56 <p>The primary interface between Vulkan applications and a device's Vulkan
57 driver is the Vulkan loader, which is part of Android Open Source Project (AOSP)
58 (<code>platform/frameworks/native/vulkan</code>) and installed at
59 <code>/system/lib[64]/libvulkan.so</code>. The loader provides the core Vulkan
69 device, applications call the Vulkan functions exported from
83 discovering and loading the driver. Preferred paths for 32-bit and 64-bit Vulkan
88 /vendor/lib/hw/vulkan.&lt;ro.product.platform&gt;.so
89 /vendor/lib64/hw/vulkan.&lt;ro.product.platform&gt;.so
98 <p>In Android 7.0, the Vulkan <code>hw_module_t</code> derivative is trivial;
104 <p>The Vulkan <code>hw_device_t</code> derivative corresponds to a single
114 <p>The Vulkan loader supports enumerating and loading layers that can expose
158 <a href="https://github.com/KhronosGroup/Vulkan-LoaderAndValidationLayers/blob/master/loader/LoaderAndLayerInterface.md">Vulkan
162 <a href="https://github.com/KhronosGroup/Vulkan-LoaderAndValidationLayers/tree/android_layers">KhronosGroup/Vulkan-LoaderAndValidationLayers</a>
307 <p>OEMs can test their Vulkan implementation using CTS, which includes
309 Quality Program (dEQP)</a> tests that exercise the Vulkan Runtime.</p>