Added simple key event processing.
This commit is contained in:
parent
a113617c02
commit
45cf2eb3a1
7 changed files with 81 additions and 49 deletions
13
src/kshape.c
13
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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue