mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-02-02 12:01:15 +00:00
Some checks are pending
CI / clang-format (push) Waiting to run
CI / ${{ matrix.name }} (false, --toolchain /usr/local/vitasdk/share/vita.toolchain.cmake, false, false, Ninja, Vita, ubuntu-latest, true, true) (push) Waiting to run
CI / ${{ matrix.name }} (false, -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION=10.0.26100.0, false, false, Visual Studio 17 2022, true, Xbox One, windows-latest, amd64, false, true) (push) Waiting to run
CI / ${{ matrix.name }} (false, -DCMAKE_TOOLCHAIN_FILE=/opt/devkitpro/cmake/3DS.cmake, false, devkitpro/devkitarm:latest, false, Ninja, true, Nintendo 3DS, ubuntu-latest, true) (push) Waiting to run
CI / ${{ matrix.name }} (false, -DCMAKE_TOOLCHAIN_FILE=/opt/devkitpro/cmake/Switch.cmake, false, devkitpro/devkita64:latest, false, Ninja, Nintendo Switch, true, ubuntu-latest, true) (push) Waiting to run
CI / ${{ matrix.name }} (false, emcmake, false, false, true, Ninja, Emscripten, ubuntu-latest, true) (push) Waiting to run
CI / ${{ matrix.name }} (false, false, false, Ninja, true, MSVC (arm64), windows-latest, amd64_arm64, false) (push) Waiting to run
CI / ${{ matrix.name }} (false, false, true, Ninja, true, MSVC (x86), windows-latest, amd64_x86, false) (push) Waiting to run
CI / ${{ matrix.name }} (false, true, false, Ninja, true, MSVC (x64), windows-latest, amd64, false) (push) Waiting to run
CI / ${{ matrix.name }} (false, true, true, false, Ninja, true, MSVC (x64 Debug), windows-latest, amd64, false) (push) Waiting to run
CI / ${{ matrix.name }} (true, false, -DCMAKE_SYSTEM_NAME=iOS, false, false, Xcode, true, iOS, macos-15, true) (push) Waiting to run
CI / ${{ matrix.name }} (true, false, false, Ninja, true, mingw-w64-i686, mingw32, msys2 mingw32, windows-latest, msys2 {0}, true) (push) Waiting to run
CI / ${{ matrix.name }} (true, false, false, false, Ninja, Android, ubuntu-latest, true) (push) Waiting to run
CI / ${{ matrix.name }} (true, false, true, false, Ninja, macOS, macos-latest, true) (push) Waiting to run
CI / ${{ matrix.name }} (true, true, false, Ninja, true, mingw-w64-x86_64, mingw64, msys2 mingw64, windows-latest, msys2 {0}, true) (push) Waiting to run
CI / ${{ matrix.name }} (true, true, true, false, Ninja, true, Linux (Debug), ubuntu-latest, true) (push) Waiting to run
CI / ${{ matrix.name }} (true, true, true, false, Ninja, true, Linux, ubuntu-latest, true) (push) Waiting to run
CI / Flatpak (${{ matrix.arch }}) (aarch64, ubuntu-22.04-arm) (push) Waiting to run
CI / Flatpak (${{ matrix.arch }}) (x86_64, ubuntu-latest) (push) Waiting to run
CI / C++ (push) Waiting to run
CI / Release (push) Blocked by required conditions
Docker / Publish web port (push) Waiting to run
69 lines
2.0 KiB
C++
69 lines
2.0 KiB
C++
#ifndef MXVIDEOMANAGER_H
|
|
#define MXVIDEOMANAGER_H
|
|
|
|
#include "mxpresentationmanager.h"
|
|
#include "mxvideoparam.h"
|
|
|
|
#ifdef MINIWIN
|
|
#include "miniwin/d3d.h"
|
|
#else
|
|
#include <d3d.h>
|
|
#endif
|
|
|
|
class MxDisplaySurface;
|
|
class MxRect32;
|
|
class MxRegion;
|
|
|
|
// VTABLE: LEGO1 0x100dc810
|
|
// VTABLE: BETA10 0x101c1bf8
|
|
// SIZE 0x64
|
|
class MxVideoManager : public MxPresentationManager {
|
|
public:
|
|
MxVideoManager();
|
|
~MxVideoManager() override;
|
|
|
|
MxResult Tickle() override; // vtable+0x08
|
|
void Destroy() override; // vtable+0x18
|
|
virtual MxResult VTable0x28(
|
|
MxVideoParam& p_videoParam,
|
|
LPDIRECTDRAW p_pDirectDraw,
|
|
LPDIRECT3D2 p_pDirect3D,
|
|
LPDIRECTDRAWSURFACE p_ddSurface1,
|
|
LPDIRECTDRAWSURFACE p_ddSurface2,
|
|
LPDIRECTDRAWCLIPPER p_ddClipper,
|
|
MxU32 p_frequencyMS,
|
|
MxBool p_createThread
|
|
); // vtable+0x28
|
|
virtual MxResult Create(MxVideoParam& p_videoParam, MxU32 p_frequencyMS, MxBool p_createThread); // vtable+0x2c
|
|
virtual MxResult RealizePalette(MxPalette* p_palette); // vtable+0x30
|
|
virtual void UpdateView(MxU32 p_x, MxU32 p_y, MxU32 p_width, MxU32 p_height); // vtable+0x34
|
|
|
|
MxResult Init();
|
|
void Destroy(MxBool p_fromDestructor);
|
|
void InvalidateRect(MxRect32& p_rect);
|
|
void SortPresenterList();
|
|
void UpdateRegion();
|
|
|
|
MxVideoParam& GetVideoParam() { return this->m_videoParam; }
|
|
LPDIRECTDRAW GetDirectDraw() { return this->m_pDirectDraw; }
|
|
|
|
// FUNCTION: BETA10 0x100969e0
|
|
MxDisplaySurface* GetDisplaySurface() { return this->m_displaySurface; }
|
|
|
|
MxRegion* GetRegion() { return this->m_region; }
|
|
|
|
// SYNTHETIC: LEGO1 0x100be280
|
|
// SYNTHETIC: BETA10 0x1012de00
|
|
// MxVideoManager::`scalar deleting destructor'
|
|
|
|
protected:
|
|
MxVideoParam m_videoParam; // 0x2c
|
|
LPDIRECTDRAW m_pDirectDraw; // 0x50
|
|
LPDIRECT3D2 m_pDirect3D; // 0x54
|
|
MxDisplaySurface* m_displaySurface; // 0x58
|
|
MxRegion* m_region; // 0x5c
|
|
MxBool m_created; // 0x60
|
|
};
|
|
|
|
#endif // MXVIDEOMANAGER_H
|