mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-02 01:30:00 -04:00
Adding vifuncs.h stubs
This commit is contained in:
+1
-1
@@ -34,7 +34,7 @@ set(DOLZEL_FILES
|
||||
src/m_Do/m_Do_printf.cpp
|
||||
src/m_Do/m_Do_audio.cpp
|
||||
src/m_Do/m_Do_controller_pad.cpp
|
||||
src/m_Do/m_Re_controller_pad.cpp
|
||||
#src/m_Do/m_Re_controller_pad.cpp
|
||||
src/m_Do/m_Do_graphic.cpp
|
||||
src/m_Do/m_Do_machine.cpp
|
||||
src/m_Do/m_Do_mtx.cpp
|
||||
|
||||
@@ -33,6 +33,7 @@
|
||||
#include <dolphin/os/OSMessage.h>
|
||||
#include <dolphin/os/OSReboot.h>
|
||||
#include <dolphin/base/PPCArch.h>
|
||||
#include <dolphin/vi/vifuncs.h>
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@@ -1242,3 +1243,23 @@ f32 PSVECSquareMag(const Vec* v) {
|
||||
void PSVECSubtract(const Vec* a, const Vec* b, Vec* a_b) {
|
||||
puts("PSVECSubtract is a stub");
|
||||
}
|
||||
|
||||
void* VIGetCurrentFrameBuffer(void) {
|
||||
puts("VIGetCurrentFrameBuffer is a stub");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
u32 VIGetDTVStatus(void) {
|
||||
puts("VIGetDTVStatus is a stub");
|
||||
return 0;
|
||||
}
|
||||
|
||||
void* VIGetNextFrameBuffer(void) {
|
||||
puts("VIGetNextFrameBuffer is a stub");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
VIRetraceCallback VISetPreRetraceCallback(VIRetraceCallback cb) {
|
||||
puts("VISetPreRetraceCallback is a stub");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user