mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 21:28:51 +00:00
commit
aa1df21bb6
10 changed files with 357 additions and 165 deletions
|
@ -123,6 +123,15 @@ u32 ClassifyDouble(double dvalue);
|
|||
// More efficient float version.
|
||||
u32 ClassifyFloat(float fvalue);
|
||||
|
||||
extern const int frsqrte_expected_base[];
|
||||
extern const int frsqrte_expected_dec[];
|
||||
extern const int fres_expected_base[];
|
||||
extern const int fres_expected_dec[];
|
||||
|
||||
// PowerPC approximation algorithms
|
||||
double ApproximateReciprocalSquareRoot(double val);
|
||||
double ApproximateReciprocal(double val);
|
||||
|
||||
template<class T>
|
||||
struct Rectangle
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue