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

Latest commit

 

History

History
747 lines (645 loc) · 23.4 KB

SDL_renderer_sw.c

File metadata and controls

747 lines (645 loc) · 23.4 KB
 
1
2
/*
SDL - Simple DirectMedia Layer
Jan 24, 2010
Jan 24, 2010
3
Copyright (C) 1997-2010 Sam Lantinga
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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"
#include "SDL_video.h"
#include "SDL_sysvideo.h"
Jul 15, 2006
Jul 15, 2006
26
#include "SDL_pixels_c.h"
27
28
#include "SDL_rect_c.h"
#include "SDL_yuv_sw_c.h"
Jun 26, 2010
Jun 26, 2010
29
#include "SDL_renderer_sw.h"
30
31
32
33
/* SDL surface based renderer implementation */
Jul 19, 2006
Jul 19, 2006
34
static SDL_Renderer *SW_CreateRenderer(SDL_Window * window, Uint32 flags);
Feb 2, 2011
Feb 2, 2011
35
36
static void SW_WindowEvent(SDL_Renderer * renderer,
const SDL_WindowEvent *event);
Jul 19, 2006
Jul 19, 2006
37
38
39
40
static int SW_CreateTexture(SDL_Renderer * renderer, SDL_Texture * texture);
static int SW_QueryTexturePixels(SDL_Renderer * renderer,
SDL_Texture * texture, void **pixels,
int *pitch);
Aug 28, 2006
Aug 28, 2006
41
42
43
44
static int SW_SetTextureColorMod(SDL_Renderer * renderer,
SDL_Texture * texture);
static int SW_SetTextureAlphaMod(SDL_Renderer * renderer,
SDL_Texture * texture);
Feb 1, 2011
Feb 1, 2011
45
46
static int SW_SetTextureBlendMode(SDL_Renderer * renderer,
SDL_Texture * texture);
Aug 28, 2006
Aug 28, 2006
47
48
49
static int SW_UpdateTexture(SDL_Renderer * renderer, SDL_Texture * texture,
const SDL_Rect * rect, const void *pixels,
int pitch);
Jul 19, 2006
Jul 19, 2006
50
static int SW_LockTexture(SDL_Renderer * renderer, SDL_Texture * texture,
Aug 28, 2006
Aug 28, 2006
51
52
const SDL_Rect * rect, int markDirty, void **pixels,
int *pitch);
Jul 19, 2006
Jul 19, 2006
53
static void SW_UnlockTexture(SDL_Renderer * renderer, SDL_Texture * texture);
Dec 23, 2009
Dec 23, 2009
54
55
56
57
58
59
static int SW_RenderDrawPoints(SDL_Renderer * renderer,
const SDL_Point * points, int count);
static int SW_RenderDrawLines(SDL_Renderer * renderer,
const SDL_Point * points, int count);
static int SW_RenderFillRects(SDL_Renderer * renderer,
const SDL_Rect ** rects, int count);
Jul 19, 2006
Jul 19, 2006
60
static int SW_RenderCopy(SDL_Renderer * renderer, SDL_Texture * texture,
Aug 28, 2006
Aug 28, 2006
61
const SDL_Rect * srcrect, const SDL_Rect * dstrect);
Nov 9, 2009
Nov 9, 2009
62
static int SW_RenderReadPixels(SDL_Renderer * renderer, const SDL_Rect * rect,
Nov 16, 2009
Nov 16, 2009
63
Uint32 format, void * pixels, int pitch);
Nov 9, 2009
Nov 9, 2009
64
static int SW_RenderWritePixels(SDL_Renderer * renderer, const SDL_Rect * rect,
Nov 16, 2009
Nov 16, 2009
65
Uint32 format, const void * pixels, int pitch);
Jul 19, 2006
Jul 19, 2006
66
67
68
69
70
71
72
static void SW_RenderPresent(SDL_Renderer * renderer);
static void SW_DestroyTexture(SDL_Renderer * renderer, SDL_Texture * texture);
static void SW_DestroyRenderer(SDL_Renderer * renderer);
SDL_RenderDriver SW_RenderDriver = {
SW_CreateRenderer,
Feb 1, 2011
Feb 1, 2011
75
(SDL_RENDERER_PRESENTVSYNC),
Feb 2, 2011
Feb 2, 2011
76
13,
Aug 5, 2006
Aug 5, 2006
78
79
80
81
82
83
84
85
SDL_PIXELFORMAT_RGB555,
SDL_PIXELFORMAT_RGB565,
SDL_PIXELFORMAT_RGB888,
SDL_PIXELFORMAT_BGR888,
SDL_PIXELFORMAT_ARGB8888,
SDL_PIXELFORMAT_RGBA8888,
SDL_PIXELFORMAT_ABGR8888,
SDL_PIXELFORMAT_BGRA8888,
Nov 30, 2008
Nov 30, 2008
86
87
SDL_PIXELFORMAT_YV12,
SDL_PIXELFORMAT_IYUV,
Aug 5, 2006
Aug 5, 2006
88
SDL_PIXELFORMAT_YUY2,
Nov 30, 2008
Nov 30, 2008
89
90
SDL_PIXELFORMAT_UYVY,
SDL_PIXELFORMAT_YVYU},
91
92
93
94
95
96
0,
0}
};
typedef struct
{
Jul 15, 2006
Jul 15, 2006
97
Uint32 format;
Aug 6, 2006
Aug 6, 2006
98
SDL_bool updateSize;
Feb 1, 2011
Feb 1, 2011
99
SDL_Texture *texture;
Jul 15, 2006
Jul 15, 2006
100
SDL_Surface surface;
101
102
SDL_Renderer *renderer;
SDL_DirtyRectList dirty;
Jul 19, 2006
Jul 19, 2006
103
} SW_RenderData;
Jul 15, 2006
Jul 15, 2006
105
106
107
108
109
static SDL_Texture *
CreateTexture(SDL_Renderer * renderer, Uint32 format, int w, int h)
{
SDL_Texture *texture;
Jul 22, 2006
Jul 22, 2006
110
texture = (SDL_Texture *) SDL_calloc(1, sizeof(*texture));
Jul 15, 2006
Jul 15, 2006
111
112
113
114
115
116
if (!texture) {
SDL_OutOfMemory();
return NULL;
}
texture->format = format;
Aug 11, 2007
Aug 11, 2007
117
texture->access = SDL_TEXTUREACCESS_STREAMING;
Jul 15, 2006
Jul 15, 2006
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
texture->w = w;
texture->h = h;
texture->renderer = renderer;
if (renderer->CreateTexture(renderer, texture) < 0) {
SDL_free(texture);
return NULL;
}
return texture;
}
static void
DestroyTexture(SDL_Renderer * renderer, SDL_Texture * texture)
{
renderer->DestroyTexture(renderer, texture);
SDL_free(texture);
}
Aug 11, 2007
Aug 11, 2007
136
137
138
139
140
141
142
void
Setup_SoftwareRenderer(SDL_Renderer * renderer)
{
renderer->CreateTexture = SW_CreateTexture;
renderer->QueryTexturePixels = SW_QueryTexturePixels;
renderer->SetTextureColorMod = SW_SetTextureColorMod;
renderer->SetTextureAlphaMod = SW_SetTextureAlphaMod;
Feb 1, 2011
Feb 1, 2011
143
renderer->SetTextureBlendMode = SW_SetTextureBlendMode;
Aug 11, 2007
Aug 11, 2007
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
renderer->UpdateTexture = SW_UpdateTexture;
renderer->LockTexture = SW_LockTexture;
renderer->UnlockTexture = SW_UnlockTexture;
renderer->DestroyTexture = SW_DestroyTexture;
renderer->info.num_texture_formats =
SW_RenderDriver.info.num_texture_formats;
SDL_memcpy(renderer->info.texture_formats,
SW_RenderDriver.info.texture_formats,
sizeof(renderer->info.texture_formats));;
renderer->info.max_texture_width = SW_RenderDriver.info.max_texture_width;
renderer->info.max_texture_height =
SW_RenderDriver.info.max_texture_height;
}
Jul 19, 2006
Jul 19, 2006
160
SW_CreateRenderer(SDL_Window * window, Uint32 flags)
Jan 21, 2010
Jan 21, 2010
162
SDL_VideoDisplay *display = window->display;
163
164
SDL_DisplayMode *displayMode = &display->current_mode;
SDL_Renderer *renderer;
Jul 19, 2006
Jul 19, 2006
165
SW_RenderData *data;
166
167
168
int i, n;
int bpp;
Uint32 Rmask, Gmask, Bmask, Amask;
Jul 15, 2006
Jul 15, 2006
169
Uint32 renderer_flags;
Jul 23, 2006
Jul 23, 2006
170
const char *desired_driver;
171
172
173
174
175
176
177
178
179
180
181
182
183
if (!SDL_PixelFormatEnumToMasks
(displayMode->format, &bpp, &Rmask, &Gmask, &Bmask, &Amask)) {
SDL_SetError("Unknown display format");
return NULL;
}
renderer = (SDL_Renderer *) SDL_calloc(1, sizeof(*renderer));
if (!renderer) {
SDL_OutOfMemory();
return NULL;
}
Jul 22, 2006
Jul 22, 2006
184
data = (SW_RenderData *) SDL_calloc(1, sizeof(*data));
Jul 19, 2006
Jul 19, 2006
186
SW_DestroyRenderer(renderer);
187
188
189
SDL_OutOfMemory();
return NULL;
}
Feb 2, 2011
Feb 2, 2011
190
renderer->WindowEvent = SW_WindowEvent;
Dec 20, 2008
Dec 20, 2008
191
Dec 23, 2009
Dec 23, 2009
192
193
194
renderer->RenderDrawPoints = SW_RenderDrawPoints;
renderer->RenderDrawLines = SW_RenderDrawLines;
renderer->RenderFillRects = SW_RenderFillRects;
Jul 19, 2006
Jul 19, 2006
195
renderer->RenderCopy = SW_RenderCopy;
Nov 9, 2009
Nov 9, 2009
196
197
renderer->RenderReadPixels = SW_RenderReadPixels;
renderer->RenderWritePixels = SW_RenderWritePixels;
Jul 19, 2006
Jul 19, 2006
198
199
renderer->RenderPresent = SW_RenderPresent;
renderer->DestroyRenderer = SW_DestroyRenderer;
Aug 11, 2007
Aug 11, 2007
200
201
renderer->info.name = SW_RenderDriver.info.name;
renderer->info.flags = 0;
Jan 21, 2010
Jan 21, 2010
202
renderer->window = window;
203
renderer->driverdata = data;
Aug 11, 2007
Aug 11, 2007
204
Setup_SoftwareRenderer(renderer);
Feb 1, 2011
Feb 1, 2011
206
n = 1;
Jul 15, 2006
Jul 15, 2006
207
data->format = displayMode->format;
208
209
/* Find a render driver that we can use to display data */
Feb 1, 2011
Feb 1, 2011
210
renderer_flags = 0;
Aug 5, 2006
Aug 5, 2006
211
212
if (flags & SDL_RENDERER_PRESENTVSYNC) {
renderer_flags |= SDL_RENDERER_PRESENTVSYNC;
Jul 15, 2006
Jul 15, 2006
213
}
Jul 23, 2006
Jul 23, 2006
214
desired_driver = SDL_getenv("SDL_VIDEO_RENDERER_SWDRIVER");
215
216
for (i = 0; i < display->num_render_drivers; ++i) {
SDL_RenderDriver *driver = &display->render_drivers[i];
Jul 23, 2006
Jul 23, 2006
217
218
219
220
221
222
223
224
225
226
if (driver->info.name == SW_RenderDriver.info.name) {
continue;
}
if (desired_driver
&& SDL_strcasecmp(desired_driver, driver->info.name) != 0) {
continue;
}
data->renderer = driver->CreateRenderer(window, renderer_flags);
if (data->renderer) {
break;
227
228
229
}
}
if (i == display->num_render_drivers) {
Jul 19, 2006
Jul 19, 2006
230
SW_DestroyRenderer(renderer);
231
232
233
SDL_SetError("Couldn't find display render driver");
return NULL;
}
Aug 5, 2006
Aug 5, 2006
234
235
if (data->renderer->info.flags & SDL_RENDERER_PRESENTVSYNC) {
renderer->info.flags |= SDL_RENDERER_PRESENTVSYNC;
Jul 15, 2006
Jul 15, 2006
236
237
238
}
/* Create the textures we'll use for display */
Feb 1, 2011
Feb 1, 2011
239
240
241
242
243
data->texture =
CreateTexture(data->renderer, data->format, window->w, window->h);
if (!data->texture) {
SW_DestroyRenderer(renderer);
return NULL;
Jul 15, 2006
Jul 15, 2006
244
245
246
247
248
249
}
/* Create a surface we'll use for rendering */
data->surface.flags = SDL_PREALLOC;
data->surface.format = SDL_AllocFormat(bpp, Rmask, Gmask, Bmask, Amask);
if (!data->surface.format) {
Jul 19, 2006
Jul 19, 2006
250
SW_DestroyRenderer(renderer);
Jul 15, 2006
Jul 15, 2006
251
252
253
return NULL;
}
254
255
256
return renderer;
}
Feb 2, 2011
Feb 2, 2011
257
static SDL_Texture *
Aug 6, 2006
Aug 6, 2006
258
259
260
SW_ActivateRenderer(SDL_Renderer * renderer)
{
SW_RenderData *data = (SW_RenderData *) renderer->driverdata;
Jan 21, 2010
Jan 21, 2010
261
SDL_Window *window = renderer->window;
Aug 6, 2006
Aug 6, 2006
262
Aug 6, 2006
Aug 6, 2006
263
264
if (data->updateSize) {
/* Recreate the textures for the new window size */
Feb 1, 2011
Feb 1, 2011
265
266
if (data->texture) {
DestroyTexture(data->renderer, data->texture);
Aug 6, 2006
Aug 6, 2006
267
}
Feb 1, 2011
Feb 1, 2011
268
269
data->texture = CreateTexture(data->renderer, data->format,
window->w, window->h);
Feb 2, 2011
Feb 2, 2011
270
271
if (data->texture) {
data->updateSize = SDL_FALSE;
Aug 6, 2006
Aug 6, 2006
272
273
}
}
Feb 2, 2011
Feb 2, 2011
274
return data->texture;
Aug 6, 2006
Aug 6, 2006
275
276
}
Feb 2, 2011
Feb 2, 2011
277
278
static void
SW_WindowEvent(SDL_Renderer * renderer, const SDL_WindowEvent *event)
Aug 6, 2006
Aug 6, 2006
279
280
281
{
SW_RenderData *data = (SW_RenderData *) renderer->driverdata;
Feb 2, 2011
Feb 2, 2011
282
283
if (event->event == SDL_WINDOWEVENT_RESIZED) {
data->updateSize = SDL_TRUE;
Aug 6, 2006
Aug 6, 2006
284
285
286
}
}
Jul 19, 2006
Jul 19, 2006
288
SW_CreateTexture(SDL_Renderer * renderer, SDL_Texture * texture)
289
290
{
if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
Nov 25, 2008
Nov 25, 2008
291
292
texture->driverdata =
SDL_SW_CreateYUVTexture(texture->format, texture->w, texture->h);
293
294
295
296
297
298
299
300
301
302
303
304
305
} else {
int bpp;
Uint32 Rmask, Gmask, Bmask, Amask;
if (!SDL_PixelFormatEnumToMasks
(texture->format, &bpp, &Rmask, &Gmask, &Bmask, &Amask)) {
SDL_SetError("Unknown texture format");
return -1;
}
texture->driverdata =
SDL_CreateRGBSurface(0, texture->w, texture->h, bpp, Rmask, Gmask,
Bmask, Amask);
Jan 30, 2009
Jan 30, 2009
306
307
308
309
310
SDL_SetSurfaceColorMod(texture->driverdata, texture->r, texture->g,
texture->b);
SDL_SetSurfaceAlphaMod(texture->driverdata, texture->a);
SDL_SetSurfaceBlendMode(texture->driverdata, texture->blendMode);
Nov 29, 2008
Nov 29, 2008
311
312
313
if (texture->access == SDL_TEXTUREACCESS_STATIC) {
SDL_SetSurfaceRLE(texture->driverdata, 1);
}
314
315
316
317
318
319
320
321
322
}
if (!texture->driverdata) {
return -1;
}
return 0;
}
static int
Jul 19, 2006
Jul 19, 2006
323
324
SW_QueryTexturePixels(SDL_Renderer * renderer, SDL_Texture * texture,
void **pixels, int *pitch)
325
326
{
if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
Aug 27, 2008
Aug 27, 2008
327
328
329
return SDL_SW_QueryYUVTexturePixels((SDL_SW_YUVTexture *)
texture->driverdata, pixels,
pitch);
330
331
332
333
334
335
336
337
338
} else {
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
*pixels = surface->pixels;
*pitch = surface->pitch;
return 0;
}
}
Aug 28, 2006
Aug 28, 2006
339
340
341
static int
SW_SetTextureColorMod(SDL_Renderer * renderer, SDL_Texture * texture)
{
Aug 18, 2007
Aug 18, 2007
342
343
344
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
return SDL_SetSurfaceColorMod(surface, texture->r, texture->g,
texture->b);
Aug 28, 2006
Aug 28, 2006
345
346
347
348
349
}
static int
SW_SetTextureAlphaMod(SDL_Renderer * renderer, SDL_Texture * texture)
{
Aug 18, 2007
Aug 18, 2007
350
351
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
return SDL_SetSurfaceAlphaMod(surface, texture->a);
Aug 28, 2006
Aug 28, 2006
352
353
354
355
356
}
static int
SW_SetTextureBlendMode(SDL_Renderer * renderer, SDL_Texture * texture)
{
Aug 18, 2007
Aug 18, 2007
357
358
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
return SDL_SetSurfaceBlendMode(surface, texture->blendMode);
Aug 28, 2006
Aug 28, 2006
359
360
}
Jul 19, 2006
Jul 19, 2006
362
363
SW_UpdateTexture(SDL_Renderer * renderer, SDL_Texture * texture,
const SDL_Rect * rect, const void *pixels, int pitch)
364
365
{
if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
Aug 27, 2008
Aug 27, 2008
366
367
368
return SDL_SW_UpdateYUVTexture((SDL_SW_YUVTexture *)
texture->driverdata, rect, pixels,
pitch);
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
} else {
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
Uint8 *src, *dst;
int row;
size_t length;
src = (Uint8 *) pixels;
dst =
(Uint8 *) surface->pixels + rect->y * surface->pitch +
rect->x * surface->format->BytesPerPixel;
length = rect->w * surface->format->BytesPerPixel;
for (row = 0; row < rect->h; ++row) {
SDL_memcpy(dst, src, length);
src += pitch;
dst += surface->pitch;
}
return 0;
}
}
static int
Jul 19, 2006
Jul 19, 2006
390
391
392
SW_LockTexture(SDL_Renderer * renderer, SDL_Texture * texture,
const SDL_Rect * rect, int markDirty, void **pixels,
int *pitch)
393
394
{
if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
Aug 27, 2008
Aug 27, 2008
395
396
397
return SDL_SW_LockYUVTexture((SDL_SW_YUVTexture *)
texture->driverdata, rect, markDirty,
pixels, pitch);
398
399
400
401
402
403
404
405
406
407
408
409
} else {
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
*pixels =
(void *) ((Uint8 *) surface->pixels + rect->y * surface->pitch +
rect->x * surface->format->BytesPerPixel);
*pitch = surface->pitch;
return 0;
}
}
static void
Jul 19, 2006
Jul 19, 2006
410
SW_UnlockTexture(SDL_Renderer * renderer, SDL_Texture * texture)
411
412
413
414
415
416
{
if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
SDL_SW_UnlockYUVTexture((SDL_SW_YUVTexture *) texture->driverdata);
}
}
Dec 21, 2008
Dec 21, 2008
417
static int
Dec 23, 2009
Dec 23, 2009
418
419
SW_RenderDrawPoints(SDL_Renderer * renderer, const SDL_Point * points,
int count)
Dec 21, 2008
Dec 21, 2008
420
421
{
SW_RenderData *data = (SW_RenderData *) renderer->driverdata;
Feb 2, 2011
Feb 2, 2011
422
SDL_Texture *texture = SW_ActivateRenderer(renderer);
Dec 21, 2008
Dec 21, 2008
423
SDL_Rect rect;
Dec 9, 2009
Dec 9, 2009
424
425
426
427
int i;
int x, y;
int status = 0;
Feb 2, 2011
Feb 2, 2011
428
429
430
431
if (!texture) {
return -1;
}
Dec 9, 2009
Dec 9, 2009
432
433
434
435
436
437
438
439
440
/* Get the smallest rectangle that contains everything */
rect.x = 0;
rect.y = 0;
rect.w = texture->w;
rect.h = texture->h;
if (!SDL_EnclosePoints(points, count, &rect, &rect)) {
/* Nothing to draw */
return 0;
}
Dec 21, 2008
Dec 21, 2008
441
Dec 9, 2009
Dec 9, 2009
442
if (data->renderer->LockTexture(data->renderer, texture, &rect, 1,
Dec 21, 2008
Dec 21, 2008
443
444
445
446
447
&data->surface.pixels,
&data->surface.pitch) < 0) {
return -1;
}
Dec 9, 2009
Dec 9, 2009
448
449
data->surface.clip_rect.w = data->surface.w = rect.w;
data->surface.clip_rect.h = data->surface.h = rect.h;
Dec 21, 2008
Dec 21, 2008
450
Dec 9, 2009
Dec 9, 2009
451
/* Draw the points! */
Feb 1, 2011
Feb 1, 2011
452
if (renderer->blendMode == SDL_BLENDMODE_NONE) {
Dec 9, 2009
Dec 9, 2009
453
454
455
456
457
458
459
Uint32 color = SDL_MapRGBA(data->surface.format,
renderer->r, renderer->g, renderer->b,
renderer->a);
for (i = 0; i < count; ++i) {
x = points[i].x - rect.x;
y = points[i].y - rect.y;
Dec 21, 2008
Dec 21, 2008
460
Dec 9, 2009
Dec 9, 2009
461
462
status = SDL_DrawPoint(&data->surface, x, y, color);
}
Dec 21, 2008
Dec 21, 2008
463
} else {
Dec 9, 2009
Dec 9, 2009
464
465
466
467
468
469
470
471
472
for (i = 0; i < count; ++i) {
x = points[i].x - rect.x;
y = points[i].y - rect.y;
status = SDL_BlendPoint(&data->surface, x, y,
renderer->blendMode,
renderer->r, renderer->g, renderer->b,
renderer->a);
}
Dec 21, 2008
Dec 21, 2008
473
474
}
Dec 9, 2009
Dec 9, 2009
475
476
data->renderer->UnlockTexture(data->renderer, texture);
Dec 21, 2008
Dec 21, 2008
477
478
479
return status;
}
Dec 20, 2008
Dec 20, 2008
480
static int
Dec 23, 2009
Dec 23, 2009
481
482
SW_RenderDrawLines(SDL_Renderer * renderer, const SDL_Point * points,
int count)
Dec 20, 2008
Dec 20, 2008
483
484
{
SW_RenderData *data = (SW_RenderData *) renderer->driverdata;
Feb 2, 2011
Feb 2, 2011
485
SDL_Texture *texture = SW_ActivateRenderer(renderer);
Dec 9, 2009
Dec 9, 2009
486
487
488
489
490
SDL_Rect clip, rect;
int i;
int x1, y1, x2, y2;
int status = 0;
Feb 2, 2011
Feb 2, 2011
491
492
493
494
if (!texture) {
return -1;
}
Dec 9, 2009
Dec 9, 2009
495
496
497
498
499
500
501
502
503
/* Get the smallest rectangle that contains everything */
clip.x = 0;
clip.y = 0;
clip.w = texture->w;
clip.h = texture->h;
SDL_EnclosePoints(points, count, NULL, &rect);
if (!SDL_IntersectRect(&rect, &clip, &rect)) {
/* Nothing to draw */
return 0;
Dec 21, 2008
Dec 21, 2008
504
}
Dec 20, 2008
Dec 20, 2008
505
Dec 9, 2009
Dec 9, 2009
506
if (data->renderer->LockTexture(data->renderer, texture, &rect, 1,
Dec 20, 2008
Dec 20, 2008
507
&data->surface.pixels,
Dec 20, 2008
Dec 20, 2008
508
509
510
511
&data->surface.pitch) < 0) {
return -1;
}
Dec 9, 2009
Dec 9, 2009
512
513
data->surface.clip_rect.w = data->surface.w = rect.w;
data->surface.clip_rect.h = data->surface.h = rect.h;
Dec 21, 2008
Dec 21, 2008
514
Dec 9, 2009
Dec 9, 2009
515
/* Draw the points! */
Feb 1, 2011
Feb 1, 2011
516
if (renderer->blendMode == SDL_BLENDMODE_NONE) {
Dec 9, 2009
Dec 9, 2009
517
518
519
520
521
522
523
524
525
Uint32 color = SDL_MapRGBA(data->surface.format,
renderer->r, renderer->g, renderer->b,
renderer->a);
for (i = 1; i < count; ++i) {
x1 = points[i-1].x - rect.x;
y1 = points[i-1].y - rect.y;
x2 = points[i].x - rect.x;
y2 = points[i].y - rect.y;
Dec 20, 2008
Dec 20, 2008
526
Dec 9, 2009
Dec 9, 2009
527
528
status = SDL_DrawLine(&data->surface, x1, y1, x2, y2, color);
}
Dec 20, 2008
Dec 20, 2008
529
} else {
Dec 9, 2009
Dec 9, 2009
530
531
532
533
534
535
536
537
538
539
540
for (i = 1; i < count; ++i) {
x1 = points[i-1].x - rect.x;
y1 = points[i-1].y - rect.y;
x2 = points[i].x - rect.x;
y2 = points[i].y - rect.y;
status = SDL_BlendLine(&data->surface, x1, y1, x2, y2,
renderer->blendMode,
renderer->r, renderer->g, renderer->b,
renderer->a);
}
Dec 20, 2008
Dec 20, 2008
541
542
}
Dec 9, 2009
Dec 9, 2009
543
544
data->renderer->UnlockTexture(data->renderer, texture);
Dec 20, 2008
Dec 20, 2008
545
546
547
return status;
}
Dec 23, 2009
Dec 23, 2009
548
549
550
551
552
static int
SW_RenderFillRects(SDL_Renderer * renderer, const SDL_Rect ** rects,
int count)
{
SW_RenderData *data = (SW_RenderData *) renderer->driverdata;
Feb 2, 2011
Feb 2, 2011
553
SDL_Texture *texture = SW_ActivateRenderer(renderer);
Dec 23, 2009
Dec 23, 2009
554
555
556
557
558
SDL_Rect clip, rect;
Uint32 color = 0;
int i;
int status = 0;
Feb 2, 2011
Feb 2, 2011
559
560
561
562
if (!texture) {
return -1;
}
Dec 23, 2009
Dec 23, 2009
563
564
565
566
567
clip.x = 0;
clip.y = 0;
clip.w = texture->w;
clip.h = texture->h;
Feb 1, 2011
Feb 1, 2011
568
if (renderer->blendMode == SDL_BLENDMODE_NONE) {
Dec 23, 2009
Dec 23, 2009
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
color = SDL_MapRGBA(data->surface.format,
renderer->r, renderer->g, renderer->b,
renderer->a);
}
for (i = 0; i < count; ++i) {
if (!SDL_IntersectRect(rects[i], &clip, &rect)) {
/* Nothing to draw */
continue;
}
if (data->renderer->LockTexture(data->renderer, texture, &rect, 1,
&data->surface.pixels,
&data->surface.pitch) < 0) {
return -1;
}
data->surface.clip_rect.w = data->surface.w = rect.w;
data->surface.clip_rect.h = data->surface.h = rect.h;
Feb 1, 2011
Feb 1, 2011
589
if (renderer->blendMode == SDL_BLENDMODE_NONE) {
Dec 23, 2009
Dec 23, 2009
590
591
592
593
594
595
596
597
598
599
600
601
602
status = SDL_FillRect(&data->surface, NULL, color);
} else {
status = SDL_BlendFillRect(&data->surface, NULL,
renderer->blendMode,
renderer->r, renderer->g, renderer->b,
renderer->a);
}
data->renderer->UnlockTexture(data->renderer, texture);
}
return status;
}
Jul 19, 2006
Jul 19, 2006
604
SW_RenderCopy(SDL_Renderer * renderer, SDL_Texture * texture,
Aug 28, 2006
Aug 28, 2006
605
const SDL_Rect * srcrect, const SDL_Rect * dstrect)
Jul 19, 2006
Jul 19, 2006
607
SW_RenderData *data = (SW_RenderData *) renderer->driverdata;
Jul 15, 2006
Jul 15, 2006
608
int status;
Feb 2, 2011
Feb 2, 2011
610
611
612
613
if (!SW_ActivateRenderer(renderer)) {
return -1;
}
Feb 1, 2011
Feb 1, 2011
614
if (data->renderer->LockTexture(data->renderer, data->texture,
Aug 27, 2008
Aug 27, 2008
615
616
dstrect, 1, &data->surface.pixels,
&data->surface.pitch) < 0) {
Jul 15, 2006
Jul 15, 2006
617
618
619
return -1;
}
620
if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
Jul 15, 2006
Jul 15, 2006
621
622
623
624
status =
SDL_SW_CopyYUVToRGB((SDL_SW_YUVTexture *) texture->driverdata,
srcrect, data->format, dstrect->w, dstrect->h,
data->surface.pixels, data->surface.pitch);
625
626
} else {
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
Aug 18, 2007
Aug 18, 2007
627
628
629
630
631
632
633
634
635
636
637
638
SDL_Rect real_srcrect = *srcrect;
SDL_Rect real_dstrect;
data->surface.w = dstrect->w;
data->surface.h = dstrect->h;
data->surface.clip_rect.w = dstrect->w;
data->surface.clip_rect.h = dstrect->h;
real_dstrect = data->surface.clip_rect;
status =
SDL_LowerBlit(surface, &real_srcrect, &data->surface,
&real_dstrect);
Feb 1, 2011
Feb 1, 2011
640
data->renderer->UnlockTexture(data->renderer, data->texture);
Jul 15, 2006
Jul 15, 2006
641
return status;
Nov 9, 2009
Nov 9, 2009
644
645
static int
SW_RenderReadPixels(SDL_Renderer * renderer, const SDL_Rect * rect,
Nov 16, 2009
Nov 16, 2009
646
Uint32 format, void * pixels, int pitch)
Nov 9, 2009
Nov 9, 2009
647
648
649
{
SW_RenderData *data = (SW_RenderData *) renderer->driverdata;
Feb 2, 2011
Feb 2, 2011
650
651
652
653
if (!SW_ActivateRenderer(renderer)) {
return -1;
}
Feb 1, 2011
Feb 1, 2011
654
if (data->renderer->LockTexture(data->renderer, data->texture,
Nov 9, 2009
Nov 9, 2009
655
656
657
658
659
rect, 0, &data->surface.pixels,
&data->surface.pitch) < 0) {
return -1;
}
Nov 16, 2009
Nov 16, 2009
660
661
662
SDL_ConvertPixels(rect->w, rect->h,
data->format, data->surface.pixels, data->surface.pitch,
format, pixels, pitch);
Nov 9, 2009
Nov 9, 2009
663
Feb 1, 2011
Feb 1, 2011
664
data->renderer->UnlockTexture(data->renderer, data->texture);
Nov 9, 2009
Nov 9, 2009
665
666
667
668
669
return 0;
}
static int
SW_RenderWritePixels(SDL_Renderer * renderer, const SDL_Rect * rect,
Nov 16, 2009
Nov 16, 2009
670
Uint32 format, const void * pixels, int pitch)
Nov 9, 2009
Nov 9, 2009
671
672
673
{
SW_RenderData *data = (SW_RenderData *) renderer->driverdata;
Feb 2, 2011
Feb 2, 2011
674
675
676
677
if (!SW_ActivateRenderer(renderer)) {
return -1;
}
Feb 1, 2011
Feb 1, 2011
678
if (data->renderer->LockTexture(data->renderer, data->texture,
Nov 9, 2009
Nov 9, 2009
679
680
681
682
683
rect, 1, &data->surface.pixels,
&data->surface.pitch) < 0) {
return -1;
}
Nov 16, 2009
Nov 16, 2009
684
685
SDL_ConvertPixels(rect->w, rect->h, format, pixels, pitch,
data->format, data->surface.pixels, data->surface.pitch);
Nov 9, 2009
Nov 9, 2009
686
Feb 1, 2011
Feb 1, 2011
687
data->renderer->UnlockTexture(data->renderer, data->texture);
Nov 9, 2009
Nov 9, 2009
688
689
690
return 0;
}
Jul 19, 2006
Jul 19, 2006
692
SW_RenderPresent(SDL_Renderer * renderer)
Jul 19, 2006
Jul 19, 2006
694
SW_RenderData *data = (SW_RenderData *) renderer->driverdata;
Feb 2, 2011
Feb 2, 2011
695
SDL_Texture *texture = SW_ActivateRenderer(renderer);
Feb 1, 2011
Feb 1, 2011
696
SDL_Rect rect;
Feb 2, 2011
Feb 2, 2011
698
699
700
701
if (!texture) {
return;
}
702
/* Send the data to the display */
Feb 1, 2011
Feb 1, 2011
703
704
705
706
707
rect.x = 0;
rect.y = 0;
rect.w = texture->w;
rect.h = texture->h;
data->renderer->RenderCopy(data->renderer, texture, &rect, &rect);
708
709
710
711
data->renderer->RenderPresent(data->renderer);
}
static void
Jul 19, 2006
Jul 19, 2006
712
SW_DestroyTexture(SDL_Renderer * renderer, SDL_Texture * texture)
713
714
715
716
717
718
719
720
721
722
723
{
if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
SDL_SW_DestroyYUVTexture((SDL_SW_YUVTexture *) texture->driverdata);
} else {
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
SDL_FreeSurface(surface);
}
}
static void
Jul 19, 2006
Jul 19, 2006
724
SW_DestroyRenderer(SDL_Renderer * renderer)
Jul 19, 2006
Jul 19, 2006
726
SW_RenderData *data = (SW_RenderData *) renderer->driverdata;
Jan 21, 2010
Jan 21, 2010
727
728
SDL_Window *window = renderer->window;
SDL_VideoDisplay *display = window->display;
729
730
731
int i;
if (data) {
Feb 1, 2011
Feb 1, 2011
732
733
if (data->texture) {
DestroyTexture(data->renderer, data->texture);
Jul 15, 2006
Jul 15, 2006
735
736
737
738
739
740
if (data->surface.format) {
SDL_FreeFormat(data->surface.format);
}
if (data->renderer) {
data->renderer->DestroyRenderer(data->renderer);
}
741
742
743
744
745
746
747
SDL_FreeDirtyRects(&data->dirty);
SDL_free(data);
}
SDL_free(renderer);
}
/* vi: set ts=4 sw=4 expandtab: */