mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-15 06:06:04 +00:00
7079005c83
* Match N64 libultra * INITIALIZE_FUNC -> OSINITIALIZE_FUNC * Document osGetIntMask * Refer readers of osGetIntMask to osSetIntMask comment * Whitelist new static functions in disasm unksyms check
35 lines
530 B
C
35 lines
530 B
C
#ifndef ULTRA64_GU_H
|
|
#define ULTRA64_GU_H
|
|
|
|
#include "ultratypes.h"
|
|
|
|
#define GU_PI 3.1415926
|
|
|
|
#define FTOFIX32(x) (s32)((x) * (f32)0x00010000)
|
|
#define FIX32TOF(x) ((f32)(x) * (1.0f / (f32)0x00010000))
|
|
|
|
#define ROUND(x) (s32)(((x) >= 0.0) ? ((x) + 0.5) : ((x) - 0.5))
|
|
|
|
typedef union du {
|
|
struct {
|
|
u32 hi;
|
|
u32 lo;
|
|
} word;
|
|
|
|
f64 d;
|
|
} du;
|
|
|
|
typedef union fu {
|
|
u32 i;
|
|
f32 f;
|
|
} fu;
|
|
|
|
f32 sinf(f32 angle);
|
|
s16 sins(u16 angle);
|
|
|
|
f32 cosf(f32 angle);
|
|
s16 coss(u16 angle);
|
|
|
|
extern f32 __libm_qnan_f;
|
|
|
|
#endif
|