summaryrefslogtreecommitdiff
path: root/graphics.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics.h')
-rw-r--r--graphics.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics.h b/graphics.h
index 61f4bf4..96b3159 100644
--- a/graphics.h
+++ b/graphics.h
@@ -1,4 +1,6 @@
#define HZ2MS(hz) (1000/(hz))
+#define min(a, b) ((a)<(b)?(a):(b))
+#define max(a, b) ((a)>(b)?(a):(b))
typedef enum {
ORTHOGRAPHIC,
@@ -412,8 +414,6 @@ void freecubemap(Cubemap*);
Color samplecubemap(Cubemap*, Point3, Color(*)(Texture*, Point2));
/* util */
-double fmin(double, double);
-double fmax(double, double);
Point2 modulapt2(Point2, Point2);
Point3 modulapt3(Point3, Point3);
Memimage *rgb(ulong);