VideoOutputChildDDraw.h 421 B

12345678910111213141516171819202122
  1. #ifndef NULLSOFT_VIDEOOUTPUTCHILDDDRAWH
  2. #define NULLSOFT_VIDEOOUTPUTCHILDDDRAWH
  3. #include "VideoOutputChild.h"
  4. class VideoOutputChildDDraw : public VideoRenderer
  5. {
  6. public:
  7. VideoOutputChildDDraw()
  8. : adjuster(0), m_mon_x(0), m_mon_y(0), foundGUID(false), parent(0)
  9. {
  10. }
  11. VideoAspectAdjuster *adjuster;
  12. void update_monitor_coords();
  13. int m_mon_x, m_mon_y;
  14. bool foundGUID;
  15. GUID m_devguid;
  16. HWND parent;
  17. };
  18. #endif