diff options
| author | TakaRikka <38417346+TakaRikka@users.noreply.github.com> | 2025-11-17 10:01:03 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-17 20:01:03 +0200 |
| commit | 540217c31b88246d5c3abd57bb3fbd97cff6d31c (patch) | |
| tree | cc08666dad6a7cd55539168a0d0e3f6bba188488 /src/CaptureScreen.cpp | |
| parent | 4350a38fe01fa57890eade52c7c5e3789cce83ac (diff) | |
wii building OK / m_Do_graphic debug work (#2815)
* wii building OK + m_Do_graphic debug work
* d_meter_HIO debug cleanup
* wii m_Do_graphic stuff
* tag_attack_item OK, mirror_chain almost
* fix build
* mg_fshop matching
Diffstat (limited to 'src/CaptureScreen.cpp')
| -rw-r--r-- | src/CaptureScreen.cpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/CaptureScreen.cpp b/src/CaptureScreen.cpp new file mode 100644 index 0000000000..f6b24e63bc --- /dev/null +++ b/src/CaptureScreen.cpp @@ -0,0 +1,30 @@ +#include "CaptureScreen.h" + +CaptureScreen::CaptureScreen(const JFWDisplay* pDisplay) { + mpDisplay = pDisplay; + field_0x4 = 0; +} + +int CaptureScreen::getAlignedWidthBytes(int param_0) { + return ROUND((param_0 * 4) - param_0, 4); +} + +int CaptureScreen::getBmpBufferSize(int param_0, int param_1) { + return param_1 * getAlignedWidthBytes(param_0) + 0x36; +} + +void CaptureScreen::makeBmpFromEfb(void* param_0, int param_1, int param_2, int param_3, int param_4, int param_5, int param_6) { + // NONMATCHING +} + +void CaptureScreen::openBmp(int param_0, int param_1) { + // NONMATCHING +} + +void CaptureScreen::closeBmp() { + // NONMATCHING +} + +void CaptureScreen::saveBmp(void* param_0, u32 param_1) { + // NONMATCHING +} |
