| 7063 | } |
| 7064 | |
| 7065 | GSVector4i GSState::GSPCRTCRegs::GetFramebufferRect(int display) |
| 7066 | { |
| 7067 | if (display == -1) |
| 7068 | { |
| 7069 | return GSVector4i(PCRTCDisplays[0].framebufferRect.runion(PCRTCDisplays[1].framebufferRect)); |
| 7070 | } |
| 7071 | else |
| 7072 | { |
| 7073 | return PCRTCDisplays[display].framebufferRect; |
| 7074 | } |
| 7075 | } |
| 7076 | |
| 7077 | int GSState::GSPCRTCRegs::GetFramebufferBitDepth() |
| 7078 | { |
no test coverage detected