mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-13 02:08:49 +12:00
- Improved Vertex & Fragment Shader Decompilers.
- Fixed some FPR instructions. - Implemented more GCM syscalls. - Fixed callbacks alert.
This commit is contained in:
parent
f42d4b6572
commit
0aff049960
21 changed files with 410 additions and 106 deletions
|
@ -298,11 +298,11 @@ union VSCRhdr
|
|||
|
||||
enum FPRType
|
||||
{
|
||||
FPR_NORM,
|
||||
FPR_ZERO,
|
||||
FPR_SNAN,
|
||||
//FPR_NORM,
|
||||
//FPR_ZERO,
|
||||
//FPR_SNAN,
|
||||
//FPR_QNAN,
|
||||
FPR_INF,
|
||||
//FPR_INF,
|
||||
FPR_PZ = 0x2,
|
||||
FPR_PN = 0x4,
|
||||
FPR_PINF = 0x5,
|
||||
|
@ -357,7 +357,7 @@ struct PPCdouble
|
|||
|
||||
switch(fpc)
|
||||
{
|
||||
case _FPCLASS_SNAN: return FPR_SNAN;
|
||||
case _FPCLASS_SNAN:// return FPR_SNAN;
|
||||
case _FPCLASS_QNAN: return FPR_QNAN;
|
||||
case _FPCLASS_NINF: return FPR_NINF;
|
||||
case _FPCLASS_NN: return FPR_NN;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue