mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-12-30 09:00:33 -06:00
* video_patches: aspect ratio support for CPlayMovieWrapper * config: remove movie scale mode option * video_patches: improve movie aspect ratio correction, support intro logos Co-Authored-By: Darío <538504+DarioSamo@users.noreply.github.com> Co-Authored-By: Skyth (Asilkan) <19259897+blueskythlikesclouds@users.noreply.github.com> * api: upload Inspire research * api: move Vertex struct --------- Co-authored-by: Darío <538504+DarioSamo@users.noreply.github.com> Co-authored-by: Skyth (Asilkan) <19259897+blueskythlikesclouds@users.noreply.github.com>
18 lines
333 B
C++
18 lines
333 B
C++
#pragma once
|
|
|
|
#include <SWA.inl>
|
|
#include <SWA/Inspire/InspireMovieOverlayInfo.h>
|
|
|
|
namespace SWA::Inspire
|
|
{
|
|
class CScene;
|
|
|
|
class CMovieOverlay
|
|
{
|
|
public:
|
|
boost::shared_ptr<CMovieOverlayInfo> m_spInfo;
|
|
xpointer<CScene> m_pScene;
|
|
xpointer<Hedgehog::Mirage::CTextureData> m_pTextureData;
|
|
};
|
|
}
|