Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
257 lines (232 loc) · 7.36 KB

SDL_blendline.c

File metadata and controls

257 lines (232 loc) · 7.36 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
SDL - Simple DirectMedia Layer
Copyright (C) 1997-2009 Sam Lantinga
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Sam Lantinga
slouken@libsdl.org
*/
#include "SDL_config.h"
Dec 21, 2008
Dec 21, 2008
24
#include "SDL_draw.h"
Dec 20, 2008
Dec 20, 2008
25
Dec 21, 2008
Dec 21, 2008
26
27
28
29
30
static int
SDL_BlendLine_RGB555(SDL_Surface * dst, int x1, int y1, int x2, int y2,
int blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
{
unsigned inva = 0xff - a;
Dec 21, 2008
Dec 21, 2008
32
33
switch (blendMode) {
case SDL_BLENDMODE_BLEND:
Dec 21, 2008
Dec 21, 2008
34
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_BLEND_RGB555);
Dec 21, 2008
Dec 21, 2008
35
36
break;
case SDL_BLENDMODE_ADD:
Dec 21, 2008
Dec 21, 2008
37
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_ADD_RGB555);
Dec 21, 2008
Dec 21, 2008
38
39
break;
case SDL_BLENDMODE_MOD:
Dec 21, 2008
Dec 21, 2008
40
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_MOD_RGB555);
Dec 21, 2008
Dec 21, 2008
41
42
break;
default:
Dec 21, 2008
Dec 21, 2008
43
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_RGB555);
Dec 21, 2008
Dec 21, 2008
44
45
46
47
48
49
50
51
break;
}
return 0;
}
static int
SDL_BlendLine_RGB565(SDL_Surface * dst, int x1, int y1, int x2, int y2,
int blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
Dec 21, 2008
Dec 21, 2008
53
54
55
56
unsigned inva = 0xff - a;
switch (blendMode) {
case SDL_BLENDMODE_BLEND:
Dec 21, 2008
Dec 21, 2008
57
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_BLEND_RGB565);
Dec 21, 2008
Dec 21, 2008
58
59
break;
case SDL_BLENDMODE_ADD:
Dec 21, 2008
Dec 21, 2008
60
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_ADD_RGB565);
Dec 21, 2008
Dec 21, 2008
61
62
break;
case SDL_BLENDMODE_MOD:
Dec 21, 2008
Dec 21, 2008
63
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_MOD_RGB565);
Dec 21, 2008
Dec 21, 2008
64
65
break;
default:
Dec 21, 2008
Dec 21, 2008
66
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_RGB565);
Dec 21, 2008
Dec 21, 2008
67
break;
Dec 21, 2008
Dec 21, 2008
69
70
return 0;
}
Dec 21, 2008
Dec 21, 2008
72
73
74
75
76
static int
SDL_BlendLine_RGB888(SDL_Surface * dst, int x1, int y1, int x2, int y2,
int blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
{
unsigned inva = 0xff - a;
Dec 21, 2008
Dec 21, 2008
78
79
switch (blendMode) {
case SDL_BLENDMODE_BLEND:
Dec 21, 2008
Dec 21, 2008
80
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_BLEND_RGB888);
Dec 21, 2008
Dec 21, 2008
81
82
break;
case SDL_BLENDMODE_ADD:
Dec 21, 2008
Dec 21, 2008
83
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_ADD_RGB888);
Dec 21, 2008
Dec 21, 2008
84
85
break;
case SDL_BLENDMODE_MOD:
Dec 21, 2008
Dec 21, 2008
86
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_MOD_RGB888);
Dec 21, 2008
Dec 21, 2008
87
88
break;
default:
Dec 21, 2008
Dec 21, 2008
89
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_RGB888);
Dec 21, 2008
Dec 21, 2008
90
break;
Dec 20, 2008
Dec 20, 2008
91
}
Dec 21, 2008
Dec 21, 2008
92
93
94
return 0;
}
Dec 21, 2008
Dec 21, 2008
95
96
97
98
99
100
101
102
static int
SDL_BlendLine_ARGB8888(SDL_Surface * dst, int x1, int y1, int x2, int y2,
int blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
{
unsigned inva = 0xff - a;
switch (blendMode) {
case SDL_BLENDMODE_BLEND:
Dec 21, 2008
Dec 21, 2008
103
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_BLEND_ARGB8888);
Dec 21, 2008
Dec 21, 2008
104
105
break;
case SDL_BLENDMODE_ADD:
Dec 21, 2008
Dec 21, 2008
106
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_ADD_ARGB8888);
Dec 21, 2008
Dec 21, 2008
107
108
break;
case SDL_BLENDMODE_MOD:
Dec 21, 2008
Dec 21, 2008
109
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_MOD_ARGB8888);
Dec 21, 2008
Dec 21, 2008
110
111
break;
default:
Dec 21, 2008
Dec 21, 2008
112
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY_ARGB8888);
Dec 21, 2008
Dec 21, 2008
113
114
115
116
117
break;
}
return 0;
}
Dec 21, 2008
Dec 21, 2008
118
119
120
121
122
123
124
125
126
static int
SDL_BlendLine_RGB(SDL_Surface * dst, int x1, int y1, int x2, int y2,
int blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
{
SDL_PixelFormat *fmt = dst->format;
unsigned inva = 0xff - a;
switch (fmt->BytesPerPixel) {
case 2:
Dec 20, 2008
Dec 20, 2008
127
128
switch (blendMode) {
case SDL_BLENDMODE_BLEND:
Dec 21, 2008
Dec 21, 2008
129
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY2_BLEND_RGB);
Dec 20, 2008
Dec 20, 2008
130
131
break;
case SDL_BLENDMODE_ADD:
Dec 21, 2008
Dec 21, 2008
132
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY2_ADD_RGB);
Dec 20, 2008
Dec 20, 2008
133
134
break;
case SDL_BLENDMODE_MOD:
Dec 21, 2008
Dec 21, 2008
135
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY2_MOD_RGB);
Dec 21, 2008
Dec 21, 2008
136
137
break;
default:
Dec 21, 2008
Dec 21, 2008
138
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY2_RGB);
Dec 20, 2008
Dec 20, 2008
139
140
break;
}
Dec 21, 2008
Dec 21, 2008
141
142
return 0;
case 4:
Dec 20, 2008
Dec 20, 2008
143
144
switch (blendMode) {
case SDL_BLENDMODE_BLEND:
Dec 21, 2008
Dec 21, 2008
145
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY4_BLEND_RGB);
Dec 20, 2008
Dec 20, 2008
146
147
break;
case SDL_BLENDMODE_ADD:
Dec 21, 2008
Dec 21, 2008
148
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY4_ADD_RGB);
Dec 20, 2008
Dec 20, 2008
149
150
break;
case SDL_BLENDMODE_MOD:
Dec 21, 2008
Dec 21, 2008
151
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY4_MOD_RGB);
Dec 21, 2008
Dec 21, 2008
152
153
break;
default:
Dec 21, 2008
Dec 21, 2008
154
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY4_RGB);
Dec 20, 2008
Dec 20, 2008
155
156
break;
}
Dec 21, 2008
Dec 21, 2008
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
return 0;
default:
SDL_Unsupported();
return -1;
}
}
static int
SDL_BlendLine_RGBA(SDL_Surface * dst, int x1, int y1, int x2, int y2,
int blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
{
SDL_PixelFormat *fmt = dst->format;
unsigned inva = 0xff - a;
switch (fmt->BytesPerPixel) {
case 4:
Dec 20, 2008
Dec 20, 2008
173
174
switch (blendMode) {
case SDL_BLENDMODE_BLEND:
Dec 21, 2008
Dec 21, 2008
175
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY4_BLEND_RGBA);
Dec 20, 2008
Dec 20, 2008
176
177
break;
case SDL_BLENDMODE_ADD:
Dec 21, 2008
Dec 21, 2008
178
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY4_ADD_RGBA);
Dec 20, 2008
Dec 20, 2008
179
180
break;
case SDL_BLENDMODE_MOD:
Dec 21, 2008
Dec 21, 2008
181
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY4_MOD_RGBA);
Dec 21, 2008
Dec 21, 2008
182
183
break;
default:
Dec 21, 2008
Dec 21, 2008
184
DRAWLINE(x1, y1, x2, y2, DRAW_SETPIXELXY4_RGBA);
Dec 20, 2008
Dec 20, 2008
185
186
break;
}
Dec 21, 2008
Dec 21, 2008
187
return 0;
Dec 20, 2008
Dec 20, 2008
188
189
190
191
default:
SDL_Unsupported();
return -1;
}
Dec 21, 2008
Dec 21, 2008
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
}
int
SDL_BlendLine(SDL_Surface * dst, int x1, int y1, int x2, int y2,
int blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
{
SDL_PixelFormat *fmt = dst->format;
/* This function doesn't work on surfaces < 8 bpp */
if (dst->format->BitsPerPixel < 8) {
SDL_SetError("SDL_BlendLine(): Unsupported surface format");
return (-1);
}
/* Perform clipping */
Dec 23, 2008
Dec 23, 2008
207
if (!SDL_IntersectRectAndLine(&dst->clip_rect, &x1, &y1, &x2, &y2)) {
Dec 23, 2008
Dec 23, 2008
208
209
210
return (0);
}
Dec 21, 2008
Dec 21, 2008
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
if ((blendMode == SDL_BLENDMODE_BLEND)
|| (blendMode == SDL_BLENDMODE_ADD)) {
r = DRAW_MUL(r, a);
g = DRAW_MUL(g, a);
b = DRAW_MUL(b, a);
}
switch (fmt->BitsPerPixel) {
case 15:
switch (fmt->Rmask) {
case 0x7C00:
return SDL_BlendLine_RGB555(dst, x1, y1, x2, y2, blendMode, r, g,
b, a);
}
break;
case 16:
switch (fmt->Rmask) {
case 0xF800:
return SDL_BlendLine_RGB565(dst, x1, y1, x2, y2, blendMode, r, g,
b, a);
}
break;
case 32:
switch (fmt->Rmask) {
case 0x00FF0000:
if (!fmt->Amask) {
return SDL_BlendLine_RGB888(dst, x1, y1, x2, y2, blendMode, r,
g, b, a);
Dec 21, 2008
Dec 21, 2008
240
241
242
} else {
return SDL_BlendLine_ARGB8888(dst, x1, y1, x2, y2, blendMode,
r, g, b, a);
Dec 21, 2008
Dec 21, 2008
243
244
245
246
247
248
249
250
251
252
253
254
}
break;
}
default:
break;
}
if (!fmt->Amask) {
return SDL_BlendLine_RGB(dst, x1, y1, x2, y2, blendMode, r, g, b, a);
} else {
return SDL_BlendLine_RGBA(dst, x1, y1, x2, y2, blendMode, r, g, b, a);
}
255
256
257
}
/* vi: set ts=4 sw=4 expandtab: */