<div dir="ltr"><span style="font-size:12.8px">From: Quentin Liu <</span><a href="mailto:Quentin.Liu.0415@gmail.com" style="font-size:12.8px">Quentin.Liu.0415@gmail.com</a><span style="font-size:12.8px">></span><br style="font-size:12.8px"><br style="font-size:12.8px"><span style="font-size:12.8px">The type and default values of certain drirc options are changed, namely,</span><br style="font-size:12.8px"><span style="font-size:12.8px">those semantically boolean options such as pp_celshade.</span><br style="font-size:12.8px"><span style="font-size:12.8px">---</span><br style="font-size:12.8px"><span style="font-size:12.8px"> src/gallium/auxiliary/pipe-</span><wbr style="font-size:12.8px"><span style="font-size:12.8px">loader/driinfo_gallium.h | 8 ++++----</span><br style="font-size:12.8px"><span style="font-size:12.8px"> src/util/xmlpool/t_options.h                        | 8 ++++----</span><br style="font-size:12.8px"><span style="font-size:12.8px"> 2 files changed, 8 insertions(+), 8 deletions(-)</span><br style="font-size:12.8px"><br style="font-size:12.8px"><span style="font-size:12.8px">diff --git a/src/gallium/auxiliary/pipe-</span><wbr style="font-size:12.8px"><span style="font-size:12.8px">loader/driinfo_gallium.h b/src/gallium/auxiliary/pipe-</span><wbr style="font-size:12.8px"><span style="font-size:12.8px">loader/driinfo_gallium.h</span><br style="font-size:12.8px"><span style="font-size:12.8px">index 48a57c9..2327446 100644</span><br style="font-size:12.8px"><span style="font-size:12.8px">--- a/src/gallium/auxiliary/pipe-</span><wbr style="font-size:12.8px"><span style="font-size:12.8px">loader/driinfo_gallium.h</span><br style="font-size:12.8px"><span style="font-size:12.8px">+++ b/src/gallium/auxiliary/pipe-</span><wbr style="font-size:12.8px"><span style="font-size:12.8px">loader/driinfo_gallium.h</span><br style="font-size:12.8px"><span style="font-size:12.8px">@@ -8,10 +8,10 @@ DRI_CONF_SECTION_END</span><br style="font-size:12.8px"><br style="font-size:12.8px"><span style="font-size:12.8px"> DRI_CONF_SECTION_QUALITY</span><br style="font-size:12.8px"><span style="font-size:12.8px">    DRI_CONF_FORCE_S3TC_ENABLE("</span><wbr style="font-size:12.8px"><span style="font-size:12.8px">false")</span><br style="font-size:12.8px"><span style="font-size:12.8px">-   DRI_CONF_PP_CELSHADE(0)</span><br style="font-size:12.8px"><span style="font-size:12.8px">-   DRI_CONF_PP_NORED(0)</span><br style="font-size:12.8px"><span style="font-size:12.8px">-   DRI_CONF_PP_NOGREEN(0)</span><br style="font-size:12.8px"><span style="font-size:12.8px">-   DRI_CONF_PP_NOBLUE(0)</span><br style="font-size:12.8px"><span style="font-size:12.8px">+   DRI_CONF_PP_CELSHADE("false")</span><br style="font-size:12.8px"><span style="font-size:12.8px">+   DRI_CONF_PP_NORED("false")</span><br style="font-size:12.8px"><span style="font-size:12.8px">+   DRI_CONF_PP_NOGREEN("false")</span><br style="font-size:12.8px"><span style="font-size:12.8px">+   DRI_CONF_PP_NOBLUE("false")</span><br style="font-size:12.8px"><span style="font-size:12.8px">    DRI_CONF_PP_JIMENEZMLAA(0, 0, 32)</span><br style="font-size:12.8px"><span style="font-size:12.8px">    DRI_CONF_PP_JIMENEZMLAA_COLOR(</span><wbr style="font-size:12.8px"><span style="font-size:12.8px">0, 0, 32)</span><br style="font-size:12.8px"><span style="font-size:12.8px"> DRI_CONF_SECTION_END</span><br style="font-size:12.8px"><span style="font-size:12.8px">diff --git a/src/util/xmlpool/t_options.h b/src/util/xmlpool/t_options.h</span><br style="font-size:12.8px"><span style="font-size:12.8px">index d3f31fc..4ea3615 100644</span><br style="font-size:12.8px"><span style="font-size:12.8px">--- a/src/util/xmlpool/t_options.h</span><br style="font-size:12.8px"><span style="font-size:12.8px">+++ b/src/util/xmlpool/t_options.h</span><br style="font-size:12.8px"><span style="font-size:12.8px">@@ -220,22 +220,22 @@ DRI_CONF_OPT_BEGIN_B(float_</span><wbr style="font-size:12.8px"><span style="font-size:12.8px">depth, def) \</span><br style="font-size:12.8px"><span style="font-size:12.8px"> DRI_CONF_OPT_END</span><br style="font-size:12.8px"><br style="font-size:12.8px"><span style="font-size:12.8px"> #define DRI_CONF_PP_CELSHADE(def) \</span><br style="font-size:12.8px"><span style="font-size:12.8px">-DRI_CONF_OPT_BEGIN_V(pp_</span><wbr style="font-size:12.8px"><span style="font-size:12.8px">celshade,enum,def,"0:1") \</span><br style="font-size:12.8px"><span style="font-size:12.8px">+DRI_CONF_OPT_BEGIN_B(pp_</span><wbr style="font-size:12.8px"><span style="font-size:12.8px">celshade,def) \</span><br style="font-size:12.8px"><span style="font-size:12.8px">         DRI_CONF_DESC(en,gettext("A post-processing filter to cel-shade the output")) \</span><br style="font-size:12.8px"><span style="font-size:12.8px"> DRI_CONF_OPT_END</span><br style="font-size:12.8px"><br style="font-size:12.8px"><span style="font-size:12.8px"> #define DRI_CONF_PP_NORED(def) \</span><br style="font-size:12.8px"><span style="font-size:12.8px">-DRI_CONF_OPT_BEGIN_V(pp_</span><wbr style="font-size:12.8px"><span style="font-size:12.8px">nored,enum,def,"0:1") \</span><br style="font-size:12.8px"><span style="font-size:12.8px">+DRI_CONF_OPT_BEGIN_B(pp_</span><wbr style="font-size:12.8px"><span style="font-size:12.8px">nored,def) \</span><br style="font-size:12.8px"><span style="font-size:12.8px">         DRI_CONF_DESC(en,gettext("A post-processing filter to remove the red channel")) \</span><br style="font-size:12.8px"><span style="font-size:12.8px"> DRI_CONF_OPT_END</span><br style="font-size:12.8px"><br style="font-size:12.8px"><span style="font-size:12.8px"> #define DRI_CONF_PP_NOGREEN(def) \</span><br style="font-size:12.8px"><span style="font-size:12.8px">-DRI_CONF_OPT_BEGIN_V(pp_</span><wbr style="font-size:12.8px"><span style="font-size:12.8px">nogreen,enum,def,"0:1") \</span><br style="font-size:12.8px"><span style="font-size:12.8px">+DRI_CONF_OPT_BEGIN_B(pp_</span><wbr style="font-size:12.8px"><span style="font-size:12.8px">nogreen,def) \</span><br style="font-size:12.8px"><span style="font-size:12.8px">         DRI_CONF_DESC(en,gettext("A post-processing filter to remove the green channel")) \</span><br style="font-size:12.8px"><span style="font-size:12.8px"> DRI_CONF_OPT_END</span><br style="font-size:12.8px"><br style="font-size:12.8px"><span style="font-size:12.8px"> #define DRI_CONF_PP_NOBLUE(def) \</span><br style="font-size:12.8px"><span style="font-size:12.8px">-DRI_CONF_OPT_BEGIN_V(pp_</span><wbr style="font-size:12.8px"><span style="font-size:12.8px">noblue,enum,def,"0:1") \</span><br style="font-size:12.8px"><span style="font-size:12.8px">+DRI_CONF_OPT_BEGIN_B(pp_</span><wbr style="font-size:12.8px"><span style="font-size:12.8px">noblue,def) \</span><br style="font-size:12.8px"><span style="font-size:12.8px">         DRI_CONF_DESC(en,gettext("A post-processing filter to remove the blue channel")) \</span><br style="font-size:12.8px"><span style="font-size:12.8px"> DRI_CONF_OPT_END</span><div class="gmail-yj6qo gmail-ajU" style="margin:2px 0px 0px;font-size:12.8px"></div><div><span style="font-size:12.8px"><br></span></div><div><div class="gmail-yj6qo gmail-ajU" style="margin:2px 0px 0px;font-size:12.8px"><div id="gmail-:1jm" class="gmail-ajR" tabindex="0"><img class="gmail-ajT" src="https://ssl.gstatic.com/ui/v1/icons/mail/images/cleardot.gif"></div></div><div class="gmail-adL" style="font-size:12.8px"><br></div><span class="gmail-HOEnZb gmail-adL" style="font-size:12.8px"><font color="#888888"><br>--<br>2.7.4</font></span><span style="font-size:12.8px"><br></span></div></div>