-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
472 changed files
with
13,795 additions
and
13,883 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
#ifndef _DOLPHIN_FLOAT_H | ||
#define _DOLPHIN_FLOAT_H | ||
|
||
extern const float __float_nan[]; | ||
#include "types.h" | ||
|
||
extern const f32 __float_nan[]; | ||
#define __float_nan *__float_nan | ||
extern const float __float_huge; | ||
extern const double __double_min; | ||
extern const double __double_max; | ||
extern const double __double_huge; | ||
extern const double __double_nan; | ||
extern const double __extended_min; | ||
extern const double __extended_max; | ||
extern const float __float_max; | ||
extern const float __float_epsilon; | ||
extern const f32 __float_huge; | ||
extern const f64 __double_min; | ||
extern const f64 __double_max; | ||
extern const f64 __double_huge; | ||
extern const f64 __double_nan; | ||
extern const f64 __extended_min; | ||
extern const f64 __extended_max; | ||
extern const f32 __float_max; | ||
extern const f32 __float_epsilon; | ||
|
||
#endif | ||
#endif // _DOLPHIN_FLOAT_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
#include "types.h" | ||
|
||
struct Matrix3f { | ||
float mMatrix[3][3]; | ||
f32 mMatrix[3][3]; | ||
}; | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
struct Matrix4f { | ||
void makeIdentity(); | ||
|
||
float mMatrix[4][4]; | ||
f32 mMatrix[4][4]; | ||
}; | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.