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

Latest commit

 

History

History
545 lines (488 loc) · 19.4 KB

SDL_nullrender.c

File metadata and controls

545 lines (488 loc) · 19.4 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_yuv_sw_c.h"
Aug 28, 2006
Aug 28, 2006
27
#include "../SDL_rendercopy.h"
28
29
30
31
/* SDL surface based renderer implementation */
Jul 16, 2006
Jul 16, 2006
32
33
static SDL_Renderer *SDL_DUMMY_CreateRenderer(SDL_Window * window,
Uint32 flags);
34
static int SDL_DUMMY_CreateTexture(SDL_Renderer * renderer,
Jul 16, 2006
Jul 16, 2006
35
SDL_Texture * texture);
Jul 15, 2006
Jul 15, 2006
36
static int SDL_DUMMY_QueryTexturePixels(SDL_Renderer * renderer,
Jul 16, 2006
Jul 16, 2006
37
38
SDL_Texture * texture, void **pixels,
int *pitch);
Jul 15, 2006
Jul 15, 2006
39
static int SDL_DUMMY_SetTexturePalette(SDL_Renderer * renderer,
Jul 16, 2006
Jul 16, 2006
40
41
42
SDL_Texture * texture,
const SDL_Color * colors,
int firstcolor, int ncolors);
Jul 15, 2006
Jul 15, 2006
43
static int SDL_DUMMY_GetTexturePalette(SDL_Renderer * renderer,
Jul 16, 2006
Jul 16, 2006
44
45
46
SDL_Texture * texture,
SDL_Color * colors, int firstcolor,
int ncolors);
Aug 28, 2006
Aug 28, 2006
47
48
49
50
51
52
53
54
static int SDL_DUMMY_SetTextureColorMod(SDL_Renderer * renderer,
SDL_Texture * texture);
static int SDL_DUMMY_SetTextureAlphaMod(SDL_Renderer * renderer,
SDL_Texture * texture);
static int SDL_DUMMY_SetTextureBlendMode(SDL_Renderer * renderer,
SDL_Texture * texture);
static int SDL_DUMMY_SetTextureScaleMode(SDL_Renderer * renderer,
SDL_Texture * texture);
Jul 15, 2006
Jul 15, 2006
55
static int SDL_DUMMY_UpdateTexture(SDL_Renderer * renderer,
Jul 16, 2006
Jul 16, 2006
56
57
58
59
60
61
SDL_Texture * texture,
const SDL_Rect * rect, const void *pixels,
int pitch);
static int SDL_DUMMY_LockTexture(SDL_Renderer * renderer,
SDL_Texture * texture, const SDL_Rect * rect,
int markDirty, void **pixels, int *pitch);
Jul 15, 2006
Jul 15, 2006
62
static void SDL_DUMMY_UnlockTexture(SDL_Renderer * renderer,
Jul 16, 2006
Jul 16, 2006
63
SDL_Texture * texture);
Jul 15, 2006
Jul 15, 2006
64
static void SDL_DUMMY_DirtyTexture(SDL_Renderer * renderer,
Jul 16, 2006
Jul 16, 2006
65
66
SDL_Texture * texture, int numrects,
const SDL_Rect * rects);
Jul 15, 2006
Jul 15, 2006
67
static void SDL_DUMMY_SelectRenderTexture(SDL_Renderer * renderer,
Jul 16, 2006
Jul 16, 2006
68
SDL_Texture * texture);
Aug 28, 2006
Aug 28, 2006
69
70
static int SDL_DUMMY_RenderFill(SDL_Renderer * renderer, Uint8 r, Uint8 g,
Uint8 b, Uint8 a, const SDL_Rect * rect);
Jul 16, 2006
Jul 16, 2006
71
72
73
static int SDL_DUMMY_RenderCopy(SDL_Renderer * renderer,
SDL_Texture * texture,
const SDL_Rect * srcrect,
Aug 28, 2006
Aug 28, 2006
74
const SDL_Rect * dstrect);
Jul 15, 2006
Jul 15, 2006
75
static int SDL_DUMMY_RenderReadPixels(SDL_Renderer * renderer,
Jul 16, 2006
Jul 16, 2006
76
77
const SDL_Rect * rect, void *pixels,
int pitch);
Jul 15, 2006
Jul 15, 2006
78
static int SDL_DUMMY_RenderWritePixels(SDL_Renderer * renderer,
Jul 16, 2006
Jul 16, 2006
79
80
const SDL_Rect * rect,
const void *pixels, int pitch);
81
static void SDL_DUMMY_RenderPresent(SDL_Renderer * renderer);
Jul 15, 2006
Jul 15, 2006
82
static void SDL_DUMMY_DestroyTexture(SDL_Renderer * renderer,
Jul 16, 2006
Jul 16, 2006
83
SDL_Texture * texture);
84
85
86
87
88
89
static void SDL_DUMMY_DestroyRenderer(SDL_Renderer * renderer);
SDL_RenderDriver SDL_DUMMY_RenderDriver = {
SDL_DUMMY_CreateRenderer,
{
Jul 14, 2006
Jul 14, 2006
90
"dummy",
Aug 5, 2006
Aug 5, 2006
91
92
93
(SDL_RENDERER_SINGLEBUFFER | SDL_RENDERER_PRESENTCOPY |
SDL_RENDERER_PRESENTFLIP2 | SDL_RENDERER_PRESENTFLIP3 |
SDL_RENDERER_PRESENTDISCARD),
Aug 28, 2006
Aug 28, 2006
94
95
(SDL_TEXTUREMODULATE_NONE | SDL_TEXTUREMODULATE_COLOR |
SDL_TEXTUREMODULATE_ALPHA),
Aug 5, 2006
Aug 5, 2006
96
(SDL_TEXTUREBLENDMODE_NONE | SDL_TEXTUREBLENDMODE_MASK |
Aug 28, 2006
Aug 28, 2006
97
98
SDL_TEXTUREBLENDMODE_BLEND | SDL_TEXTUREBLENDMODE_ADD |
SDL_TEXTUREBLENDMODE_MOD),
Aug 5, 2006
Aug 5, 2006
99
(SDL_TEXTURESCALEMODE_NONE | SDL_TEXTURESCALEMODE_FAST),
Jul 15, 2006
Jul 15, 2006
100
101
11,
{
Aug 5, 2006
Aug 5, 2006
102
103
104
105
106
107
108
109
110
111
112
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},
113
114
115
116
117
118
0,
0}
};
typedef struct
{
Jul 15, 2006
Jul 15, 2006
119
120
int current_screen;
SDL_Surface *screens[3];
121
122
123
124
125
126
127
128
129
} SDL_DUMMY_RenderData;
SDL_Renderer *
SDL_DUMMY_CreateRenderer(SDL_Window * window, Uint32 flags)
{
SDL_VideoDisplay *display = SDL_GetDisplayFromWindow(window);
SDL_DisplayMode *displayMode = &display->current_mode;
SDL_Renderer *renderer;
SDL_DUMMY_RenderData *data;
Jul 15, 2006
Jul 15, 2006
130
int i, n;
131
132
133
134
135
136
137
138
139
int bpp;
Uint32 Rmask, Gmask, Bmask, Amask;
if (!SDL_PixelFormatEnumToMasks
(displayMode->format, &bpp, &Rmask, &Gmask, &Bmask, &Amask)) {
SDL_SetError("Unknown display format");
return NULL;
}
Jul 15, 2006
Jul 15, 2006
140
renderer = (SDL_Renderer *) SDL_calloc(1, sizeof(*renderer));
141
142
143
144
145
146
147
148
149
150
151
152
153
if (!renderer) {
SDL_OutOfMemory();
return NULL;
}
data = (SDL_DUMMY_RenderData *) SDL_malloc(sizeof(*data));
if (!data) {
SDL_DUMMY_DestroyRenderer(renderer);
SDL_OutOfMemory();
return NULL;
}
SDL_zerop(data);
Jul 15, 2006
Jul 15, 2006
154
155
156
157
renderer->CreateTexture = SDL_DUMMY_CreateTexture;
renderer->QueryTexturePixels = SDL_DUMMY_QueryTexturePixels;
renderer->SetTexturePalette = SDL_DUMMY_SetTexturePalette;
renderer->GetTexturePalette = SDL_DUMMY_GetTexturePalette;
Aug 28, 2006
Aug 28, 2006
158
159
160
161
renderer->SetTextureColorMod = SDL_DUMMY_SetTextureColorMod;
renderer->SetTextureAlphaMod = SDL_DUMMY_SetTextureAlphaMod;
renderer->SetTextureBlendMode = SDL_DUMMY_SetTextureBlendMode;
renderer->SetTextureScaleMode = SDL_DUMMY_SetTextureScaleMode;
Jul 15, 2006
Jul 15, 2006
162
163
164
165
166
167
renderer->UpdateTexture = SDL_DUMMY_UpdateTexture;
renderer->LockTexture = SDL_DUMMY_LockTexture;
renderer->UnlockTexture = SDL_DUMMY_UnlockTexture;
renderer->DirtyTexture = SDL_DUMMY_DirtyTexture;
renderer->RenderFill = SDL_DUMMY_RenderFill;
renderer->RenderCopy = SDL_DUMMY_RenderCopy;
168
renderer->RenderPresent = SDL_DUMMY_RenderPresent;
Jul 15, 2006
Jul 15, 2006
169
renderer->DestroyTexture = SDL_DUMMY_DestroyTexture;
170
171
172
173
174
renderer->DestroyRenderer = SDL_DUMMY_DestroyRenderer;
renderer->info = SDL_DUMMY_RenderDriver.info;
renderer->window = window->id;
renderer->driverdata = data;
Jul 15, 2006
Jul 15, 2006
175
176
renderer->info.flags = 0;
Aug 5, 2006
Aug 5, 2006
177
178
if (flags & SDL_RENDERER_PRESENTFLIP2) {
renderer->info.flags |= SDL_RENDERER_PRESENTFLIP2;
Jul 15, 2006
Jul 15, 2006
179
n = 2;
Aug 5, 2006
Aug 5, 2006
180
181
} else if (flags & SDL_RENDERER_PRESENTFLIP3) {
renderer->info.flags |= SDL_RENDERER_PRESENTFLIP3;
Jul 15, 2006
Jul 15, 2006
182
183
n = 3;
} else {
Aug 5, 2006
Aug 5, 2006
184
renderer->info.flags |= SDL_RENDERER_PRESENTCOPY;
Jul 15, 2006
Jul 15, 2006
185
n = 1;
Jul 15, 2006
Jul 15, 2006
187
188
189
190
191
192
193
194
195
196
197
for (i = 0; i < n; ++i) {
data->screens[i] =
SDL_CreateRGBSurface(0, window->w, window->h, bpp, Rmask, Gmask,
Bmask, Amask);
if (!data->screens[i]) {
SDL_DUMMY_DestroyRenderer(renderer);
return NULL;
}
SDL_SetSurfacePalette(data->screens[i], display->palette);
}
data->current_screen = 0;
198
199
200
201
return renderer;
}
Jul 15, 2006
Jul 15, 2006
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
static int
SDL_DUMMY_CreateTexture(SDL_Renderer * renderer, SDL_Texture * texture)
{
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;
}
Jul 16, 2006
Jul 16, 2006
217
218
219
texture->driverdata =
SDL_CreateRGBSurface(0, texture->w, texture->h, bpp, Rmask, Gmask,
Bmask, Amask);
Jul 15, 2006
Jul 15, 2006
220
221
222
223
224
225
226
227
228
229
}
if (!texture->driverdata) {
return -1;
}
return 0;
}
static int
SDL_DUMMY_QueryTexturePixels(SDL_Renderer * renderer, SDL_Texture * texture,
Jul 16, 2006
Jul 16, 2006
230
void **pixels, int *pitch)
Jul 15, 2006
Jul 15, 2006
231
232
{
if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
Jul 16, 2006
Jul 16, 2006
233
234
return SDL_SW_QueryYUVTexturePixels((SDL_SW_YUVTexture *) texture->
driverdata, pixels, pitch);
Jul 15, 2006
Jul 15, 2006
235
236
237
238
239
240
241
242
243
244
245
} else {
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
*pixels = surface->pixels;
*pitch = surface->pitch;
return 0;
}
}
static int
SDL_DUMMY_SetTexturePalette(SDL_Renderer * renderer, SDL_Texture * texture,
Jul 16, 2006
Jul 16, 2006
246
247
const SDL_Color * colors, int firstcolor,
int ncolors)
Jul 15, 2006
Jul 15, 2006
248
249
250
251
252
253
254
255
256
257
258
259
260
261
{
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
SDL_DUMMY_GetTexturePalette(SDL_Renderer * renderer, SDL_Texture * texture,
Jul 16, 2006
Jul 16, 2006
262
SDL_Color * colors, int firstcolor, int ncolors)
Jul 15, 2006
Jul 15, 2006
263
264
265
266
267
268
269
270
271
272
273
274
275
{
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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
static void
SDL_DUMMY_UpdateRenderCopyFunc(SDL_Renderer * renderer, SDL_Texture * texture)
{
SDL_Window *window = SDL_GetWindowFromID(renderer->window);
SDL_VideoDisplay *display = SDL_GetDisplayFromWindow(window);
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
surface->userdata =
SDL_GetRenderCopyFunc(texture->format, display->current_mode.format,
texture->modMode, texture->blendMode,
texture->scaleMode);
}
static int
SDL_DUMMY_SetTextureColorMod(SDL_Renderer * renderer, SDL_Texture * texture)
{
SDL_DUMMY_UpdateRenderCopyFunc(renderer, texture);
return 0;
}
static int
SDL_DUMMY_SetTextureAlphaMod(SDL_Renderer * renderer, SDL_Texture * texture)
{
SDL_DUMMY_UpdateRenderCopyFunc(renderer, texture);
return 0;
}
static int
SDL_DUMMY_SetTextureBlendMode(SDL_Renderer * renderer, SDL_Texture * texture)
{
switch (texture->blendMode) {
case SDL_TEXTUREBLENDMODE_NONE:
case SDL_TEXTUREBLENDMODE_MASK:
case SDL_TEXTUREBLENDMODE_BLEND:
case SDL_TEXTUREBLENDMODE_ADD:
case SDL_TEXTUREBLENDMODE_MOD:
SDL_DUMMY_UpdateRenderCopyFunc(renderer, texture);
return 0;
default:
SDL_Unsupported();
texture->blendMode = SDL_TEXTUREBLENDMODE_NONE;
SDL_DUMMY_UpdateRenderCopyFunc(renderer, texture);
return -1;
}
}
static int
SDL_DUMMY_SetTextureScaleMode(SDL_Renderer * renderer, SDL_Texture * texture)
{
switch (texture->scaleMode) {
case SDL_TEXTURESCALEMODE_NONE:
case SDL_TEXTURESCALEMODE_FAST:
SDL_DUMMY_UpdateRenderCopyFunc(renderer, texture);
return 0;
case SDL_TEXTURESCALEMODE_SLOW:
case SDL_TEXTURESCALEMODE_BEST:
SDL_Unsupported();
texture->scaleMode = SDL_TEXTURESCALEMODE_FAST;
SDL_DUMMY_UpdateRenderCopyFunc(renderer, texture);
return -1;
default:
SDL_Unsupported();
texture->scaleMode = SDL_TEXTURESCALEMODE_NONE;
SDL_DUMMY_UpdateRenderCopyFunc(renderer, texture);
return -1;
}
}
Jul 15, 2006
Jul 15, 2006
344
345
static int
SDL_DUMMY_UpdateTexture(SDL_Renderer * renderer, SDL_Texture * texture,
Jul 16, 2006
Jul 16, 2006
346
const SDL_Rect * rect, const void *pixels, int pitch)
Jul 15, 2006
Jul 15, 2006
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
{
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
SDL_DUMMY_LockTexture(SDL_Renderer * renderer, SDL_Texture * texture,
Jul 16, 2006
Jul 16, 2006
373
374
const SDL_Rect * rect, int markDirty, void **pixels,
int *pitch)
Jul 15, 2006
Jul 15, 2006
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
{
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
SDL_DUMMY_UnlockTexture(SDL_Renderer * renderer, SDL_Texture * texture)
{
if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
SDL_SW_UnlockYUVTexture((SDL_SW_YUVTexture *) texture->driverdata);
}
}
static void
SDL_DUMMY_DirtyTexture(SDL_Renderer * renderer, SDL_Texture * texture,
Jul 16, 2006
Jul 16, 2006
401
int numrects, const SDL_Rect * rects)
Jul 15, 2006
Jul 15, 2006
402
403
404
405
{
}
static int
Aug 28, 2006
Aug 28, 2006
406
407
SDL_DUMMY_RenderFill(SDL_Renderer * renderer, Uint8 r, Uint8 g, Uint8 b,
Uint8 a, const SDL_Rect * rect)
Jul 15, 2006
Jul 15, 2006
408
{
Jul 16, 2006
Jul 16, 2006
409
410
SDL_DUMMY_RenderData *data =
(SDL_DUMMY_RenderData *) renderer->driverdata;
Jul 15, 2006
Jul 15, 2006
411
SDL_Surface *target = data->screens[data->current_screen];
Aug 28, 2006
Aug 28, 2006
412
Uint32 color;
Jul 15, 2006
Jul 15, 2006
413
414
415
416
417
418
419
420
421
SDL_Rect real_rect = *rect;
color = SDL_MapRGBA(target->format, r, g, b, a);
return SDL_FillRect(target, &real_rect, color);
}
static int
SDL_DUMMY_RenderCopy(SDL_Renderer * renderer, SDL_Texture * texture,
Aug 28, 2006
Aug 28, 2006
422
const SDL_Rect * srcrect, const SDL_Rect * dstrect)
Jul 15, 2006
Jul 15, 2006
423
{
Jul 16, 2006
Jul 16, 2006
424
425
SDL_DUMMY_RenderData *data =
(SDL_DUMMY_RenderData *) renderer->driverdata;
Jul 15, 2006
Jul 15, 2006
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
SDL_Window *window = SDL_GetWindowFromID(renderer->window);
SDL_VideoDisplay *display = SDL_GetDisplayFromWindow(window);
if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
SDL_Surface *target = data->screens[data->current_screen];
void *pixels =
(Uint8 *) target->pixels + dstrect->y * target->pitch +
dstrect->x * target->format->BytesPerPixel;
return SDL_SW_CopyYUVToRGB((SDL_SW_YUVTexture *) texture->driverdata,
srcrect, display->current_mode.format,
dstrect->w, dstrect->h, pixels,
target->pitch);
} else {
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
SDL_Surface *target = data->screens[data->current_screen];
Aug 28, 2006
Aug 28, 2006
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
SDL_RenderCopyFunc copyfunc = (SDL_RenderCopyFunc) surface->userdata;
if (copyfunc) {
SDL_RenderCopyData copydata;
copydata.src =
(Uint8 *) surface->pixels + srcrect->y * surface->pitch +
srcrect->x * surface->format->BytesPerPixel;
copydata.src_w = srcrect->w;
copydata.src_h = srcrect->h;
copydata.src_pitch = surface->pitch;
copydata.dst =
(Uint8 *) target->pixels + dstrect->y * target->pitch +
dstrect->x * target->format->BytesPerPixel;
copydata.dst_w = dstrect->w;
copydata.dst_h = dstrect->h;
copydata.dst_pitch = target->pitch;
copydata.flags = 0;
if (texture->modMode & SDL_TEXTUREMODULATE_COLOR) {
copydata.flags |= SDL_RENDERCOPY_MODULATE_COLOR;
copydata.r = texture->r;
copydata.g = texture->g;
copydata.b = texture->b;
}
if (texture->modMode & SDL_TEXTUREMODULATE_ALPHA) {
copydata.flags |= SDL_RENDERCOPY_MODULATE_ALPHA;
copydata.a = texture->a;
}
if (texture->
blendMode & (SDL_TEXTUREBLENDMODE_MASK |
SDL_TEXTUREBLENDMODE_BLEND)) {
copydata.flags |= SDL_RENDERCOPY_BLEND;
} else if (texture->blendMode & SDL_TEXTUREBLENDMODE_ADD) {
copydata.flags |= SDL_RENDERCOPY_ADD;
} else if (texture->blendMode & SDL_TEXTUREBLENDMODE_MOD) {
copydata.flags |= SDL_RENDERCOPY_MOD;
}
if (texture->scaleMode) {
copydata.flags |= SDL_RENDERCOPY_NEAREST;
}
return copyfunc(&copydata);
Jul 15, 2006
Jul 15, 2006
482
} else {
Aug 28, 2006
Aug 28, 2006
483
484
485
SDL_Rect real_srcrect = *srcrect;
SDL_Rect real_dstrect = *dstrect;
Jul 16, 2006
Jul 16, 2006
486
487
return SDL_LowerBlit(surface, &real_srcrect, target,
&real_dstrect);
Jul 15, 2006
Jul 15, 2006
488
489
490
491
492
}
}
}
static void
493
494
495
SDL_DUMMY_RenderPresent(SDL_Renderer * renderer)
{
static int frame_number;
Jul 16, 2006
Jul 16, 2006
496
497
SDL_DUMMY_RenderData *data =
(SDL_DUMMY_RenderData *) renderer->driverdata;
Jul 15, 2006
Jul 15, 2006
499
/* Send the data to the display */
500
501
502
503
if (SDL_getenv("SDL_VIDEO_DUMMY_SAVE_FRAMES")) {
char file[128];
SDL_snprintf(file, sizeof(file), "SDL_window%d-%8.8d.bmp",
renderer->window, ++frame_number);
Jul 15, 2006
Jul 15, 2006
504
505
506
507
SDL_SaveBMP(data->screens[data->current_screen], file);
}
/* Update the flipping chain, if any */
Aug 5, 2006
Aug 5, 2006
508
if (renderer->info.flags & SDL_RENDERER_PRESENTFLIP2) {
Jul 15, 2006
Jul 15, 2006
509
data->current_screen = (data->current_screen + 1) % 2;
Aug 5, 2006
Aug 5, 2006
510
} else if (renderer->info.flags & SDL_RENDERER_PRESENTFLIP3) {
Jul 15, 2006
Jul 15, 2006
511
512
513
514
515
516
517
518
519
520
521
522
523
data->current_screen = (data->current_screen + 1) % 3;
}
}
static void
SDL_DUMMY_DestroyTexture(SDL_Renderer * renderer, SDL_Texture * texture)
{
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);
Jul 15, 2006
Jul 15, 2006
527
static void
528
529
SDL_DUMMY_DestroyRenderer(SDL_Renderer * renderer)
{
Jul 16, 2006
Jul 16, 2006
530
531
SDL_DUMMY_RenderData *data =
(SDL_DUMMY_RenderData *) renderer->driverdata;
Jul 15, 2006
Jul 15, 2006
532
int i;
Jul 15, 2006
Jul 15, 2006
535
536
537
538
for (i = 0; i < SDL_arraysize(data->screens); ++i) {
if (data->screens[i]) {
SDL_FreeSurface(data->screens[i]);
}
539
540
541
542
543
544
545
}
SDL_free(data);
}
SDL_free(renderer);
}
/* vi: set ts=4 sw=4 expandtab: */