summaryrefslogtreecommitdiff
path: root/src/kshape.c
diff options
context:
space:
mode:
authorSteven Fuller <relnev@icculus.org>2001-08-08 22:42:43 +0000
committerPatryk Obara <dreamer.tan@gmail.com>2019-08-20 02:22:36 +0200
commit45cf2eb3a194d53ccdd05a75b46e472a01359abf (patch)
tree224ba4ba67816976e987030111e29916f43598b3 /src/kshape.c
parenta113617c026d00770c0a01b292386bd1857f5a6a (diff)
Added simple key event processing.
Diffstat (limited to 'src/kshape.c')
-rw-r--r--src/kshape.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/kshape.c b/src/kshape.c
index 0e95c46..5e204f9 100644
--- a/src/kshape.c
+++ b/src/kshape.c
@@ -4500,19 +4500,6 @@ void TranslatePoint(int *source, int *dest, int *matrix)
#endif
#endif
-static void TranslatePoint(float *source, float *dest, float *matrix)
-{
-// fprintf(stderr, "TranslatePoint(%f, %f, %f)\n");
-
-/* TODO - implement the inline assembly here? */
-/* Moved to a separate file because I can't figure out the damn syntax! */
-__asm__("call TranslatePoint_Asm \n\t"
- :
- : "S" (source), "b" (dest), "D" (matrix)
- );
-}
-
-
void TranslatePointIntoViewspace(VECTORCH *pointPtr)
{
Source[0] = pointPtr->vx;