Added simple key event processing.

This commit is contained in:
Steven Fuller 2001-08-08 22:42:43 +00:00 committed by Patryk Obara
parent a113617c02
commit 45cf2eb3a1
7 changed files with 81 additions and 49 deletions

View file

@ -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;