SDL  2.0
SDL_blendpoint.c File Reference
#include "../../SDL_internal.h"
#include "SDL_draw.h"
#include "SDL_blendpoint.h"
+ Include dependency graph for SDL_blendpoint.c:

Go to the source code of this file.

Functions

static int SDL_BlendPoint_RGB555 (SDL_Surface *dst, int x, int y, SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
 
static int SDL_BlendPoint_RGB565 (SDL_Surface *dst, int x, int y, SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
 
static int SDL_BlendPoint_RGB888 (SDL_Surface *dst, int x, int y, SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
 
static int SDL_BlendPoint_ARGB8888 (SDL_Surface *dst, int x, int y, SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
 
static int SDL_BlendPoint_RGB (SDL_Surface *dst, int x, int y, SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
 
static int SDL_BlendPoint_RGBA (SDL_Surface *dst, int x, int y, SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
 
int SDL_BlendPoint (SDL_Surface *dst, int x, int y, SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
 
int SDL_BlendPoints (SDL_Surface *dst, const SDL_Point *points, int count, SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
 

Function Documentation

◆ SDL_BlendPoint()

int SDL_BlendPoint ( SDL_Surface dst,
int  x,
int  y,
SDL_BlendMode  blendMode,
Uint8  r,
Uint8  g,
Uint8  b,
Uint8  a 
)

Definition at line 217 of file SDL_blendpoint.c.

219 {
220  if (!dst) {
221  return SDL_SetError("Passed NULL destination surface");
222  }
223 
224  /* This function doesn't work on surfaces < 8 bpp */
225  if (dst->format->BitsPerPixel < 8) {
226  return SDL_SetError("SDL_BlendPoint(): Unsupported surface format");
227  }
228 
229  /* Perform clipping */
230  if (x < dst->clip_rect.x || y < dst->clip_rect.y ||
231  x >= (dst->clip_rect.x + dst->clip_rect.w) ||
232  y >= (dst->clip_rect.y + dst->clip_rect.h)) {
233  return 0;
234  }
235 
237  r = DRAW_MUL(r, a);
238  g = DRAW_MUL(g, a);
239  b = DRAW_MUL(b, a);
240  }
241 
242  switch (dst->format->BitsPerPixel) {
243  case 15:
244  switch (dst->format->Rmask) {
245  case 0x7C00:
246  return SDL_BlendPoint_RGB555(dst, x, y, blendMode, r, g, b, a);
247  }
248  break;
249  case 16:
250  switch (dst->format->Rmask) {
251  case 0xF800:
252  return SDL_BlendPoint_RGB565(dst, x, y, blendMode, r, g, b, a);
253  }
254  break;
255  case 32:
256  switch (dst->format->Rmask) {
257  case 0x00FF0000:
258  if (!dst->format->Amask) {
259  return SDL_BlendPoint_RGB888(dst, x, y, blendMode, r, g, b, a);
260  } else {
261  return SDL_BlendPoint_ARGB8888(dst, x, y, blendMode, r, g, b, a);
262  }
263  /* break; -Wunreachable-code-break */
264  }
265  break;
266  default:
267  break;
268  }
269 
270  if (!dst->format->Amask) {
271  return SDL_BlendPoint_RGB(dst, x, y, blendMode, r, g, b, a);
272  } else {
273  return SDL_BlendPoint_RGBA(dst, x, y, blendMode, r, g, b, a);
274  }
275 }

References blendMode, DRAW_MUL, SDL_BLENDMODE_ADD, SDL_BLENDMODE_BLEND, SDL_BlendPoint_ARGB8888(), SDL_BlendPoint_RGB(), SDL_BlendPoint_RGB555(), SDL_BlendPoint_RGB565(), SDL_BlendPoint_RGB888(), SDL_BlendPoint_RGBA(), and SDL_SetError.

Referenced by SDL_BlendLines().

◆ SDL_BlendPoint_ARGB8888()

static int SDL_BlendPoint_ARGB8888 ( SDL_Surface dst,
int  x,
int  y,
SDL_BlendMode  blendMode,
Uint8  r,
Uint8  g,
Uint8  b,
Uint8  a 
)
static

Definition at line 108 of file SDL_blendpoint.c.

110 {
111  unsigned inva = 0xff - a;
112 
113  switch (blendMode) {
114  case SDL_BLENDMODE_BLEND:
116  break;
117  case SDL_BLENDMODE_ADD:
119  break;
120  case SDL_BLENDMODE_MOD:
122  break;
123  case SDL_BLENDMODE_MUL:
125  break;
126  default:
128  break;
129  }
130  return 0;
131 }

References blendMode, DRAW_SETPIXELXY_ADD_ARGB8888, DRAW_SETPIXELXY_ARGB8888, DRAW_SETPIXELXY_BLEND_ARGB8888, DRAW_SETPIXELXY_MOD_ARGB8888, DRAW_SETPIXELXY_MUL_ARGB8888, SDL_BLENDMODE_ADD, SDL_BLENDMODE_BLEND, SDL_BLENDMODE_MOD, and SDL_BLENDMODE_MUL.

Referenced by SDL_BlendPoint(), and SDL_BlendPoints().

◆ SDL_BlendPoint_RGB()

static int SDL_BlendPoint_RGB ( SDL_Surface dst,
int  x,
int  y,
SDL_BlendMode  blendMode,
Uint8  r,
Uint8  g,
Uint8  b,
Uint8  a 
)
static

Definition at line 134 of file SDL_blendpoint.c.

136 {
137  SDL_PixelFormat *fmt = dst->format;
138  unsigned inva = 0xff - a;
139 
140  switch (fmt->BytesPerPixel) {
141  case 2:
142  switch (blendMode) {
143  case SDL_BLENDMODE_BLEND:
145  break;
146  case SDL_BLENDMODE_ADD:
148  break;
149  case SDL_BLENDMODE_MOD:
151  break;
152  case SDL_BLENDMODE_MUL:
154  break;
155  default:
157  break;
158  }
159  return 0;
160  case 4:
161  switch (blendMode) {
162  case SDL_BLENDMODE_BLEND:
164  break;
165  case SDL_BLENDMODE_ADD:
167  break;
168  case SDL_BLENDMODE_MOD:
170  break;
171  case SDL_BLENDMODE_MUL:
173  break;
174  default:
176  break;
177  }
178  return 0;
179  default:
180  return SDL_Unsupported();
181  }
182 }

References blendMode, SDL_PixelFormat::BytesPerPixel, DRAW_SETPIXELXY2_ADD_RGB, DRAW_SETPIXELXY2_BLEND_RGB, DRAW_SETPIXELXY2_MOD_RGB, DRAW_SETPIXELXY2_MUL_RGB, DRAW_SETPIXELXY2_RGB, DRAW_SETPIXELXY4_ADD_RGB, DRAW_SETPIXELXY4_BLEND_RGB, DRAW_SETPIXELXY4_MOD_RGB, DRAW_SETPIXELXY4_MUL_RGB, DRAW_SETPIXELXY4_RGB, SDL_PixelFormat::format, SDL_BLENDMODE_ADD, SDL_BLENDMODE_BLEND, SDL_BLENDMODE_MOD, SDL_BLENDMODE_MUL, and SDL_Unsupported.

Referenced by SDL_BlendPoint(), and SDL_BlendPoints().

◆ SDL_BlendPoint_RGB555()

static int SDL_BlendPoint_RGB555 ( SDL_Surface dst,
int  x,
int  y,
SDL_BlendMode  blendMode,
Uint8  r,
Uint8  g,
Uint8  b,
Uint8  a 
)
static

Definition at line 30 of file SDL_blendpoint.c.

32 {
33  unsigned inva = 0xff - a;
34 
35  switch (blendMode) {
38  break;
39  case SDL_BLENDMODE_ADD:
41  break;
42  case SDL_BLENDMODE_MOD:
44  break;
45  case SDL_BLENDMODE_MUL:
47  break;
48  default:
50  break;
51  }
52  return 0;
53 }

References blendMode, DRAW_SETPIXELXY_ADD_RGB555, DRAW_SETPIXELXY_BLEND_RGB555, DRAW_SETPIXELXY_MOD_RGB555, DRAW_SETPIXELXY_MUL_RGB555, DRAW_SETPIXELXY_RGB555, SDL_BLENDMODE_ADD, SDL_BLENDMODE_BLEND, SDL_BLENDMODE_MOD, and SDL_BLENDMODE_MUL.

Referenced by SDL_BlendPoint(), and SDL_BlendPoints().

◆ SDL_BlendPoint_RGB565()

static int SDL_BlendPoint_RGB565 ( SDL_Surface dst,
int  x,
int  y,
SDL_BlendMode  blendMode,
Uint8  r,
Uint8  g,
Uint8  b,
Uint8  a 
)
static

Definition at line 56 of file SDL_blendpoint.c.

58 {
59  unsigned inva = 0xff - a;
60 
61  switch (blendMode) {
64  break;
65  case SDL_BLENDMODE_ADD:
67  break;
68  case SDL_BLENDMODE_MOD:
70  break;
71  case SDL_BLENDMODE_MUL:
73  break;
74  default:
76  break;
77  }
78  return 0;
79 }

References blendMode, DRAW_SETPIXELXY_ADD_RGB565, DRAW_SETPIXELXY_BLEND_RGB565, DRAW_SETPIXELXY_MOD_RGB565, DRAW_SETPIXELXY_MUL_RGB565, DRAW_SETPIXELXY_RGB565, SDL_BLENDMODE_ADD, SDL_BLENDMODE_BLEND, SDL_BLENDMODE_MOD, and SDL_BLENDMODE_MUL.

Referenced by SDL_BlendPoint(), and SDL_BlendPoints().

◆ SDL_BlendPoint_RGB888()

static int SDL_BlendPoint_RGB888 ( SDL_Surface dst,
int  x,
int  y,
SDL_BlendMode  blendMode,
Uint8  r,
Uint8  g,
Uint8  b,
Uint8  a 
)
static

Definition at line 82 of file SDL_blendpoint.c.

84 {
85  unsigned inva = 0xff - a;
86 
87  switch (blendMode) {
90  break;
91  case SDL_BLENDMODE_ADD:
93  break;
94  case SDL_BLENDMODE_MOD:
96  break;
97  case SDL_BLENDMODE_MUL:
99  break;
100  default:
102  break;
103  }
104  return 0;
105 }

References blendMode, DRAW_SETPIXELXY_ADD_RGB888, DRAW_SETPIXELXY_BLEND_RGB888, DRAW_SETPIXELXY_MOD_RGB888, DRAW_SETPIXELXY_MUL_RGB888, DRAW_SETPIXELXY_RGB888, SDL_BLENDMODE_ADD, SDL_BLENDMODE_BLEND, SDL_BLENDMODE_MOD, and SDL_BLENDMODE_MUL.

Referenced by SDL_BlendPoint(), and SDL_BlendPoints().

◆ SDL_BlendPoint_RGBA()

static int SDL_BlendPoint_RGBA ( SDL_Surface dst,
int  x,
int  y,
SDL_BlendMode  blendMode,
Uint8  r,
Uint8  g,
Uint8  b,
Uint8  a 
)
static

Definition at line 185 of file SDL_blendpoint.c.

187 {
188  SDL_PixelFormat *fmt = dst->format;
189  unsigned inva = 0xff - a;
190 
191  switch (fmt->BytesPerPixel) {
192  case 4:
193  switch (blendMode) {
194  case SDL_BLENDMODE_BLEND:
196  break;
197  case SDL_BLENDMODE_ADD:
199  break;
200  case SDL_BLENDMODE_MOD:
202  break;
203  case SDL_BLENDMODE_MUL:
205  break;
206  default:
208  break;
209  }
210  return 0;
211  default:
212  return SDL_Unsupported();
213  }
214 }

References blendMode, SDL_PixelFormat::BytesPerPixel, DRAW_SETPIXELXY4_ADD_RGBA, DRAW_SETPIXELXY4_BLEND_RGBA, DRAW_SETPIXELXY4_MOD_RGBA, DRAW_SETPIXELXY4_MUL_RGBA, DRAW_SETPIXELXY4_RGBA, SDL_PixelFormat::format, SDL_BLENDMODE_ADD, SDL_BLENDMODE_BLEND, SDL_BLENDMODE_MOD, SDL_BLENDMODE_MUL, and SDL_Unsupported.

Referenced by SDL_BlendPoint(), and SDL_BlendPoints().

◆ SDL_BlendPoints()

int SDL_BlendPoints ( SDL_Surface dst,
const SDL_Point points,
int  count,
SDL_BlendMode  blendMode,
Uint8  r,
Uint8  g,
Uint8  b,
Uint8  a 
)

Definition at line 278 of file SDL_blendpoint.c.

280 {
281  int minx, miny;
282  int maxx, maxy;
283  int i;
284  int x, y;
285  int (*func)(SDL_Surface * dst, int x, int y,
287  int status = 0;
288 
289  if (!dst) {
290  return SDL_SetError("Passed NULL destination surface");
291  }
292 
293  /* This function doesn't work on surfaces < 8 bpp */
294  if (dst->format->BitsPerPixel < 8) {
295  return SDL_SetError("SDL_BlendPoints(): Unsupported surface format");
296  }
297 
299  r = DRAW_MUL(r, a);
300  g = DRAW_MUL(g, a);
301  b = DRAW_MUL(b, a);
302  }
303 
304  /* FIXME: Does this function pointer slow things down significantly? */
305  switch (dst->format->BitsPerPixel) {
306  case 15:
307  switch (dst->format->Rmask) {
308  case 0x7C00:
310  break;
311  }
312  break;
313  case 16:
314  switch (dst->format->Rmask) {
315  case 0xF800:
317  break;
318  }
319  break;
320  case 32:
321  switch (dst->format->Rmask) {
322  case 0x00FF0000:
323  if (!dst->format->Amask) {
325  } else {
327  }
328  break;
329  }
330  break;
331  default:
332  break;
333  }
334 
335  if (!func) {
336  if (!dst->format->Amask) {
338  } else {
340  }
341  }
342 
343  minx = dst->clip_rect.x;
344  maxx = dst->clip_rect.x + dst->clip_rect.w - 1;
345  miny = dst->clip_rect.y;
346  maxy = dst->clip_rect.y + dst->clip_rect.h - 1;
347 
348  for (i = 0; i < count; ++i) {
349  x = points[i].x;
350  y = points[i].y;
351 
352  if (x < minx || x > maxx || y < miny || y > maxy) {
353  continue;
354  }
355  status = func(dst, x, y, blendMode, r, g, b, a);
356  }
357  return status;
358 }

References blendMode, DRAW_MUL, i, NULL, SDL_BLENDMODE_ADD, SDL_BLENDMODE_BLEND, SDL_BlendPoint_ARGB8888(), SDL_BlendPoint_RGB(), SDL_BlendPoint_RGB555(), SDL_BlendPoint_RGB565(), SDL_BlendPoint_RGB888(), SDL_BlendPoint_RGBA(), and SDL_SetError.

Referenced by SW_RunCommandQueue().

points
GLfixed GLfixed GLint GLint GLfixed points
Definition: SDL_opengl_glext.h:4561
DRAW_SETPIXELXY4_MUL_RGB
#define DRAW_SETPIXELXY4_MUL_RGB(x, y)
Definition: SDL_draw.h:303
SDL_PixelFormat::BytesPerPixel
Uint8 BytesPerPixel
Definition: SDL_pixels.h:323
blendMode
static SDL_BlendMode blendMode
Definition: testdraw2.c:34
DRAW_SETPIXELXY_ARGB8888
#define DRAW_SETPIXELXY_ARGB8888(x, y)
Definition: SDL_draw.h:238
SDL_Surface
A collection of pixels used in software blitting.
Definition: SDL_surface.h:70
SDL_BLENDMODE_ADD
@ SDL_BLENDMODE_ADD
Definition: SDL_blendmode.h:47
NULL
#define NULL
Definition: begin_code.h:167
SDL_PixelFormat::format
Uint32 format
Definition: SDL_pixels.h:320
b
GLboolean GLboolean GLboolean b
Definition: SDL_opengl_glext.h:1112
DRAW_SETPIXELXY4_BLEND_RGBA
#define DRAW_SETPIXELXY4_BLEND_RGBA(x, y)
Definition: SDL_draw.h:333
g
GLboolean GLboolean g
Definition: SDL_opengl_glext.h:1112
DRAW_SETPIXELXY2_MUL_RGB
#define DRAW_SETPIXELXY2_MUL_RGB(x, y)
Definition: SDL_draw.h:300
DRAW_SETPIXELXY_MUL_RGB888
#define DRAW_SETPIXELXY_MUL_RGB888(x, y)
Definition: SDL_draw.h:212
count
GLuint GLuint GLsizei count
Definition: SDL_opengl.h:1571
DRAW_SETPIXELXY4_RGB
#define DRAW_SETPIXELXY4_RGB(x, y)
Definition: SDL_draw.h:279
DRAW_SETPIXELXY_MUL_ARGB8888
#define DRAW_SETPIXELXY_MUL_ARGB8888(x, y)
Definition: SDL_draw.h:250
DRAW_SETPIXELXY2_ADD_RGB
#define DRAW_SETPIXELXY2_ADD_RGB(x, y)
Definition: SDL_draw.h:288
r
GLdouble GLdouble GLdouble r
Definition: SDL_opengl.h:2079
SDL_BlendPoint_RGBA
static int SDL_BlendPoint_RGBA(SDL_Surface *dst, int x, int y, SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
Definition: SDL_blendpoint.c:185
DRAW_SETPIXELXY2_RGB
#define DRAW_SETPIXELXY2_RGB(x, y)
Definition: SDL_draw.h:276
a
GLboolean GLboolean GLboolean GLboolean a
Definition: SDL_opengl_glext.h:1112
func
GLenum func
Definition: SDL_opengl_glext.h:660
DRAW_SETPIXELXY_RGB888
#define DRAW_SETPIXELXY_RGB888(x, y)
Definition: SDL_draw.h:200
dst
GLenum GLenum dst
Definition: SDL_opengl_glext.h:1740
SDL_BlendPoint_RGB565
static int SDL_BlendPoint_RGB565(SDL_Surface *dst, int x, int y, SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
Definition: SDL_blendpoint.c:56
DRAW_SETPIXELXY_ADD_RGB555
#define DRAW_SETPIXELXY_ADD_RGB555(x, y)
Definition: SDL_draw.h:130
SDL_BLENDMODE_MOD
@ SDL_BLENDMODE_MOD
Definition: SDL_blendmode.h:50
DRAW_SETPIXELXY4_MUL_RGBA
#define DRAW_SETPIXELXY4_MUL_RGBA(x, y)
Definition: SDL_draw.h:342
DRAW_SETPIXELXY_ADD_RGB565
#define DRAW_SETPIXELXY_ADD_RGB565(x, y)
Definition: SDL_draw.h:168
DRAW_SETPIXELXY2_MOD_RGB
#define DRAW_SETPIXELXY2_MOD_RGB(x, y)
Definition: SDL_draw.h:294
x
GLint GLint GLint GLint GLint x
Definition: SDL_opengl.h:1574
DRAW_SETPIXELXY4_MOD_RGBA
#define DRAW_SETPIXELXY4_MOD_RGBA(x, y)
Definition: SDL_draw.h:339
SDL_BLENDMODE_MUL
@ SDL_BLENDMODE_MUL
Definition: SDL_blendmode.h:53
DRAW_SETPIXELXY_MOD_RGB888
#define DRAW_SETPIXELXY_MOD_RGB888(x, y)
Definition: SDL_draw.h:209
DRAW_SETPIXELXY4_ADD_RGB
#define DRAW_SETPIXELXY4_ADD_RGB(x, y)
Definition: SDL_draw.h:291
DRAW_SETPIXELXY_MOD_ARGB8888
#define DRAW_SETPIXELXY_MOD_ARGB8888(x, y)
Definition: SDL_draw.h:247
DRAW_SETPIXELXY_BLEND_ARGB8888
#define DRAW_SETPIXELXY_BLEND_ARGB8888(x, y)
Definition: SDL_draw.h:241
SDL_BlendPoint_RGB
static int SDL_BlendPoint_RGB(SDL_Surface *dst, int x, int y, SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
Definition: SDL_blendpoint.c:134
DRAW_SETPIXELXY_ADD_ARGB8888
#define DRAW_SETPIXELXY_ADD_ARGB8888(x, y)
Definition: SDL_draw.h:244
DRAW_SETPIXELXY_BLEND_RGB565
#define DRAW_SETPIXELXY_BLEND_RGB565(x, y)
Definition: SDL_draw.h:165
DRAW_SETPIXELXY_RGB555
#define DRAW_SETPIXELXY_RGB555(x, y)
Definition: SDL_draw.h:124
SDL_PixelFormat
Definition: SDL_pixels.h:318
DRAW_MUL
#define DRAW_MUL(_a, _b)
Definition: SDL_draw.h:29
DRAW_SETPIXELXY4_RGBA
#define DRAW_SETPIXELXY4_RGBA(x, y)
Definition: SDL_draw.h:330
DRAW_SETPIXELXY2_BLEND_RGB
#define DRAW_SETPIXELXY2_BLEND_RGB(x, y)
Definition: SDL_draw.h:282
DRAW_SETPIXELXY_MOD_RGB565
#define DRAW_SETPIXELXY_MOD_RGB565(x, y)
Definition: SDL_draw.h:171
SDL_BLENDMODE_BLEND
@ SDL_BLENDMODE_BLEND
Definition: SDL_blendmode.h:44
y
GLint GLint GLint GLint GLint GLint y
Definition: SDL_opengl.h:1574
DRAW_SETPIXELXY4_MOD_RGB
#define DRAW_SETPIXELXY4_MOD_RGB(x, y)
Definition: SDL_draw.h:297
DRAW_SETPIXELXY_MOD_RGB555
#define DRAW_SETPIXELXY_MOD_RGB555(x, y)
Definition: SDL_draw.h:133
DRAW_SETPIXELXY_MUL_RGB565
#define DRAW_SETPIXELXY_MUL_RGB565(x, y)
Definition: SDL_draw.h:174
SDL_SetError
#define SDL_SetError
Definition: SDL_dynapi_overrides.h:30
DRAW_SETPIXELXY_BLEND_RGB888
#define DRAW_SETPIXELXY_BLEND_RGB888(x, y)
Definition: SDL_draw.h:203
DRAW_SETPIXELXY4_BLEND_RGB
#define DRAW_SETPIXELXY4_BLEND_RGB(x, y)
Definition: SDL_draw.h:285
DRAW_SETPIXELXY_BLEND_RGB555
#define DRAW_SETPIXELXY_BLEND_RGB555(x, y)
Definition: SDL_draw.h:127
DRAW_SETPIXELXY_RGB565
#define DRAW_SETPIXELXY_RGB565(x, y)
Definition: SDL_draw.h:162
SDL_BlendPoint_RGB555
static int SDL_BlendPoint_RGB555(SDL_Surface *dst, int x, int y, SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
Definition: SDL_blendpoint.c:30
SDL_BlendPoint_RGB888
static int SDL_BlendPoint_RGB888(SDL_Surface *dst, int x, int y, SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
Definition: SDL_blendpoint.c:82
DRAW_SETPIXELXY_ADD_RGB888
#define DRAW_SETPIXELXY_ADD_RGB888(x, y)
Definition: SDL_draw.h:206
SDL_Unsupported
#define SDL_Unsupported()
Definition: SDL_error.h:53
DRAW_SETPIXELXY_MUL_RGB555
#define DRAW_SETPIXELXY_MUL_RGB555(x, y)
Definition: SDL_draw.h:136
SDL_BlendMode
SDL_BlendMode
The blend mode used in SDL_RenderCopy() and drawing operations.
Definition: SDL_blendmode.h:40
i
return Display return Display Bool Bool int int int return Display XEvent Bool(*) XPointer return Display return Display Drawable _Xconst char unsigned int unsigned int return Display Pixmap Pixmap XColor XColor unsigned int unsigned int return Display _Xconst char char int char return Display Visual unsigned int int int char unsigned int unsigned int in i)
Definition: SDL_x11sym.h:50
DRAW_SETPIXELXY4_ADD_RGBA
#define DRAW_SETPIXELXY4_ADD_RGBA(x, y)
Definition: SDL_draw.h:336
SDL_BlendPoint_ARGB8888
static int SDL_BlendPoint_ARGB8888(SDL_Surface *dst, int x, int y, SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
Definition: SDL_blendpoint.c:108
Uint8
uint8_t Uint8
Definition: SDL_stdinc.h:179