Stefan Dirsch
4fe3fcb083
Fixes for BNC#866445 OBS-URL: https://build.opensuse.org/request/show/225987 OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/Mesa?expand=0&rev=362
27 lines
734 B
Diff
27 lines
734 B
Diff
From f19271c7bf73efe6d583e9dc5fc37329558a5cc3 Mon Sep 17 00:00:00 2001
|
|
From: Ilia Mirkin <imirkin@alum.mit.edu>
|
|
Date: Thu, 27 Feb 2014 06:07:30 +0000
|
|
Subject: gallium/util: add missing u_math include
|
|
|
|
This is needed for MIN2/MAX2
|
|
|
|
Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
|
|
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
|
|
---
|
|
diff --git a/src/gallium/auxiliary/util/u_range.h b/src/gallium/auxiliary/util/u_range.h
|
|
index 4b1d0d1..efe25ef 100644
|
|
--- a/src/gallium/auxiliary/util/u_range.h
|
|
+++ b/src/gallium/auxiliary/util/u_range.h
|
|
@@ -36,6 +36,8 @@
|
|
|
|
#include "os/os_thread.h"
|
|
|
|
+#include "util/u_math.h"
|
|
+
|
|
struct util_range {
|
|
unsigned start; /* inclusive */
|
|
unsigned end; /* exclusive */
|
|
--
|
|
cgit v0.9.0.2-2-gbebe
|
|
|