From 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d Mon Sep 17 00:00:00 2001 From: Jef Date: Tue, 24 Sep 2024 14:54:57 +0200 Subject: Initial community commit --- Src/Winamp/VideoOutputChildDDraw.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Src/Winamp/VideoOutputChildDDraw.h (limited to 'Src/Winamp/VideoOutputChildDDraw.h') diff --git a/Src/Winamp/VideoOutputChildDDraw.h b/Src/Winamp/VideoOutputChildDDraw.h new file mode 100644 index 00000000..f8d1bcf0 --- /dev/null +++ b/Src/Winamp/VideoOutputChildDDraw.h @@ -0,0 +1,22 @@ +#ifndef NULLSOFT_VIDEOOUTPUTCHILDDDRAWH +#define NULLSOFT_VIDEOOUTPUTCHILDDDRAWH +#include "VideoOutputChild.h" + +class VideoOutputChildDDraw : public VideoRenderer +{ +public: + VideoOutputChildDDraw() + : adjuster(0), m_mon_x(0), m_mon_y(0), foundGUID(false), parent(0) + { + } + VideoAspectAdjuster *adjuster; + void update_monitor_coords(); + int m_mon_x, m_mon_y; + bool foundGUID; + GUID m_devguid; + HWND parent; + +}; + + +#endif -- cgit