aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore4
-rw-r--r--configure.ac24
-rw-r--r--man/Makefile.am58
-rw-r--r--man/drmAvailable.man25
-rw-r--r--man/drmAvailable.xml75
-rw-r--r--man/drmHandleEvent.man45
-rw-r--r--man/drmHandleEvent.xml102
-rw-r--r--man/drmModeGetResources.man79
-rw-r--r--man/drmModeGetResources.xml139
9 files changed, 370 insertions, 181 deletions
diff --git a/.gitignore b/.gitignore
index 28c77c53..1de66bca 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,9 @@
1bsd-core/*/@ 1bsd-core/*/@
2bsd-core/*/machine 2bsd-core/*/machine
3*.1
4*.3
5*.5
6*.7
3*.flags 7*.flags
4*.ko 8*.ko
5*.ko.cmd 9*.ko.cmd
diff --git a/configure.ac b/configure.ac
index 0c19929d..0e6db862 100644
--- a/configure.ac
+++ b/configure.ac
@@ -35,27 +35,6 @@ AM_MAINTAINER_MODE([enable])
35# Enable quiet compiles on automake 1.11. 35# Enable quiet compiles on automake 1.11.
36m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) 36m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
37 37
38if test x$LIB_MAN_SUFFIX = x ; then
39 LIB_MAN_SUFFIX=3
40fi
41if test x$LIB_MAN_DIR = x ; then
42 LIB_MAN_DIR='$(mandir)/man$(LIB_MAN_SUFFIX)'
43fi
44AC_SUBST([LIB_MAN_SUFFIX])
45AC_SUBST([LIB_MAN_DIR])
46
47MAN_SUBSTS="\
48 -e 's|__vendorversion__|\"\$(PACKAGE_STRING)\" |' \
49 -e 's|__projectroot__|\$(prefix)|g' \
50 -e 's|__apploaddir__|\$(appdefaultdir)|g' \
51 -e 's|__appmansuffix__|\$(APP_MAN_SUFFIX)|g' \
52 -e 's|__drivermansuffix__|\$(DRIVER_MAN_SUFFIX)|g' \
53 -e 's|__adminmansuffix__|\$(ADMIN_MAN_SUFFIX)|g' \
54 -e 's|__libmansuffix__|\$(LIB_MAN_SUFFIX)|g' \
55 -e 's|__miscmansuffix__|\$(MISC_MAN_SUFFIX)|g' \
56 -e 's|__filemansuffix__|\$(FILE_MAN_SUFFIX)|g'"
57AC_SUBST([MAN_SUBSTS])
58
59# Check for programs 38# Check for programs
60AC_PROG_CC 39AC_PROG_CC
61 40
@@ -247,6 +226,9 @@ if test "x$HAVE_LIBUDEV" = xyes; then
247fi 226fi
248AM_CONDITIONAL(HAVE_LIBUDEV, [test "x$HAVE_LIBUDEV" = xyes]) 227AM_CONDITIONAL(HAVE_LIBUDEV, [test "x$HAVE_LIBUDEV" = xyes])
249 228
229AC_PATH_PROG(XSLTPROC, xsltproc)
230AM_CONDITIONAL([HAVE_XSLTPROC], [test "x$XSLTPROC" != "x"])
231
250if test "x$INTEL" != "xno" -o "x$RADEON" != "xno" -o "x$NOUVEAU" != "xno" -o "x$OMAP" != "xno"; then 232if test "x$INTEL" != "xno" -o "x$RADEON" != "xno" -o "x$NOUVEAU" != "xno" -o "x$OMAP" != "xno"; then
251 # Check for atomic intrinsics 233 # Check for atomic intrinsics
252 AC_CACHE_CHECK([for native atomic primitives], drm_cv_atomic_primitives, 234 AC_CACHE_CHECK([for native atomic primitives], drm_cv_atomic_primitives,
diff --git a/man/Makefile.am b/man/Makefile.am
index ccd6545c..b93fdef8 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -1,11 +1,47 @@
1libmandir = $(LIB_MAN_DIR) 1#
2libman_PRE = drmAvailable.man \ 2# This generates man-pages out of the Docbook XML files. Simply add your files
3 drmHandleEvent.man \ 3# to the $MANPAGES array. If aliases are created, please add them to the
4 drmModeGetResources.man 4# MANPAGES_ALIASES array so they get installed correctly.
5libman_DATA = $(libman_PRE:man=@LIB_MAN_SUFFIX@) 5#
6EXTRA_DIST = $(libman_PRE) 6
7CLEANFILES = $(libman_DATA) 7MANPAGES = \
8SUFFIXES = .$(LIB_MAN_SUFFIX) .man 8 drmAvailable.3 \
9 9 drmHandleEvent.3 \
10.man.$(LIB_MAN_SUFFIX): 10 drmModeGetResources.3
11 $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@ 11MANPAGES_ALIASES =
12
13XML_FILES = \
14 ${patsubst %.1,%.xml,${patsubst %.3,%.xml,${patsubst %.5,%.xml,${patsubs %.7,%.xml,$(MANPAGES)}}}}
15CLEANFILES =
16EXTRA_DIST =
17man_MANS =
18
19if HAVE_XSLTPROC
20
21CLEANFILES += $(MANPAGES) $(MANPAGES_ALIASES)
22EXTRA_DIST += $(MANPAGES) $(MANPAGES_ALIASES) $(XML_FILES)
23man_MANS += $(MANPAGES) $(MANPAGES_ALIASES)
24
25XSLTPROC_FLAGS = \
26 --stringparam man.authors.section.enabled 0 \
27 --stringparam man.copyright.section.enabled 0 \
28 --stringparam funcsynopsis.style ansi \
29 --stringparam man.output.quietly 1
30
31XSLTPROC_PROCESS_MAN = \
32 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
33 $(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
34
35%.1: %.xml
36 $(XSLTPROC_PROCESS_MAN)
37
38%.3: %.xml
39 $(XSLTPROC_PROCESS_MAN)
40
41%.5: %.xml
42 $(XSLTPROC_PROCESS_MAN)
43
44%.7: %.xml
45 $(XSLTPROC_PROCESS_MAN)
46
47endif # HAVE_XSLTPROC
diff --git a/man/drmAvailable.man b/man/drmAvailable.man
deleted file mode 100644
index e1bb8dc8..00000000
--- a/man/drmAvailable.man
+++ /dev/null
@@ -1,25 +0,0 @@
1.\" shorthand for double quote that works everywhere.
2.ds q \N'34'
3.TH drmAvailable __drivermansuffix__ __vendorversion__
4.SH NAME
5drmAvailable \- determine whether a DRM kernel driver has been loaded
6.SH SYNOPSIS
7.nf
8.B "#include <xf86drm.h>"
9
10.B "int drmAvailable(void);"
11.fi
12.SH DESCRIPTION
13This function allows the caller to determine whether a kernel DRM driver is
14loaded.
15
16.SH RETURN VALUE
17If a DRM driver is currently loaded, this function returns 1. Otherwise 0
18is returned.
19
20.SH REPORTING BUGS
21Bugs in this function should be reported to http://bugs.freedesktop.org under
22the "Mesa" product, with "Other" or "libdrm" as the component.
23
24.SH "SEE ALSO"
25drmOpen(__libmansuffix__)
diff --git a/man/drmAvailable.xml b/man/drmAvailable.xml
new file mode 100644
index 00000000..55bef94a
--- /dev/null
+++ b/man/drmAvailable.xml
@@ -0,0 +1,75 @@
1<?xml version='1.0'?> <!--*-nxml-*-->
2<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4
5<!--
6 Written 2012 by David Herrmann <dh.herrmann@googlemail.com>
7 Dedicated to the Public Domain
8-->
9
10<refentry id="drmAvailable">
11 <refentryinfo>
12 <title>Direct Rendering Manager</title>
13 <productname>libdrm</productname>
14 <date>September 2012</date>
15 <authorgroup>
16 <author>
17 <contrib>Developer</contrib>
18 <firstname>David</firstname>
19 <surname>Herrmann</surname>
20 <email>dh.herrmann@googlemail.com</email>
21 </author>
22 </authorgroup>
23 </refentryinfo>
24
25 <refmeta>
26 <refentrytitle>drmAvailable</refentrytitle>
27 <manvolnum>3</manvolnum>
28 </refmeta>
29
30 <refnamediv>
31 <refname>drmAvailable</refname>
32 <refpurpose>determine whether a DRM kernel driver has been
33 loaded</refpurpose>
34 </refnamediv>
35
36 <refsynopsisdiv>
37 <funcsynopsis>
38
39 <funcsynopsisinfo>#include &lt;xf86drm.h&gt;</funcsynopsisinfo>
40
41 <funcprototype>
42 <funcdef>int <function>drmAvailable</function></funcdef>
43 <paramdef>void</paramdef>
44 </funcprototype>
45
46 </funcsynopsis>
47 </refsynopsisdiv>
48
49 <refsect1>
50 <title>Description</title>
51 <para><function>drmAvailable</function> allows the caller to determine
52 whether a kernel DRM driver is loaded.</para>
53 </refsect1>
54
55 <refsect1>
56 <title>Return Value</title>
57 <para><function>drmAvailable</function> returns 1 if a DRM driver is
58 currently loaded. Otherwise 0 is returned.</para>
59 </refsect1>
60
61 <refsect1>
62 <title>Reporting Bugs</title>
63 <para>Bugs in this function should be reported to
64 http://bugs.freedesktop.org under the "Mesa" product, with "Other" or
65 "libdrm" as the component.</para>
66 </refsect1>
67
68 <refsect1>
69 <title>See Also</title>
70 <para>
71 <citerefentry><refentrytitle>drm</refentrytitle><manvolnum>7</manvolnum></citerefentry>,
72 <citerefentry><refentrytitle>drmOpen</refentrytitle><manvolnum>3</manvolnum></citerefentry>
73 </para>
74 </refsect1>
75</refentry>
diff --git a/man/drmHandleEvent.man b/man/drmHandleEvent.man
deleted file mode 100644
index b98f417d..00000000
--- a/man/drmHandleEvent.man
+++ /dev/null
@@ -1,45 +0,0 @@
1.\" shorthand for double quote that works everywhere.
2.ds q \N'34'
3.TH drmHandleEvent __drivermansuffix__ __vendorversion__
4.SH NAME
5drmHandleEvent \- read and process pending DRM events
6.SH SYNOPSIS
7.nf
8.B "#include <xf86drm.h>"
9
10.B "typedef struct _drmEventContext {"
11.BI " int version;"
12.BI " void (*vblank_handler)(int fd,"
13.BI " unsigned int sequence,"
14.BI " unsigned int tv_sec,"
15.BI " unsigned int tv_usec,"
16.BI " void *user_data);"
17.BI " void (*page_flip_handler)(int fd,"
18.BI " unsigned int sequence,"
19.BI " unsigned int tv_sec,"
20.BI " unsigned int tv_usec,"
21.BI " void *user_data);"
22.B "} drmEventContext, *drmEventContextPtr;"
23
24.B "int drmHandleEvent(int fd, drmEventContextPtr evctx);"
25.fi
26.SH DESCRIPTION
27This function will process outstanding DRM events on
28.I fd
29, which must be an open DRM device. This function should be called after
30the DRM file descriptor has polled readable; it will read the events and
31use the passed-in
32.I evctx
33structure to call function pointers with the parameters noted above.
34
35.SH RETURN VALUE
36Returns 0 on success, or if there is no data to read from the file descriptor.
37Returns -1 if the read on the file descriptor fails or returns less than a
38full event record.
39
40.SH REPORTING BUGS
41Bugs in this function should be reported to http://bugs.freedesktop.org under
42the "Mesa" product, with "Other" or "libdrm" as the component.
43
44.SH "SEE ALSO"
45drmModePageFlip(__libmansuffix__), drmWaitVBlank(__libmansuffix__)
diff --git a/man/drmHandleEvent.xml b/man/drmHandleEvent.xml
new file mode 100644
index 00000000..b1006e51
--- /dev/null
+++ b/man/drmHandleEvent.xml
@@ -0,0 +1,102 @@
1<?xml version='1.0'?> <!--*-nxml-*-->
2<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4
5<!--
6 Written 2012 by David Herrmann <dh.herrmann@googlemail.com>
7 Dedicated to the Public Domain
8-->
9
10<refentry id="drmHandleEvent">
11 <refentryinfo>
12 <title>Direct Rendering Manager</title>
13 <productname>libdrm</productname>
14 <date>September 2012</date>
15 <authorgroup>
16 <author>
17 <contrib>Developer</contrib>
18 <firstname>David</firstname>
19 <surname>Herrmann</surname>
20 <email>dh.herrmann@googlemail.com</email>
21 </author>
22 </authorgroup>
23 </refentryinfo>
24
25 <refmeta>
26 <refentrytitle>drmHandleEvent</refentrytitle>
27 <manvolnum>3</manvolnum>
28 </refmeta>
29
30 <refnamediv>
31 <refname>drmHandleEvent</refname>
32 <refpurpose>read and process pending DRM events</refpurpose>
33 </refnamediv>
34
35 <refsynopsisdiv>
36
37 <funcsynopsis>
38 <funcsynopsisinfo>#include &lt;xf86drm.h&gt;</funcsynopsisinfo>
39
40 <funcprototype>
41 <funcdef>int <function>drmHandleEvent</function></funcdef>
42 <paramdef>int <parameter>fd</parameter></paramdef>
43 <paramdef>drmEventContextPtr <parameter>evctx</parameter></paramdef>
44 </funcprototype>
45 </funcsynopsis>
46
47 </refsynopsisdiv>
48
49 <refsect1>
50 <title>Description</title>
51 <para><function>drmHandleEvent</function> processes outstanding DRM events
52 on the DRM file-descriptor passed as <parameter>fd</parameter>. This
53 function should be called after the DRM file-descriptor has polled
54 readable; it will read the events and use the passed-in
55 <parameter>evctx</parameter> structure to call function pointers
56 with the parameters noted below:
57
58<programlisting>
59typedef struct _drmEventContext {
60 int version;
61 void (*vblank_handler) (int fd,
62 unsigned int sequence,
63 unsigned int tv_sec,
64 unsigned int tv_usec,
65 void *user_data)
66 void (*page_flip_handler) (int fd,
67 unsigned int sequence,
68 unsigned int tv_sec,
69 unsigned int tv_usec,
70 void *user_data)
71} drmEventContext, *drmEventContextPtr;
72</programlisting>
73
74 </para>
75
76 </refsect1>
77
78 <refsect1>
79 <title>Return Value</title>
80 <para><function>drmHandleEvent</function> returns <literal>0</literal> on
81 success, or if there is no data to read from the file-descriptor.
82 Returns <literal>-1</literal> if the read on the file-descriptor fails
83 or returns less than a full event record.</para>
84 </refsect1>
85
86 <refsect1>
87 <title>Reporting Bugs</title>
88 <para>Bugs in this function should be reported to
89 http://bugs.freedesktop.org under the "Mesa" product, with "Other" or
90 "libdrm" as the component.</para>
91 </refsect1>
92
93 <refsect1>
94 <title>See Also</title>
95 <para>
96 <citerefentry><refentrytitle>drm</refentrytitle><manvolnum>7</manvolnum></citerefentry>,
97 <citerefentry><refentrytitle>drm-kms</refentrytitle><manvolnum>7</manvolnum></citerefentry>,
98 <citerefentry><refentrytitle>drmModePageFlip</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
99 <citerefentry><refentrytitle>drmWaitVBlank</refentrytitle><manvolnum>3</manvolnum></citerefentry>
100 </para>
101 </refsect1>
102</refentry>
diff --git a/man/drmModeGetResources.man b/man/drmModeGetResources.man
deleted file mode 100644
index 369bf7d8..00000000
--- a/man/drmModeGetResources.man
+++ /dev/null
@@ -1,79 +0,0 @@
1.\" shorthand for double quote that works everywhere.
2.ds q \N'34'
3.TH drmModeGetResources __drivermansuffix__ __vendorversion__
4.SH NAME
5drmModeGetResources \- retrieve current display configuration information
6.SH SYNOPSIS
7.nf
8.B "#include <xf86drmMode.h>"
9
10.BI "typedef struct _drmModeRes {"
11
12.BI " int count_fbs;"
13.BI " uint32_t *fbs;"
14
15.BI " int count_crtcs;"
16.BI " uint32_t *crtcs;"
17
18.BI " int count_connectors;"
19.BI " uint32_t *connectors;"
20
21.BI " int count_encoders;"
22.BI " uint32_t *encoders;"
23
24.BI " uint32_t min_width, max_width;"
25.BI " uint32_t min_height, max_height;"
26.B "} drmModeRes, *drmModeResPtr;"
27
28.B "drmModeResPtr drmModeGetResources(int fd);"
29.fi
30.SH DESCRIPTION
31This function will allocate, populate, and return a drmModeRes structure
32containing information about the current display configuration.
33
34The
35.I count_fbs
36and
37.I fbs
38fields indicate the number of currently allocated framebuffer objects (i.e.
39objects that can be attached to a given CRTC or sprite for display).
40
41The
42.I count_crtcs
43and
44.I crtcs
45fields list the available CRTCs in the configuration. A CRTC is simply
46an object that can scan out a framebuffer to a display sink, and contains
47mode timing and relative position information. CRTCs drive encoders, which
48are responsible for converting the pixel stream into a specific display
49protocol (e.g. MIPI or HDMI).
50
51The
52.I count_connectors
53and
54.I connectors
55fields list the available physical connectors on the system. Note that
56some of these may not be exposed from the chassis (e.g. LVDS or eDP).
57Connectors are attached to encoders and contain information about the
58attached display sink (e.g. width and height in mm, subpixel ordering, and
59various other properties).
60
61The
62.I count_encoders
63and
64.I encoders
65fields list the available encoders on the device. Each encoder may be
66associated with a CRTC, and may be used to drive a particular encoder.
67
68The min and max height fields indicate the maximum size of a framebuffer
69for this device (i.e. the scanout size limit).
70
71.SH RETURN VALUE
72Returns a drmModeRes structure pointer on success, 0 on failure.
73
74.SH REPORTING BUGS
75Bugs in this function should be reported to http://bugs.freedesktop.org under
76the "Mesa" product, with "Other" or "libdrm" as the component.
77
78.SH "SEE ALSO"
79drmModeGetFB(__libmansuffix__), drmModeAddFB(__libmansuffix__), drmModeAddFB2(__libmansuffix__), drmModeRmFB(__libmansuffix__), drmModeDirtyFB(__libmansuffix__), drmModeGetCrtc(__libmansuffix__), drmModeSetCrtc(__libmansuffix__), drmModeGetEncoder(__libmansuffix__), drmModeGetConnector(__libmansuffix__)
diff --git a/man/drmModeGetResources.xml b/man/drmModeGetResources.xml
new file mode 100644
index 00000000..2f5e8c2c
--- /dev/null
+++ b/man/drmModeGetResources.xml
@@ -0,0 +1,139 @@
1<?xml version='1.0'?> <!--*-nxml-*-->
2<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4
5<!--
6 Written 2012 by David Herrmann <dh.herrmann@googlemail.com>
7 Dedicated to the Public Domain
8-->
9
10<refentry id="drmModeGetResources">
11 <refentryinfo>
12 <title>Direct Rendering Manager</title>
13 <productname>libdrm</productname>
14 <date>September 2012</date>
15 <authorgroup>
16 <author>
17 <contrib>Developer</contrib>
18 <firstname>David</firstname>
19 <surname>Herrmann</surname>
20 <email>dh.herrmann@googlemail.com</email>
21 </author>
22 </authorgroup>
23 </refentryinfo>
24
25 <refmeta>
26 <refentrytitle>drmModeGetResources</refentrytitle>
27 <manvolnum>3</manvolnum>
28 </refmeta>
29
30 <refnamediv>
31 <refname>drmModeGetResources</refname>
32 <refpurpose>retrieve current display configuration information</refpurpose>
33 </refnamediv>
34
35 <refsynopsisdiv>
36
37 <funcsynopsis>
38 <funcsynopsisinfo>#include &lt;xf86drm.h&gt;</funcsynopsisinfo>
39 <funcsynopsisinfo>#include &lt;xf86drmMode.h&gt;</funcsynopsisinfo>
40
41 <funcprototype>
42 <funcdef>drmModeResPtr <function>drmModeGetResources</function></funcdef>
43 <paramdef>int <parameter>fd</parameter></paramdef>
44 </funcprototype>
45 </funcsynopsis>
46
47 </refsynopsisdiv>
48
49 <refsect1>
50 <title>Description</title>
51 <para><function>drmModeGetResources</function> allocates, populates, and
52 returns a <structname>drmModeRes</structname> structure containing
53 information about the current display configuration. The structure
54 contains the following fields:
55
56<programlisting>
57typedef struct _drmModeRes {
58 int count_fbs;
59 uint32_t *fbs;
60
61 int count_crtcs;
62 uint32_t *crtcs;
63
64 int count_connectors;
65 uint32_t *connectors;
66
67 int count_encoders;
68 uint32_t *encoders;
69
70 uint32_t min_width, max_width;
71 uint32_t min_height, max_height;
72} drmModeRes, *drmModeResPtr;
73</programlisting>
74
75 </para>
76
77 <para>The <structfield>count_fbs</structfield> and
78 <structfield>fbs</structfield> fields indicate the number of currently
79 allocated framebuffer objects (i.e., objects that can be attached to
80 a given CRTC or sprite for display).</para>
81
82 <para>The <structfield>count_crtcs</structfield> and
83 <structfield>crtcs</structfield> fields list the available CRTCs in
84 the configuration. A CRTC is simply an object that can scan out a
85 framebuffer to a display sink, and contains mode timing and relative
86 position information. CRTCs drive encoders, which are responsible for
87 converting the pixel stream into a specific display protocol (e.g.,
88 MIPI or HDMI).</para>
89
90 <para>The <structfield>count_connectors</structfield> and
91 <structfield>connectors</structfield> fields list the available
92 physical connectors on the system. Note that some of these may not be
93 exposed from the chassis (e.g., LVDS or eDP). Connectors are attached
94 to encoders and contain information about the attached display sink
95 (e.g., width and height in mm, subpixel ordering, and various other
96 properties).</para>
97
98 <para>The <structfield>count_encoders</structfield> and
99 <structfield>encoders</structfield> fields list the available encoders
100 on the device. Each encoder may be associated with a CRTC, and may be
101 used to drive a particular encoder.</para>
102
103 <para>The <structfield>min*</structfield> and
104 <structfield>max*</structfield> fields indicate the maximum size of a
105 framebuffer for this device (i.e., the scanout size limit).</para>
106 </refsect1>
107
108 <refsect1>
109 <title>Return Value</title>
110 <para><function>drmModeGetResources</function> returns a drmModeRes
111 structure pointer on success, <literal>NULL</literal> on failure. The
112 returned structure must be freed with
113 <citerefentry><refentrytitle>drmModeFreeResources</refentrytitle><manvolnum>3</manvolnum></citerefentry>.</para>
114 </refsect1>
115
116 <refsect1>
117 <title>Reporting Bugs</title>
118 <para>Bugs in this function should be reported to
119 http://bugs.freedesktop.org under the "Mesa" product, with "Other" or
120 "libdrm" as the component.</para>
121 </refsect1>
122
123 <refsect1>
124 <title>See Also</title>
125 <para>
126 <citerefentry><refentrytitle>drm</refentrytitle><manvolnum>7</manvolnum></citerefentry>,
127 <citerefentry><refentrytitle>drm-kms</refentrytitle><manvolnum>7</manvolnum></citerefentry>,
128 <citerefentry><refentrytitle>drmModeGetFB</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
129 <citerefentry><refentrytitle>drmModeAddFB</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
130 <citerefentry><refentrytitle>drmModeAddFB2</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
131 <citerefentry><refentrytitle>drmModeRmFB</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
132 <citerefentry><refentrytitle>drmModeDirtyFB</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
133 <citerefentry><refentrytitle>drmModeGetCrtc</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
134 <citerefentry><refentrytitle>drmModeSetCrtc</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
135 <citerefentry><refentrytitle>drmModeGetEncoder</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
136 <citerefentry><refentrytitle>drmModeGetConnector</refentrytitle><manvolnum>3</manvolnum></citerefentry>
137 </para>
138 </refsect1>
139</refentry>