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

Latest commit

 

History

History
750 lines (666 loc) · 24.5 KB

SDL_renderer_sw.c

File metadata and controls

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