<div dir="ltr">On Sun, Aug 14, 2016 at 11:09 AM, Ilia Mirkin <span dir="ltr"><<a href="mailto:imirkin@alum.mit.edu" target="_blank">imirkin@alum.mit.edu</a>></span> wrote:<br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Signed-off-by: Ilia Mirkin <<a href="mailto:imirkin@alum.mit.edu">imirkin@alum.mit.edu</a>><br>
Cc: "11.2 12.0" <<a href="mailto:mesa-stable@lists.freedesktop.org">mesa-stable@lists.<wbr>freedesktop.org</a>><br>
---<br>
 src/gallium/auxiliary/<wbr>Makefile.sources  |  3 +-<br>
 src/gallium/auxiliary/util/u_<wbr>viewport.h | 59 ++++++++++++++++++++++++++++++<wbr>+++<br>
 2 files changed, 61 insertions(+), 1 deletion(-)<br>
 create mode 100644 src/gallium/auxiliary/util/u_<wbr>viewport.h<br>
<br>
diff --git a/src/gallium/auxiliary/<wbr>Makefile.sources b/src/gallium/auxiliary/<wbr>Makefile.sources<br>
index 586f057..2a4919b 100644<br>
--- a/src/gallium/auxiliary/<wbr>Makefile.sources<br>
+++ b/src/gallium/auxiliary/<wbr>Makefile.sources<br>
@@ -309,7 +309,8 @@ C_SOURCES := \<br>
        util/u_upload_mgr.h \<br>
        util/u_vbuf.c \<br>
        util/u_vbuf.h \<br>
-       util/u_video.h<br>
+       util/u_video.h \<br>
+       util/u_viewport.h<br>
<br>
 NIR_SOURCES := \<br>
        nir/tgsi_to_nir.c \<br>
diff --git a/src/gallium/auxiliary/util/<wbr>u_viewport.h b/src/gallium/auxiliary/util/<wbr>u_viewport.h<br>
new file mode 100644<br>
index 0000000..a731b34<br>
--- /dev/null<br>
+++ b/src/gallium/auxiliary/util/<wbr>u_viewport.h<br>
@@ -0,0 +1,59 @@<br>
+/****************************<wbr>******************************<wbr>****************<br>
+ *<br>
+ * Copyright 2016 Ilia Mirkin.<br>
+ * All Rights Reserved.<br>
+ *<br>
+ * Permission is hereby granted, free of charge, to any person obtaining a<br>
+ * copy of this software and associated documentation files (the<br>
+ * "Software"), to deal in the Software without restriction, including<br>
+ * without limitation the rights to use, copy, modify, merge, publish,<br>
+ * distribute, sub license, and/or sell copies of the Software, and to<br>
+ * permit persons to whom the Software is furnished to do so, subject to<br>
+ * the following conditions:<br>
+ *<br>
+ * The above copyright notice and this permission notice (including the<br>
+ * next paragraph) shall be included in all copies or substantial portions<br>
+ * of the Software.<br>
+ *<br>
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS<br>
+ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF<br>
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.<br>
+ * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR<br>
+ * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,<br>
+ * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE<br>
+ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.<br>
+ *<br>
+ ******************************<wbr>******************************<wbr>**************/<br>
+<br>
+#ifndef U_VIEWPORT_H<br>
+#define U_VIEWPORT_H<br>
+<br>
+#include "c99_compat.h"<br>
+#include "pipe/p_state.h"<br>
+<br>
+#ifdef __cplusplus<br>
+extern "C" {<br>
+#endif<br>
+<br>
+static inline void<br>
+util_viewport_zmin_zmax(const struct pipe_viewport_state *vp, bool halfz,<br>
+                        float *zmin, float *zmax)<br>
+{<br>
+   float a, b;<br>
+   if (halfz) {<br>
+      a = vp->translate[2];<br>
+      b = vp->translate[2] + vp->scale[2];<br>
+   } else {<br>
+      a = vp->translate[2] - vp->scale[2];<br>
+      b = vp->translate[2] + vp->scale[2];<br>
+   }<br>
+<br>
+   *zmin = a < b ? a : b;<br>
+   *zmax = a < b ? b : a;<br></blockquote><div><br></div><div>or, *zmin = MIN2(a, b);  *zmax = MAX2(a, b);<br><br></div><div>-Brian<br> <br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
+}<br>
+<br>
+#ifdef __cplusplus<br>
+}<br>
+#endif<br>
+<br>
+#endif<br>
<span class="HOEnZb"><font color="#888888">--<br>
2.7.3<br>
<br>
______________________________<wbr>_________________<br>
mesa-dev mailing list<br>
<a href="mailto:mesa-dev@lists.freedesktop.org">mesa-dev@lists.freedesktop.org</a><br>
<a href="https://lists.freedesktop.org/mailman/listinfo/mesa-dev" rel="noreferrer" target="_blank">https://lists.freedesktop.org/<wbr>mailman/listinfo/mesa-dev</a><br>
</font></span></blockquote></div><br></div></div>