b4bc81f696b4a6f5ee48b67db9813a035bfaa957
[vuplus_xbmc] / xbmc / rendering / dx / GUIWindowTestPatternDX.cpp
1 /*
2  *      Copyright (C) 2005-2013 Team XBMC
3  *      http://xbmc.org
4  *
5  *      Test patterns designed by Ofer LaOr - hometheater.co.il
6  *
7  *  This Program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2, or (at your option)
10  *  any later version.
11  *
12  *  This Program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with XBMC; see the file COPYING.  If not, see
19  *  <http://www.gnu.org/licenses/>.
20  *
21  */
22
23 #include "GUIWindowTestPatternDX.h"
24
25 CGUIWindowTestPatternDX::CGUIWindowTestPatternDX(void) : CGUIWindowTestPattern()
26 {
27 }
28
29 CGUIWindowTestPatternDX::~CGUIWindowTestPatternDX(void)
30 {
31 }
32
33 void CGUIWindowTestPatternDX::DrawVerticalLines(int top, int left, int bottom, int right)
34 {
35  // TODO: write dx code
36 }
37
38 void CGUIWindowTestPatternDX::DrawHorizontalLines(int top, int left, int bottom, int right)
39 {
40  // TODO: write dx code
41
42 }
43
44 void CGUIWindowTestPatternDX::DrawCheckers(int top, int left, int bottom, int right)
45 {
46  // TODO: write dx code
47
48 }
49
50 void CGUIWindowTestPatternDX::DrawBouncingRectangle(int top, int left, int bottom, int right)
51 {
52  // TODO: write dx code
53
54 }
55
56 void CGUIWindowTestPatternDX::DrawContrastBrightnessPattern(int top, int left, int bottom, int right)
57 {
58   // TODO: write dx code
59 }
60
61 void CGUIWindowTestPatternDX::DrawCircle(int originX, int originY, int radius)
62 {
63  // TODO: write dx code
64 }
65
66 void CGUIWindowTestPatternDX::BeginRender()
67 {
68  // TODO: write dx code
69 }
70
71 void CGUIWindowTestPatternDX::EndRender()
72 {
73  // TODO: write dx code
74 }
75