mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
70cd7e885b
those of us who occasionally have to diagnose DRI driver issues.
11 lines
303 B
C++
11 lines
303 B
C++
--- glean/ttexcombine.cpp.orig Thu Sep 25 16:17:52 2003
|
|
+++ glean/ttexcombine.cpp Thu Sep 25 16:17:53 2003
|
|
@@ -75,6 +75,7 @@
|
|
#include "ttexcombine.h"
|
|
#include <stdio.h>
|
|
#include <cmath>
|
|
+#include <cassert>
|
|
|
|
#define CLAMP(VAL, MIN, MAX) \
|
|
((VAL) < (MIN) ? (MIN) : ((VAL) > (MAX) ? (MAX) : (VAL)))
|