comparison src/video/SDL_drawline.c @ 2888:32e8bbba1e94

Added stubs for software implementations of blending fills and line drawing
author Sam Lantinga <slouken@libsdl.org>
date Sat, 20 Dec 2008 13:14:28 +0000
parents
children 1863c8b59658
comparison
equal deleted inserted replaced
2887:f8c0c5ef6d54 2888:32e8bbba1e94
1 /*
2 SDL - Simple DirectMedia Layer
3 Copyright (C) 1997-2009 Sam Lantinga
4
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
19 Sam Lantinga
20 slouken@libsdl.org
21 */
22 #include "SDL_config.h"
23
24 #include "SDL_video.h"
25 #include "SDL_blit.h"
26
27
28 int
29 SDL_DrawLine(SDL_Surface * dst, int x1, int y1, int x2, int y2, Uint32 color)
30 {
31 /* This function doesn't work on surfaces < 8 bpp */
32 if (dst->format->BitsPerPixel < 8) {
33 SDL_SetError("SDL_DrawLine(): Unsupported surface format");
34 return (-1);
35 }
36
37 /* Perform clipping */
38 /* FIXME
39 if (!SDL_IntersectRect(dstrect, &dst->clip_rect, dstrect)) {
40 return (0);
41 }
42 */
43
44 SDL_Unsupported();
45 return -1;
46 }
47
48 /* vi: set ts=4 sw=4 expandtab: */