| 944 | } |
| 945 | |
| 946 | inline u32 getCurrentHalfLine(void) |
| 947 | { |
| 948 | u32 hcount, vcount; |
| 949 | GetCurrentDisplayPosition(&hcount, &vcount); |
| 950 | |
| 951 | return ((vcount - 1) << 1) + ((hcount - 1) / CurrTiming->hlw); |
| 952 | } |
| 953 | |
| 954 | static u32 getCurrentFieldEvenOdd() |
| 955 | { |
no test coverage detected