Implement MxDisplaySurface::DrawTransparentRLE (#1236)

* Implement MxDisplaySurface::DrawTransparentRLE

* ncc fix
This commit is contained in:
MS
2024-12-17 03:07:39 -05:00
committed by GitHub
parent cfa3769abf
commit 9c951c4974
2 changed files with 153 additions and 13 deletions

View File

@@ -99,14 +99,14 @@ public:
LPDIRECTDRAWSURFACE GetDirectDrawSurface2() { return m_ddSurface2; }
MxVideoParam& GetVideoParam() { return m_videoParam; }
void FUN_100bb500(
MxU8** p_bitmapData,
MxU8** p_surfaceData,
void DrawTransparentRLE(
MxU8*& p_bitmapData,
MxU8*& p_surfaceData,
MxU32 p_bitmapSize,
MxS32 p_width,
MxS32 p_height,
MxLong p_pitch,
MxU32 p_bpp
MxU8 p_bpp
);
private: