Move some OS functionality to rely on Aurora

This commit is contained in:
PJB3005
2026-03-02 14:27:20 +01:00
parent 2442b9d948
commit c39f6a1b56
4 changed files with 7 additions and 91 deletions
+4
View File
@@ -349,7 +349,11 @@ void J3DGDSetTexImgAttr(GXTexMapID id, u16 width, u16 height, GXTexFmt format) {
}
void J3DGDSetTexImgPtr(GXTexMapID id, void* image_ptr) {
#if TARGET_PC
puts("J3DGDSetTexImgPtr is a stub");
#else
J3DGDWriteBPCmd(BP_IMAGE_PTR(OSCachedToPhysical(image_ptr) >> 5, J3DGDTexImage3Ids[id]));
#endif
}
void J3DGDSetTexImgPtrRaw(GXTexMapID id, u32 image_ptr_raw) {