Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ def MatchingFor(*versions):
Object(NonMatching, "SB/Game/zNPCSndTable.cpp"),
Object(Matching, "SB/Game/zNPCSndLists.cpp"),
Object(NonMatching, "SB/Game/zNPCTypeDuplotron.cpp"),
Object(NonMatching, "SB/Core/x/xModelBucket.cpp"),
Object(Equivalent, "SB/Core/x/xModelBucket.cpp"),
Object(NonMatching, "SB/Game/zShrapnel.cpp"),
Object(Matching, "SB/Game/zNPCGoalDuplotron.cpp", extra_cflags=["-sym on"]),
Object(NonMatching, "SB/Game/zNPCSpawner.cpp"),
Expand Down
19 changes: 19 additions & 0 deletions include/rwsdk/driver/gcn/dlrendst.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#ifndef DLRENDST_H
#define DLRENDST_H

#include "rwsdk/rwcore.h"


#ifdef __cplusplus
extern "C" {
#endif

extern void _rwDlRenderStateSetZCompLoc(RwInt32 zBeforeTex);
extern void RwGameCubeSetAlphaCompare(RwInt32 comp0, RwUInt8 ref0, RwInt32 op, RwInt32 comp1, RwUInt8 ref1);


#ifdef __cplusplus
}
#endif

#endif
3 changes: 3 additions & 0 deletions src/SB/Core/x/xLightKit.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ struct xLightKit
xLightKitLight* lightList;
};

extern S32 iModelHack_DisablePrelight;
extern xLightKit* gLastLightKit;

xLightKit* xLightKit_Prepare(void* data);
void xLightKit_Enable(xLightKit* lkit, RpWorld* world);
xLightKit* xLightKit_GetCurrent(RpWorld* world);
Expand Down
1 change: 1 addition & 0 deletions src/SB/Core/x/xModel.h
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ extern xModelPipeInfo* xModelPipeData[16];
extern S32 xModelLookupCount;
extern xModelPipeLookup* xModelLookupList;
extern S32 xModelInstStaticAlloc;
extern S32 xModelBucketEnabled;

U32 xModelGetPipeFlags(RpAtomic* model);
void xModelInit();
Expand Down
Loading