mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04:00
540217c31b
* 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
22 lines
494 B
C++
22 lines
494 B
C++
#ifndef CAPTURESCREEN_H
|
|
#define CAPTURESCREEN_H
|
|
|
|
#include "JSystem/JFramework/JFWDisplay.h"
|
|
|
|
class CaptureScreen {
|
|
public:
|
|
CaptureScreen(const JFWDisplay*);
|
|
|
|
static int getAlignedWidthBytes(int);
|
|
static int getBmpBufferSize(int, int);
|
|
void makeBmpFromEfb(void*, int, int, int, int, int, int);
|
|
void openBmp(int, int);
|
|
void closeBmp();
|
|
void saveBmp(void*, u32);
|
|
|
|
/* 0x0 */ const JFWDisplay* mpDisplay;
|
|
/* 0x4 */ int field_0x4;
|
|
};
|
|
|
|
#endif /* CAPTURESCREEN_H */
|