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

Latest commit

 

History

History
577 lines (511 loc) · 18.9 KB

SDL_renderer_sw.c

File metadata and controls

577 lines (511 loc) · 18.9 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
SDL - Simple DirectMedia Layer
Copyright (C) 1997-2006 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"
#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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
static SDL_Renderer *SW_CreateRenderer(SDL_Window * window, Uint32 flags);
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);
static int SW_UpdateTexture(SDL_Renderer * renderer,
SDL_Texture * texture, const SDL_Rect * rect,
const void *pixels, int pitch);
static int SW_LockTexture(SDL_Renderer * renderer, SDL_Texture * texture,
const SDL_Rect * rect, int markDirty,
void **pixels, int *pitch);
static void SW_UnlockTexture(SDL_Renderer * renderer, SDL_Texture * texture);
static void SW_DirtyTexture(SDL_Renderer * renderer,
SDL_Texture * texture, int numrects,
const SDL_Rect * rects);
static int SW_RenderFill(SDL_Renderer * renderer, const SDL_Rect * rect,
Uint32 color);
static int SW_RenderCopy(SDL_Renderer * renderer, SDL_Texture * texture,
const SDL_Rect * srcrect,
const SDL_Rect * dstrect, int blendMode,
int scaleMode);
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,
Jul 12, 2006
Jul 12, 2006
70
71
(SDL_Renderer_SingleBuffer | SDL_Renderer_PresentCopy |
SDL_Renderer_PresentFlip2 | SDL_Renderer_PresentFlip3 |
Jul 15, 2006
Jul 15, 2006
72
SDL_Renderer_PresentDiscard | SDL_Renderer_PresentVSync),
Jul 12, 2006
Jul 12, 2006
73
74
(SDL_TextureBlendMode_None | SDL_TextureBlendMode_Mask |
SDL_TextureBlendMode_Blend),
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
(SDL_TextureScaleMode_None | SDL_TextureScaleMode_Fast),
11,
{
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,
SDL_PixelFormat_YUY2,
SDL_PixelFormat_UYVY},
0,
0}
};
typedef struct
{
Jul 15, 2006
Jul 15, 2006
95
96
97
98
Uint32 format;
int current_texture;
SDL_Texture *texture[3];
SDL_Surface surface;
99
100
SDL_Renderer *renderer;
SDL_DirtyRectList dirty;
Jul 19, 2006
Jul 19, 2006
101
} SW_RenderData;
Jul 15, 2006
Jul 15, 2006
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
static SDL_Texture *
CreateTexture(SDL_Renderer * renderer, Uint32 format, int w, int h)
{
SDL_Texture *texture;
texture = (SDL_Texture *) SDL_malloc(sizeof(*texture));
if (!texture) {
SDL_OutOfMemory();
return NULL;
}
SDL_zerop(texture);
texture->format = format;
texture->access = SDL_TextureAccess_Local;
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
138
SW_RenderData *data = (SW_RenderData *) userdata;
Jul 15, 2006
Jul 15, 2006
139
140
141
142
143
144
145
146
147
148
149
150
151
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;
}
Jul 19, 2006
Jul 19, 2006
153
SW_CreateRenderer(SDL_Window * window, Uint32 flags)
154
155
156
157
{
SDL_VideoDisplay *display = SDL_GetDisplayFromWindow(window);
SDL_DisplayMode *displayMode = &display->current_mode;
SDL_Renderer *renderer;
Jul 19, 2006
Jul 19, 2006
158
SW_RenderData *data;
159
160
161
int i, n;
int bpp;
Uint32 Rmask, Gmask, Bmask, Amask;
Jul 15, 2006
Jul 15, 2006
162
Uint32 renderer_flags;
163
164
165
166
167
168
169
170
171
172
173
174
175
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 19, 2006
Jul 19, 2006
176
data = (SW_RenderData *) SDL_malloc(sizeof(*data));
Jul 19, 2006
Jul 19, 2006
178
SW_DestroyRenderer(renderer);
179
180
181
182
183
SDL_OutOfMemory();
return NULL;
}
SDL_zerop(data);
Jul 19, 2006
Jul 19, 2006
184
185
186
187
188
189
190
191
192
193
194
195
196
197
renderer->CreateTexture = SW_CreateTexture;
renderer->QueryTexturePixels = SW_QueryTexturePixels;
renderer->SetTexturePalette = SW_SetTexturePalette;
renderer->GetTexturePalette = SW_GetTexturePalette;
renderer->UpdateTexture = SW_UpdateTexture;
renderer->LockTexture = SW_LockTexture;
renderer->UnlockTexture = SW_UnlockTexture;
renderer->DirtyTexture = SW_DirtyTexture;
renderer->RenderFill = SW_RenderFill;
renderer->RenderCopy = SW_RenderCopy;
renderer->RenderPresent = SW_RenderPresent;
renderer->DestroyTexture = SW_DestroyTexture;
renderer->DestroyRenderer = SW_DestroyRenderer;
renderer->info = SW_RenderDriver.info;
198
199
200
renderer->window = window->id;
renderer->driverdata = data;
Jul 15, 2006
Jul 15, 2006
201
renderer->info.flags = 0;
202
203
204
205
206
207
208
209
210
211
212
if (flags & SDL_Renderer_PresentFlip2) {
renderer->info.flags |= SDL_Renderer_PresentFlip2;
n = 2;
} else if (flags & SDL_Renderer_PresentFlip3) {
renderer->info.flags |= SDL_Renderer_PresentFlip3;
n = 3;
} else {
renderer->info.flags |= SDL_Renderer_PresentCopy;
n = 1;
}
Jul 15, 2006
Jul 15, 2006
213
data->format = displayMode->format;
214
215
/* Find a render driver that we can use to display data */
Jul 15, 2006
Jul 15, 2006
216
217
218
219
220
renderer_flags = (SDL_Renderer_SingleBuffer |
SDL_Renderer_PresentDiscard);
if (flags & SDL_Renderer_PresentVSync) {
renderer_flags |= SDL_Renderer_PresentVSync;
}
221
222
for (i = 0; i < display->num_render_drivers; ++i) {
SDL_RenderDriver *driver = &display->render_drivers[i];
Jul 19, 2006
Jul 19, 2006
223
if (driver->info.name != SW_RenderDriver.info.name) {
Jul 15, 2006
Jul 15, 2006
224
data->renderer = driver->CreateRenderer(window, renderer_flags);
225
226
227
228
229
230
if (data->renderer) {
break;
}
}
}
if (i == display->num_render_drivers) {
Jul 19, 2006
Jul 19, 2006
231
SW_DestroyRenderer(renderer);
232
233
234
SDL_SetError("Couldn't find display render driver");
return NULL;
}
Jul 15, 2006
Jul 15, 2006
235
236
237
238
239
240
241
242
243
if (data->renderer->info.flags & SDL_Renderer_PresentVSync) {
renderer->info.flags |= SDL_Renderer_PresentVSync;
}
/* 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
244
SW_DestroyRenderer(renderer);
Jul 15, 2006
Jul 15, 2006
245
246
247
248
249
250
251
252
253
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
254
SW_DestroyRenderer(renderer);
Jul 15, 2006
Jul 15, 2006
255
256
257
258
259
260
261
262
263
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);
}
264
265
266
267
return renderer;
}
static int
Jul 19, 2006
Jul 19, 2006
268
SW_CreateTexture(SDL_Renderer * renderer, SDL_Texture * texture)
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
{
if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
texture->driverdata = SDL_SW_CreateYUVTexture(texture);
} 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);
}
if (!texture->driverdata) {
return -1;
}
return 0;
}
static int
Jul 19, 2006
Jul 19, 2006
294
295
SW_QueryTexturePixels(SDL_Renderer * renderer, SDL_Texture * texture,
void **pixels, int *pitch)
296
297
298
299
300
301
302
303
304
305
306
307
308
309
{
if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
return SDL_SW_QueryYUVTexturePixels((SDL_SW_YUVTexture *) texture->
driverdata, pixels, pitch);
} else {
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
*pixels = surface->pixels;
*pitch = surface->pitch;
return 0;
}
}
static int
Jul 19, 2006
Jul 19, 2006
310
311
SW_SetTexturePalette(SDL_Renderer * renderer, SDL_Texture * texture,
const SDL_Color * colors, int firstcolor, int ncolors)
312
313
314
315
316
317
318
319
320
321
322
323
324
{
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
325
326
SW_GetTexturePalette(SDL_Renderer * renderer, SDL_Texture * texture,
SDL_Color * colors, int firstcolor, int ncolors)
327
328
329
330
331
332
333
334
335
336
337
338
339
340
{
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;
}
}
static int
Jul 19, 2006
Jul 19, 2006
341
342
SW_UpdateTexture(SDL_Renderer * renderer, SDL_Texture * texture,
const SDL_Rect * rect, const void *pixels, int pitch)
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
{
if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
return SDL_SW_UpdateYUVTexture((SDL_SW_YUVTexture *) texture->
driverdata, rect, pixels, pitch);
} 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
368
369
370
SW_LockTexture(SDL_Renderer * renderer, SDL_Texture * texture,
const SDL_Rect * rect, int markDirty, void **pixels,
int *pitch)
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
{
if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
return SDL_SW_LockYUVTexture((SDL_SW_YUVTexture *) texture->
driverdata, rect, markDirty, pixels,
pitch);
} 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
388
SW_UnlockTexture(SDL_Renderer * renderer, SDL_Texture * texture)
389
390
391
392
393
394
395
{
if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
SDL_SW_UnlockYUVTexture((SDL_SW_YUVTexture *) texture->driverdata);
}
}
static void
Jul 19, 2006
Jul 19, 2006
396
397
SW_DirtyTexture(SDL_Renderer * renderer, SDL_Texture * texture,
int numrects, const SDL_Rect * rects)
398
399
400
401
{
}
static int
Jul 19, 2006
Jul 19, 2006
402
SW_RenderFill(SDL_Renderer * renderer, const SDL_Rect * rect, Uint32 color)
Jul 19, 2006
Jul 19, 2006
404
SW_RenderData *data = (SW_RenderData *) renderer->driverdata;
405
Uint8 r, g, b, a;
Jul 15, 2006
Jul 15, 2006
406
407
408
409
void *pixels;
int pitch;
SDL_Rect real_rect;
int status;
Jul 15, 2006
Jul 15, 2006
411
if (data->renderer->info.flags & SDL_Renderer_PresentCopy) {
Jul 12, 2006
Jul 12, 2006
412
413
SDL_AddDirtyRect(&data->dirty, rect);
}
414
415
416
417
418
a = (Uint8) ((color >> 24) & 0xFF);
r = (Uint8) ((color >> 16) & 0xFF);
g = (Uint8) ((color >> 8) & 0xFF);
b = (Uint8) (color & 0xFF);
Jul 15, 2006
Jul 15, 2006
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
color = SDL_MapRGBA(data->surface.format, r, g, b, a);
if (data->renderer->
LockTexture(data->renderer, data->texture[data->current_texture],
rect, 1, &data->surface.pixels,
&data->surface.pitch) < 0) {
return -1;
}
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;
status = SDL_FillRect(&data->surface, &real_rect, color);
Jul 15, 2006
Jul 15, 2006
435
436
437
data->renderer->UnlockTexture(data->renderer,
data->texture[data->current_texture]);
return status;
438
439
440
}
static int
Jul 19, 2006
Jul 19, 2006
441
442
443
SW_RenderCopy(SDL_Renderer * renderer, SDL_Texture * texture,
const SDL_Rect * srcrect, const SDL_Rect * dstrect,
int blendMode, int scaleMode)
Jul 19, 2006
Jul 19, 2006
445
SW_RenderData *data = (SW_RenderData *) renderer->driverdata;
446
SDL_Window *window = SDL_GetWindowFromID(renderer->window);
Jul 15, 2006
Jul 15, 2006
447
int status;
Jul 15, 2006
Jul 15, 2006
449
if (data->renderer->info.flags & SDL_Renderer_PresentCopy) {
Jul 12, 2006
Jul 12, 2006
450
451
SDL_AddDirtyRect(&data->dirty, dstrect);
}
Jul 15, 2006
Jul 15, 2006
453
454
455
456
457
458
459
if (data->renderer->
LockTexture(data->renderer, data->texture[data->current_texture],
dstrect, 1, &data->surface.pixels,
&data->surface.pitch) < 0) {
return -1;
}
460
if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
Jul 15, 2006
Jul 15, 2006
461
462
463
464
status =
SDL_SW_CopyYUVToRGB((SDL_SW_YUVTexture *) texture->driverdata,
srcrect, data->format, dstrect->w, dstrect->h,
data->surface.pixels, data->surface.pitch);
465
466
467
} else {
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
SDL_Rect real_srcrect = *srcrect;
Jul 15, 2006
Jul 15, 2006
468
469
470
471
472
473
474
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;
475
476
477
478
479
480
481
482
483
if (blendMode &
(SDL_TextureBlendMode_Mask | SDL_TextureBlendMode_Blend)) {
SDL_SetAlpha(surface, SDL_SRCALPHA, 0);
} else {
SDL_SetAlpha(surface, 0, 0);
}
if (scaleMode != SDL_TextureScaleMode_None &&
(srcrect->w != dstrect->w || srcrect->h != dstrect->h)) {
Jul 15, 2006
Jul 15, 2006
484
485
486
status =
SDL_SoftStretch(surface, &real_srcrect, &data->surface,
&real_dstrect);
Jul 15, 2006
Jul 15, 2006
488
489
490
status =
SDL_LowerBlit(surface, &real_srcrect, &data->surface,
&real_dstrect);
Jul 15, 2006
Jul 15, 2006
493
494
495
data->renderer->UnlockTexture(data->renderer,
data->texture[data->current_texture]);
return status;
496
497
498
}
static void
Jul 19, 2006
Jul 19, 2006
499
SW_RenderPresent(SDL_Renderer * renderer)
Jul 19, 2006
Jul 19, 2006
501
SW_RenderData *data = (SW_RenderData *) renderer->driverdata;
Jul 15, 2006
Jul 15, 2006
502
SDL_Texture *texture = data->texture[data->current_texture];
503
504
/* Send the data to the display */
Jul 15, 2006
Jul 15, 2006
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
if (data->renderer->info.flags & SDL_Renderer_PresentCopy) {
SDL_DirtyRect *dirty;
for (dirty = data->dirty.list; dirty; dirty = dirty->next) {
data->renderer->RenderCopy(data->renderer, texture, &dirty->rect,
&dirty->rect,
SDL_TextureBlendMode_None,
SDL_TextureScaleMode_None);
}
SDL_ClearDirtyRects(&data->dirty);
} else {
SDL_Rect rect;
rect.x = 0;
rect.y = 0;
rect.w = texture->w;
rect.h = texture->h;
data->renderer->RenderCopy(data->renderer, texture, &rect, &rect,
SDL_TextureBlendMode_None,
SDL_TextureScaleMode_None);
523
524
525
526
527
}
data->renderer->RenderPresent(data->renderer);
/* Update the flipping chain, if any */
if (renderer->info.flags & SDL_Renderer_PresentFlip2) {
Jul 15, 2006
Jul 15, 2006
528
data->current_texture = (data->current_texture + 1) % 2;
529
} else if (renderer->info.flags & SDL_Renderer_PresentFlip3) {
Jul 15, 2006
Jul 15, 2006
530
data->current_texture = (data->current_texture + 1) % 3;
531
532
533
534
}
}
static void
Jul 19, 2006
Jul 19, 2006
535
SW_DestroyTexture(SDL_Renderer * renderer, SDL_Texture * texture)
536
537
538
539
540
541
542
543
544
545
546
{
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
547
SW_DestroyRenderer(SDL_Renderer * renderer)
Jul 19, 2006
Jul 19, 2006
549
SW_RenderData *data = (SW_RenderData *) renderer->driverdata;
Jul 15, 2006
Jul 15, 2006
550
551
SDL_Window *window = SDL_GetWindowFromID(renderer->window);
SDL_VideoDisplay *display = SDL_GetDisplayFromWindow(window);
552
553
554
int i;
if (data) {
Jul 15, 2006
Jul 15, 2006
555
556
557
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
560
561
562
563
564
565
566
567
568
569
570
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);
}
571
572
573
574
575
576
577
SDL_FreeDirtyRects(&data->dirty);
SDL_free(data);
}
SDL_free(renderer);
}
/* vi: set ts=4 sw=4 expandtab: */