aboutsummaryrefslogtreecommitdiff
path: root/examples/fpscam/clip.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/fpscam/clip.h')
-rw-r--r--examples/fpscam/clip.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/examples/fpscam/clip.h b/examples/fpscam/clip.h
deleted file mode 100644
index 3b428bb..0000000
--- a/examples/fpscam/clip.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef _CLIP_H
-#define _CLIP_H
-
-#include <psxgte.h>
-#include <psxgpu.h>
-
-/* tri_clip
- *
- * Returns non-zero if a triangle (v0, v1, v2) is outside 'clip'.
- *
- * clip - Clipping area
- * v0,v1,v2 - Triangle coordinates
- *
- */
-int tri_clip(RECT *clip, DVECTOR *v0, DVECTOR *v1, DVECTOR *v2);
-
-/* quad_clip
- *
- * Returns non-zero if a quad (v0, v1, v2, v3) is outside 'clip'.
- *
- * clip - Clipping area
- * v0,v1,v2,v3 - Quad coordinates
- *
- */
-int quad_clip(RECT *clip, DVECTOR *v0, DVECTOR *v1, DVECTOR *v2, DVECTOR *v3);
-
-#endif // _CLIP_H \ No newline at end of file