diff options
Diffstat (limited to 'src/video_core/pica_state.h')
| -rw-r--r-- | src/video_core/pica_state.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/pica_state.h b/src/video_core/pica_state.h index 01f4285a8..2dbd6413f 100644 --- a/src/video_core/pica_state.h +++ b/src/video_core/pica_state.h | |||
| @@ -33,7 +33,7 @@ struct State { | |||
| 33 | u32 raw; | 33 | u32 raw; |
| 34 | 34 | ||
| 35 | // LUT value, encoded as 12-bit fixed point, with 12 fraction bits | 35 | // LUT value, encoded as 12-bit fixed point, with 12 fraction bits |
| 36 | BitField< 0, 12, u32> value; // 0.0.12 fixed point | 36 | BitField<0, 12, u32> value; // 0.0.12 fixed point |
| 37 | 37 | ||
| 38 | // Used by HW for efficient interpolation, Citra does not use these | 38 | // Used by HW for efficient interpolation, Citra does not use these |
| 39 | BitField<12, 12, s32> difference; // 1.0.11 fixed point | 39 | BitField<12, 12, s32> difference; // 1.0.11 fixed point |
| @@ -51,8 +51,8 @@ struct State { | |||
| 51 | // Used for raw access | 51 | // Used for raw access |
| 52 | u32 raw; | 52 | u32 raw; |
| 53 | 53 | ||
| 54 | BitField< 0, 13, s32> difference; // 1.1.11 fixed point | 54 | BitField<0, 13, s32> difference; // 1.1.11 fixed point |
| 55 | BitField<13, 11, u32> value; // 0.0.11 fixed point | 55 | BitField<13, 11, u32> value; // 0.0.11 fixed point |
| 56 | }; | 56 | }; |
| 57 | 57 | ||
| 58 | std::array<LutEntry, 128> lut; | 58 | std::array<LutEntry, 128> lut; |