VideoOutputChildDDraw.h 421 B

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