get dusk past compilation and into linking

This commit is contained in:
kipcode66
2026-01-15 19:24:39 -05:00
parent dd67314902
commit b1e20051ce
17 changed files with 127 additions and 5 deletions
+3
View File
@@ -6,6 +6,9 @@
#include "JSystem/J2DGraph/J2DScreen.h"
#include "JSystem/JSupport/JSURandomInputStream.h"
#include "JSystem/JUtility/JUTResource.h"
#ifndef __MWERKS__
#include "dusk/math.h"
#endif
J2DPane::J2DPane() : mBounds(), mGlobalBounds(), mClipRect(), mPaneTree(this) {
mTransform = NULL;
+4
View File
@@ -6,7 +6,11 @@
#include "JSystem/J2DGraph/J2DTevs.h"
#include "JSystem/J2DGraph/J2DMaterial.h"
#ifdef __MWERKS__
#include <cmath>
#else
#include "dusk/math.h"
#endif
#include "dolphin/gx.h"
void J2DTexMtx::load(u32 mtxIdx) {
+3
View File
@@ -9,6 +9,9 @@
#include "JSystem/JAudio2/JASMutex.h"
#include "JSystem/JKernel/JKRHeap.h"
#include <cstdio>
#ifndef __MWERKS__
#include <cstdarg>
#endif
static OSMutex sMutex;
+3
View File
@@ -1,6 +1,9 @@
#include "JSystem/JSystem.h" // IWYU pragma: keep
#include "JSystem/JKernel/JKRAssertHeap.h"
#ifndef __MWERKS__
#include <new>
#endif
JKRAssertHeap::JKRAssertHeap(void* data, u32 size, JKRHeap* parent, bool errorFlag)
: JKRHeap(data, size, parent, errorFlag) {}
+3
View File
@@ -5,6 +5,9 @@
#include "JSystem/JKernel/JKRHeap.h"
#include "JSystem/JUtility/JUTVideo.h"
#include <cstdio>
#ifndef __MWERKS__
#include <cstdarg>
#endif
JUTDbPrint::JUTDbPrint(JUTFont* pFont, JKRHeap* pHeap) {
mFont = pFont;