| 22 | } |
| 23 | |
| 24 | static Result submitGxCommand(u32 gxCommand[0x8]) |
| 25 | { |
| 26 | if (boundQueue) |
| 27 | { |
| 28 | gxCmdQueueAdd(boundQueue, (const gxCmdEntry_s*)gxCommand); |
| 29 | return 0; |
| 30 | } |
| 31 | else |
| 32 | return gspSubmitGxCommand(gxCommand); |
| 33 | } |
| 34 | |
| 35 | Result GX_RequestDma(u32* src, u32* dst, u32 length) |
| 36 | { |
no test coverage detected