1 /**********
2 *
3 * Copyright (c) 2003, Division of Imaging Science and Biomedical Engineering,
4 * University of Manchester, UK. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without modification,
7 * are permitted provided that the following conditions are met:
8 *
9 * . Redistributions of source code must retain the above copyright notice,
10 * this list of conditions and the following disclaimer.
11 *
12 * . Redistributions in binary form must reproduce the above copyright notice,
13 * this list of conditions and the following disclaimer in the documentation
14 * and/or other materials provided with the distribution.
15 *
16 * . Neither the name of the University of Manchester nor the names of its
17 * contributors may be used to endorse or promote products derived from this
18 * software without specific prior written permission.
19 *
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE.
32 *
33 **********
34 *
35 * Program : TINA
36 * File :
37 * Date : $Date: 2012/07/27 16:05 $
38 * Version : $Revision: 1.4 $
39 * CVS Id :
40 *
41 * Author : Legacy TINA
42 *
43 * Notes : HR modified
44 *
45 *********
46 */
47
48 #include "gphxNull_draw.h"
49
50 #if HAVE_CONFIG_H
51 #include <config.h>
52 #endif
53
54 #include <stdio.h>
55 #include <tina/math/mathDef.h>
56 #include <tinatool/gphx/null/gphx_NullDef.h>
57
58 void tv_screen_flush(Tv_screen * tv_screen)
59 {
60 }
61
62 void tv_screen_erase(Tv_screen * tv_screen)
63 {
64 }
65
66 void tv_screen_point(Tv_screen * tv_screen, Ipos pos)
67 {
68 }
69
70 void tv_screen_dot(Tv_screen * tv_screen, Ipos pos)
71 {
72 }
73
74 void tv_screen_line(Tv_screen * tv_screen, Ipos pos1, Ipos pos2)
75 {
76 }
77
78 void tv_screen_polyline(Tv_screen * tv_screen, List * points)
79 {
80 }
81
82 void tv_screen_circle(Tv_screen * tv_screen, Ipos centre, int radius)
83 {
84 }
85
86 void tv_screen_rect(Tv_screen * tv_screen, Ipos pos1, Ipos pos2)
87 {
88 }
89
90 void tv_screen_fillrect(Tv_screen * tv_screen, Ipos pos1, Ipos pos2)
91 {
92 }
93
94 void tv_screen_text(Tv_screen * tv_screen, char *string, Ipos pos)
95 {
96 }
97
98 void tv_screen_raster(Tv_screen * tv_screen, int x1, int x2, int y, char *raster)
99 {
100 }
101
102 void tv_screen_image(Tv_screen * tv_screen, int x, int y, int w, int h, char *data)
103 {
104 }
105
106 void tv_screen_col_image(Tv_screen * tv_screen, int x, int y, int w, int h, char *data) /* HR added */
107 {
108 }
109
110 void tv_screen_show_picture(Tv_screen * tv_screen, Tv_picture * picture)
111 {
112 }
113
114 void tv_screen_double_buffer_start(Tv_screen *tv_screen)
115 {
116 }
117
118 void tv_screen_double_buffer_end(Tv_screen *tv_screen)
119 {
120 }
121
122
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.