<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Word 12 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:SimSun;
        panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:SimSun;
        panose-1:2 1 6 0 3 1 1 1 1 1;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        text-align:justify;
        text-justify:inter-ideograph;
        font-size:10.5pt;
        font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;}
/* Page Definitions */
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:72.0pt 90.0pt 72.0pt 90.0pt;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="ZH-CN" link="blue" vlink="purple" style="text-justify-trim:punctuation">
<div class="WordSection1">
<p class="MsoNormal"><span lang="EN-US">Besides graphics, other modules (like video/camera) also depends on drm for buffer management.<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">So wayland drm protocol header file should be exported.<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">See Benjamin&#8217;s work to enable libva for wayland:
<a href="http://cgit.freedesktop.org/~bnf/libva/log/?h=wayland">http://cgit.freedesktop.org/~bnf/libva/log/?h=wayland</a> (I ported it to latest wayland api)<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US"><o:p>&nbsp;</o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">With this patch, we can avoid the hack to copy wayland-drm.xml from mesa to libva.<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US"><o:p>&nbsp;</o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">src/egl/wayland/wayland-drm/Makefile.am |&nbsp;&nbsp;&nbsp; 3 &#43;&#43;-<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">1 files changed, 2 insertions(&#43;), 1 deletions(-)<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US"><o:p>&nbsp;</o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">diff --git a/src/egl/wayland/wayland-drm/Makefile.am b/src/egl/wayland/wayland-drm/Makefile.am<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">index cf15eda..2e68ac4 100644<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">--- a/src/egl/wayland/wayland-drm/Makefile.am<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">&#43;&#43;&#43; b/src/egl/wayland/wayland-drm/Makefile.am<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">@@ -7,8 &#43;7,9 @@ noinst_LTLIBRARIES = libwayland-drm.la<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">libwayland_drm_la_SOURCES = wayland-drm.c wayland-drm-protocol.c<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">noinst_HEADERS = wayland-drm.h<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US"><o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">&#43;include_HEADERS = wayland-drm-client-protocol.h<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">&#43;<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">BUILT_SOURCES = wayland-drm-protocol.c \<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; wayland-drm-client-protocol.h \<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; wayland-drm-server-protocol.h<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">CLEANFILES = $(BUILT_SOURCES)<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US"><o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">-- <o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">1.7.5.4<o:p></o:p></span></p>
</div>
</body>
</html>