[cosmetics] update date in GPL header
[vuplus_xbmc] / xbmc / rendering / dx / GUIWindowTestPatternDX.h
1 #pragma once
2
3 /*
4  *      Copyright (C) 2005-2013 Team XBMC
5  *      http://www.xbmc.org
6  *
7  *      Test patterns designed by Ofer LaOr - hometheater.co.il
8  *
9  *  This Program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License as published by
11  *  the Free Software Foundation; either version 2, or (at your option)
12  *  any later version.
13  *
14  *  This Program is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  *  GNU General Public License for more details.
18  *
19  *  You should have received a copy of the GNU General Public License
20  *  along with XBMC; see the file COPYING.  If not, see
21  *  <http://www.gnu.org/licenses/>.
22  *
23  */
24
25 #include "settings/GUIWindowTestPattern.h"
26
27 class CGUIWindowTestPatternDX : public CGUIWindowTestPattern
28 {
29 public:
30   CGUIWindowTestPatternDX(void);
31   virtual ~CGUIWindowTestPatternDX(void);
32
33 private:
34   virtual void DrawVerticalLines(int top, int left, int bottom, int right);
35   virtual void DrawHorizontalLines(int top, int left, int bottom, int right);
36   virtual void DrawCheckers(int top, int left, int bottom, int right);
37   virtual void DrawBouncingRectangle(int top, int left, int bottom, int right);
38   virtual void DrawContrastBrightnessPattern(int top, int left, int bottom, int right);
39   virtual void DrawCircle(int originX, int originY, int radius);
40   virtual void BeginRender();
41   virtual void EndRender();
42 };
43