mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-28 16:50:15 -06:00
here have more code
This commit is contained in:
@ -63,6 +63,10 @@ private:
|
||||
bool FrameFormatYUV;
|
||||
u32* FrameBuffer;
|
||||
QMutex FrameMutex;
|
||||
|
||||
void CopyFrame_Straight(u32* src, int swidth, int sheight, u32* dst, int dwidth, int dheight, bool yuv);
|
||||
void CopyFrame_RGBtoYUV(u32* src, int swidth, int sheight, u32* dst, int dwidth, int dheight);
|
||||
void CopyFrame_YUVtoRGB(u32* src, int swidth, int sheight, u32* dst, int dwidth, int dheight);
|
||||
};
|
||||
|
||||
#endif // CAMERAMANAGER_H
|
||||
|
Reference in New Issue
Block a user