source: x/lib/vulkan-loader.xml@ cb1ac77

12.1 ken/TL2024 lazarus plabs/newcss python3.11 rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18
Last change on this file since cb1ac77 was cb1ac77, checked in by Douglas R. Reno <renodr@…>, 6 months ago

Add the Vulkan loader to the book.

  • Property mode set to 100644
File size: 4.3 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY vulkan-loader-download-http "https://github.com/KhronosGroup/Vulkan-Loader/archive/refs/tags/v&vulkan-loader-version;/Vulkan-Loader-&vulkan-loader-version;.tar.gz">
8 <!ENTITY vulkan-loader-download-ftp " ">
9 <!ENTITY vulkan-loader-md5sum "6903f9d285afcd1a167ec7c46cbabd49">
10 <!ENTITY vulkan-loader-size "1.6 MB">
11 <!ENTITY vulkan-loader-buildsize "9.8 MB">
12 <!ENTITY vulkan-loader-time "0.1 SBU">
13]>
14
15<sect1 id="vulkan-loader" xreflabel="Vulkan-loader-&vulkan-loader-version;">
16 <?dbhtml filename="vulkan-loader.html"?>
17
18 <title>Vulkan-loader-&vulkan-loader-version;</title>
19
20 <indexterm zone="vulkan-loader">
21 <primary sortas="a-vulkan-loader">Vulkan-loader</primary>
22 </indexterm>
23
24 <sect2 role="package">
25 <title>Introduction to Vulkan-loader</title>
26
27 <para>
28 The <application>Vulkan-loader</application> package contains a library
29 which provides the Vulkan API and provides core support for graphics
30 drivers for Vulkan.
31 </para>
32
33 &lfs120_checked;
34
35 <bridgehead renderas="sect3">Package Information</bridgehead>
36 <itemizedlist spacing="compact">
37 <listitem>
38 <para>
39 Download (HTTP): <ulink url="&vulkan-loader-download-http;"/>
40 </para>
41 </listitem>
42 <listitem>
43 <para>
44 Download (FTP): <ulink url="&vulkan-loader-download-ftp;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download MD5 sum: &vulkan-loader-md5sum;
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download size: &vulkan-loader-size;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Estimated disk space required: &vulkan-loader-buildsize;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated build time: &vulkan-loader-time;
65 </para>
66 </listitem>
67 </itemizedlist>
68
69 <bridgehead renderas="sect3">Vulkan-loader Dependencies</bridgehead>
70
71 <bridgehead renderas="sect4">Required</bridgehead>
72 <para role="required">
73 <xref linkend="cmake"/>,
74 <xref linkend="lxml"/>,
75 <xref linkend="vulkan-headers"/>,
76 <xref linkend="wayland"/>, and
77 <xref linkend="xorg7-lib"/>
78 </para>
79
80 </sect2>
81
82 <sect2 role="installation">
83 <title>Installation of Vulkan-loader</title>
84
85 <para>
86 Install <application>Vulkan-loader</application> by running the following
87 commands:
88 </para>
89
90<screen><userinput>mkdir build &amp;&amp;
91cd build &amp;&amp;
92
93cmake -DCMAKE_INSTALL_PREFIX=/usr \
94 -DCMAKE_BUILD_TYPE=Release \
95 -DCMAKE_SKIP_RPATH=TRUE \
96 -G Ninja .. &amp;&amp;
97ninja</userinput></screen>
98
99 <para>
100 This package does not come with a working test suite.
101 <!-- To run the tests, we need to follow a complex process to download a
102 customized copy of googletest.-->
103 </para>
104
105 <para>
106 Now, as the <systemitem class="username">root</systemitem> user:
107 </para>
108
109<screen role="root"><userinput>ninja install</userinput></screen>
110
111 </sect2>
112
113 <sect2 role="content">
114 <title>Contents</title>
115
116 <segmentedlist>
117 <segtitle>Installed Programs</segtitle>
118 <segtitle>Installed Libraries</segtitle>
119 <segtitle>Installed Directories</segtitle>
120
121 <seglistitem>
122 <seg>
123 None
124 </seg>
125 <seg>
126 libvulkan.so
127 </seg>
128 <seg>
129 /usr/lib/cmake/VulkanLoader
130 </seg>
131 </seglistitem>
132 </segmentedlist>
133
134 <variablelist>
135 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
136 <?dbfo list-presentation="list"?>
137 <?dbhtml list-presentation="table"?>
138
139 <varlistentry id="libvulkan">
140 <term><filename class="libraryfile">libvulkan.so</filename></term>
141 <listitem>
142 <para>
143 provides the Vulkan API and core support for graphics drivers
144 </para>
145 <indexterm zone="vulkan-loader libvulkan">
146 <primary sortas="c-libvulkan">libvulkan.so</primary>
147 </indexterm>
148 </listitem>
149 </varlistentry>
150 </variablelist>
151 </sect2>
152</sect1>
Note: See TracBrowser for help on using the repository browser.