blob: f8d1bcf0c75bd60bdf46e619ea09318d162f1dd3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
|