1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-12 03:00:28 +00:00
freebsd-ports/graphics/glean/files/patch-ttexcombine.cpp
Eric Anholt 70cd7e885b Add new port of glean, a suite of OpenGL conformance tests. Very useful for
those of us who occasionally have to diagnose DRI driver issues.
2003-12-13 01:06:05 +00:00

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)))