Improve match of MxVideoPresenter::PutFrame (#606)

* Improve match of PutFrame

* Fix

* Fix

* Fix
This commit is contained in:
Christian Semmler
2024-02-29 20:45:30 -05:00
committed by GitHub
parent 49d6c88912
commit 79713698cf
3 changed files with 55 additions and 61 deletions

View File

@@ -113,6 +113,8 @@ public:
inline MxS32 GetCurrentTickleState() const { return this->m_currentTickleState; }
inline MxPoint32 GetLocation() const { return this->m_location; }
inline MxS32 GetX() const { return this->m_location.GetX(); }
inline MxS32 GetY() const { return this->m_location.GetY(); }
inline MxS32 GetDisplayZ() const { return this->m_displayZ; }
inline MxDSAction* GetAction() const { return this->m_action; }

View File

@@ -89,7 +89,7 @@ public:
// MxVideoPresenter::AlphaMask::`scalar deleting destructor'
};
inline MxS32 PrepareRects(MxRect32& p_rectDest, MxRect32& p_rectSrc);
inline MxS32 PrepareRects(RECT& p_rectDest, RECT& p_rectSrc);
inline MxBitmap* GetBitmap() { return m_bitmap; }
inline AlphaMask* GetAlphaMask() { return m_alpha; }