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

Latest commit

 

History

History
695 lines (595 loc) · 22 KB

SDL_render_sw.c

File metadata and controls

695 lines (595 loc) · 22 KB
 
Jun 22, 2011
Jun 22, 2011
1
2
/*
Simple DirectMedia Layer
Dec 31, 2011
Dec 31, 2011
3
Copyright (C) 1997-2012 Sam Lantinga <slouken@libsdl.org>
Jun 22, 2011
Jun 22, 2011
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "SDL_config.h"
#if !SDL_RENDER_DISABLED
#include "../SDL_sysrender.h"
Oct 31, 2011
Oct 31, 2011
26
#include "SDL_render_sw_c.h"
Jun 1, 2012
Jun 1, 2012
27
#include "SDL_hints.h"
Jun 22, 2011
Jun 22, 2011
28
29
30
31
32
33
34
#include "SDL_draw.h"
#include "SDL_blendfillrect.h"
#include "SDL_blendline.h"
#include "SDL_blendpoint.h"
#include "SDL_drawline.h"
#include "SDL_drawpoint.h"
Jun 1, 2012
Jun 1, 2012
35
#include "SDL_rotate.h"
Jun 22, 2011
Jun 22, 2011
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* SDL surface based renderer implementation */
static SDL_Renderer *SW_CreateRenderer(SDL_Window * window, Uint32 flags);
static void SW_WindowEvent(SDL_Renderer * renderer,
const SDL_WindowEvent *event);
static int SW_CreateTexture(SDL_Renderer * renderer, SDL_Texture * texture);
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_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, void **pixels, int *pitch);
static void SW_UnlockTexture(SDL_Renderer * renderer, SDL_Texture * texture);
Jan 22, 2012
Jan 22, 2012
55
static int SW_SetRenderTarget(SDL_Renderer * renderer, SDL_Texture * texture);
Jun 22, 2011
Jun 22, 2011
56
57
58
static int SW_UpdateViewport(SDL_Renderer * renderer);
static int SW_RenderClear(SDL_Renderer * renderer);
static int SW_RenderDrawPoints(SDL_Renderer * renderer,
Oct 2, 2012
Oct 2, 2012
59
const SDL_FPoint * points, int count);
Jun 22, 2011
Jun 22, 2011
60
static int SW_RenderDrawLines(SDL_Renderer * renderer,
Oct 2, 2012
Oct 2, 2012
61
const SDL_FPoint * points, int count);
Jun 22, 2011
Jun 22, 2011
62
static int SW_RenderFillRects(SDL_Renderer * renderer,
Oct 2, 2012
Oct 2, 2012
63
const SDL_FRect * rects, int count);
Jun 22, 2011
Jun 22, 2011
64
static int SW_RenderCopy(SDL_Renderer * renderer, SDL_Texture * texture,
Oct 2, 2012
Oct 2, 2012
65
const SDL_Rect * srcrect, const SDL_FRect * dstrect);
Jun 1, 2012
Jun 1, 2012
66
static int SW_RenderCopyEx(SDL_Renderer * renderer, SDL_Texture * texture,
Oct 2, 2012
Oct 2, 2012
67
68
const SDL_Rect * srcrect, const SDL_FRect * dstrect,
const double angle, const SDL_FPoint * center, const SDL_RendererFlip flip);
Jun 22, 2011
Jun 22, 2011
69
70
71
72
73
74
75
76
77
78
79
static int SW_RenderReadPixels(SDL_Renderer * renderer, const SDL_Rect * rect,
Uint32 format, void * pixels, int pitch);
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,
{
"software",
Jan 22, 2012
Jan 22, 2012
80
SDL_RENDERER_SOFTWARE | SDL_RENDERER_TARGETTEXTURE,
Jun 22, 2011
Jun 22, 2011
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
8,
{
SDL_PIXELFORMAT_RGB555,
SDL_PIXELFORMAT_RGB565,
SDL_PIXELFORMAT_RGB888,
SDL_PIXELFORMAT_BGR888,
SDL_PIXELFORMAT_ARGB8888,
SDL_PIXELFORMAT_RGBA8888,
SDL_PIXELFORMAT_ABGR8888,
SDL_PIXELFORMAT_BGRA8888
},
0,
0}
};
typedef struct
{
SDL_Surface *surface;
Jan 22, 2012
Jan 22, 2012
99
SDL_Surface *window;
Jun 22, 2011
Jun 22, 2011
100
101
102
103
104
105
106
107
108
} SW_RenderData;
static SDL_Surface *
SW_ActivateRenderer(SDL_Renderer * renderer)
{
SW_RenderData *data = (SW_RenderData *) renderer->driverdata;
if (!data->surface) {
Jan 22, 2012
Jan 22, 2012
109
110
111
112
data->surface = data->window;
}
if (!data->surface) {
data->surface = data->window = SDL_GetWindowSurface(renderer->window);
Jun 22, 2011
Jun 22, 2011
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
SW_UpdateViewport(renderer);
}
return data->surface;
}
SDL_Renderer *
SW_CreateRendererForSurface(SDL_Surface * surface)
{
SDL_Renderer *renderer;
SW_RenderData *data;
if (!surface) {
SDL_SetError("Can't create renderer for NULL surface");
return NULL;
}
renderer = (SDL_Renderer *) SDL_calloc(1, sizeof(*renderer));
if (!renderer) {
SDL_OutOfMemory();
return NULL;
}
data = (SW_RenderData *) SDL_calloc(1, sizeof(*data));
if (!data) {
SW_DestroyRenderer(renderer);
SDL_OutOfMemory();
return NULL;
}
data->surface = surface;
renderer->WindowEvent = SW_WindowEvent;
renderer->CreateTexture = SW_CreateTexture;
renderer->SetTextureColorMod = SW_SetTextureColorMod;
renderer->SetTextureAlphaMod = SW_SetTextureAlphaMod;
renderer->SetTextureBlendMode = SW_SetTextureBlendMode;
renderer->UpdateTexture = SW_UpdateTexture;
renderer->LockTexture = SW_LockTexture;
renderer->UnlockTexture = SW_UnlockTexture;
Jan 22, 2012
Jan 22, 2012
152
renderer->SetRenderTarget = SW_SetRenderTarget;
Jun 22, 2011
Jun 22, 2011
153
154
155
156
157
158
renderer->UpdateViewport = SW_UpdateViewport;
renderer->RenderClear = SW_RenderClear;
renderer->RenderDrawPoints = SW_RenderDrawPoints;
renderer->RenderDrawLines = SW_RenderDrawLines;
renderer->RenderFillRects = SW_RenderFillRects;
renderer->RenderCopy = SW_RenderCopy;
Jun 1, 2012
Jun 1, 2012
159
renderer->RenderCopyEx = SW_RenderCopyEx;
Jun 22, 2011
Jun 22, 2011
160
161
renderer->RenderReadPixels = SW_RenderReadPixels;
renderer->RenderPresent = SW_RenderPresent;
Jan 22, 2012
Jan 22, 2012
162
renderer->DestroyTexture = SW_DestroyTexture;
Jun 22, 2011
Jun 22, 2011
163
164
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
renderer->DestroyRenderer = SW_DestroyRenderer;
renderer->info = SW_RenderDriver.info;
renderer->driverdata = data;
SW_ActivateRenderer(renderer);
return renderer;
}
SDL_Renderer *
SW_CreateRenderer(SDL_Window * window, Uint32 flags)
{
SDL_Surface *surface;
surface = SDL_GetWindowSurface(window);
if (!surface) {
return NULL;
}
return SW_CreateRendererForSurface(surface);
}
static void
SW_WindowEvent(SDL_Renderer * renderer, const SDL_WindowEvent *event)
{
SW_RenderData *data = (SW_RenderData *) renderer->driverdata;
if (event->event == SDL_WINDOWEVENT_SIZE_CHANGED) {
data->surface = NULL;
Feb 8, 2012
Feb 8, 2012
191
data->window = NULL;
Jun 22, 2011
Jun 22, 2011
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
}
}
static int
SW_CreateTexture(SDL_Renderer * renderer, SDL_Texture * texture)
{
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);
SDL_SetSurfaceColorMod(texture->driverdata, texture->r, texture->g,
texture->b);
SDL_SetSurfaceAlphaMod(texture->driverdata, texture->a);
SDL_SetSurfaceBlendMode(texture->driverdata, texture->blendMode);
if (texture->access == SDL_TEXTUREACCESS_STATIC) {
SDL_SetSurfaceRLE(texture->driverdata, 1);
}
if (!texture->driverdata) {
return -1;
}
return 0;
}
static int
SW_SetTextureColorMod(SDL_Renderer * renderer, SDL_Texture * texture)
{
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
return SDL_SetSurfaceColorMod(surface, texture->r, texture->g,
texture->b);
}
static int
SW_SetTextureAlphaMod(SDL_Renderer * renderer, SDL_Texture * texture)
{
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
return SDL_SetSurfaceAlphaMod(surface, texture->a);
}
static int
SW_SetTextureBlendMode(SDL_Renderer * renderer, SDL_Texture * texture)
{
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
return SDL_SetSurfaceBlendMode(surface, texture->blendMode);
}
static int
SW_UpdateTexture(SDL_Renderer * renderer, SDL_Texture * texture,
const SDL_Rect * rect, const void *pixels, int pitch)
{
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
Uint8 *src, *dst;
int row;
size_t length;
Jun 10, 2011
Jun 10, 2011
256
257
if(SDL_MUSTLOCK(surface))
SDL_LockSurface(surface);
Jun 22, 2011
Jun 22, 2011
258
259
260
261
262
263
264
265
266
267
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;
}
Jun 10, 2011
Jun 10, 2011
268
269
if(SDL_MUSTLOCK(surface))
SDL_UnlockSurface(surface);
Jun 22, 2011
Jun 22, 2011
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
return 0;
}
static int
SW_LockTexture(SDL_Renderer * renderer, SDL_Texture * texture,
const SDL_Rect * rect, void **pixels, int *pitch)
{
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
SW_UnlockTexture(SDL_Renderer * renderer, SDL_Texture * texture)
{
}
Jan 22, 2012
Jan 22, 2012
291
static int
Jan 22, 2012
Jan 22, 2012
292
SW_SetRenderTarget(SDL_Renderer * renderer, SDL_Texture * texture)
Jan 22, 2012
Jan 22, 2012
293
294
295
296
297
298
299
300
301
302
303
{
SW_RenderData *data = (SW_RenderData *) renderer->driverdata;
if (texture ) {
data->surface = (SDL_Surface *) texture->driverdata;
} else {
data->surface = data->window;
}
return 0;
}
Jun 22, 2011
Jun 22, 2011
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
344
345
346
static int
SW_UpdateViewport(SDL_Renderer * renderer)
{
SW_RenderData *data = (SW_RenderData *) renderer->driverdata;
SDL_Surface *surface = data->surface;
if (!surface) {
/* We'll update the viewport after we recreate the surface */
return 0;
}
if (!renderer->viewport.w && !renderer->viewport.h) {
/* There may be no window, so update the viewport directly */
renderer->viewport.w = surface->w;
renderer->viewport.h = surface->h;
}
SDL_SetClipRect(data->surface, &renderer->viewport);
return 0;
}
static int
SW_RenderClear(SDL_Renderer * renderer)
{
SDL_Surface *surface = SW_ActivateRenderer(renderer);
Uint32 color;
SDL_Rect clip_rect;
if (!surface) {
return -1;
}
color = SDL_MapRGBA(surface->format,
renderer->r, renderer->g, renderer->b, renderer->a);
/* By definition the clear ignores the clip rect */
clip_rect = surface->clip_rect;
SDL_SetClipRect(surface, NULL);
SDL_FillRect(surface, NULL, color);
SDL_SetClipRect(surface, &clip_rect);
return 0;
}
static int
Oct 2, 2012
Oct 2, 2012
347
SW_RenderDrawPoints(SDL_Renderer * renderer, const SDL_FPoint * points,
Jun 22, 2011
Jun 22, 2011
348
349
350
int count)
{
SDL_Surface *surface = SW_ActivateRenderer(renderer);
Oct 2, 2012
Oct 2, 2012
351
352
SDL_Point *final_points;
int i, status;
Jun 22, 2011
Jun 22, 2011
353
354
355
356
357
if (!surface) {
return -1;
}
Oct 2, 2012
Oct 2, 2012
358
359
360
361
362
final_points = SDL_stack_alloc(SDL_Point, count);
if (!final_points) {
SDL_OutOfMemory();
return -1;
}
Jun 22, 2011
Jun 22, 2011
363
if (renderer->viewport.x || renderer->viewport.y) {
Oct 2, 2012
Oct 2, 2012
364
365
int x = renderer->viewport.x;
int y = renderer->viewport.y;
Jun 22, 2011
Jun 22, 2011
366
367
for (i = 0; i < count; ++i) {
Oct 2, 2012
Oct 2, 2012
368
369
370
371
372
373
374
final_points[i].x = (int)(x + points[i].x);
final_points[i].y = (int)(y + points[i].y);
}
} else {
for (i = 0; i < count; ++i) {
final_points[i].x = (int)points[i].x;
final_points[i].y = (int)points[i].y;
Jun 22, 2011
Jun 22, 2011
375
376
377
378
379
380
381
382
383
}
}
/* Draw the points! */
if (renderer->blendMode == SDL_BLENDMODE_NONE) {
Uint32 color = SDL_MapRGBA(surface->format,
renderer->r, renderer->g, renderer->b,
renderer->a);
Oct 2, 2012
Oct 2, 2012
384
status = SDL_DrawPoints(surface, final_points, count, color);
Jun 22, 2011
Jun 22, 2011
385
} else {
Oct 2, 2012
Oct 2, 2012
386
status = SDL_BlendPoints(surface, final_points, count,
Jun 22, 2011
Jun 22, 2011
387
388
389
390
renderer->blendMode,
renderer->r, renderer->g, renderer->b,
renderer->a);
}
Oct 2, 2012
Oct 2, 2012
391
SDL_stack_free(final_points);
Jun 22, 2011
Jun 22, 2011
392
393
394
395
396
return status;
}
static int
Oct 2, 2012
Oct 2, 2012
397
SW_RenderDrawLines(SDL_Renderer * renderer, const SDL_FPoint * points,
Jun 22, 2011
Jun 22, 2011
398
399
400
int count)
{
SDL_Surface *surface = SW_ActivateRenderer(renderer);
Oct 2, 2012
Oct 2, 2012
401
402
SDL_Point *final_points;
int i, status;
Jun 22, 2011
Jun 22, 2011
403
404
405
406
407
if (!surface) {
return -1;
}
Oct 2, 2012
Oct 2, 2012
408
409
410
411
412
final_points = SDL_stack_alloc(SDL_Point, count);
if (!final_points) {
SDL_OutOfMemory();
return -1;
}
Jun 22, 2011
Jun 22, 2011
413
if (renderer->viewport.x || renderer->viewport.y) {
Oct 2, 2012
Oct 2, 2012
414
415
int x = renderer->viewport.x;
int y = renderer->viewport.y;
Jun 22, 2011
Jun 22, 2011
416
417
for (i = 0; i < count; ++i) {
Oct 2, 2012
Oct 2, 2012
418
419
420
421
422
423
424
final_points[i].x = (int)(x + points[i].x);
final_points[i].y = (int)(y + points[i].y);
}
} else {
for (i = 0; i < count; ++i) {
final_points[i].x = (int)points[i].x;
final_points[i].y = (int)points[i].y;
Jun 22, 2011
Jun 22, 2011
425
426
427
428
429
430
431
432
433
}
}
/* Draw the lines! */
if (renderer->blendMode == SDL_BLENDMODE_NONE) {
Uint32 color = SDL_MapRGBA(surface->format,
renderer->r, renderer->g, renderer->b,
renderer->a);
Oct 2, 2012
Oct 2, 2012
434
status = SDL_DrawLines(surface, final_points, count, color);
Jun 22, 2011
Jun 22, 2011
435
} else {
Oct 2, 2012
Oct 2, 2012
436
status = SDL_BlendLines(surface, final_points, count,
Jun 22, 2011
Jun 22, 2011
437
438
439
440
renderer->blendMode,
renderer->r, renderer->g, renderer->b,
renderer->a);
}
Oct 2, 2012
Oct 2, 2012
441
SDL_stack_free(final_points);
Jun 22, 2011
Jun 22, 2011
442
443
444
445
446
return status;
}
static int
Oct 2, 2012
Oct 2, 2012
447
SW_RenderFillRects(SDL_Renderer * renderer, const SDL_FRect * rects, int count)
Jun 22, 2011
Jun 22, 2011
448
449
{
SDL_Surface *surface = SW_ActivateRenderer(renderer);
Oct 2, 2012
Oct 2, 2012
450
451
SDL_Rect *final_rects;
int i, status;
Jun 22, 2011
Jun 22, 2011
452
453
454
455
456
if (!surface) {
return -1;
}
Oct 2, 2012
Oct 2, 2012
457
458
459
460
461
final_rects = SDL_stack_alloc(SDL_Rect, count);
if (!final_rects) {
SDL_OutOfMemory();
return -1;
}
Jun 22, 2011
Jun 22, 2011
462
if (renderer->viewport.x || renderer->viewport.y) {
Oct 2, 2012
Oct 2, 2012
463
464
int x = renderer->viewport.x;
int y = renderer->viewport.y;
Jun 22, 2011
Jun 22, 2011
465
466
for (i = 0; i < count; ++i) {
Oct 2, 2012
Oct 2, 2012
467
468
469
470
471
472
473
474
475
476
477
final_rects[i].x = (int)(x + rects[i].x);
final_rects[i].y = (int)(y + rects[i].y);
final_rects[i].w = SDL_max((int)rects[i].w, 1);
final_rects[i].h = SDL_max((int)rects[i].h, 1);
}
} else {
for (i = 0; i < count; ++i) {
final_rects[i].x = (int)rects[i].x;
final_rects[i].y = (int)rects[i].y;
final_rects[i].w = SDL_max((int)rects[i].w, 1);
final_rects[i].h = SDL_max((int)rects[i].h, 1);
Jun 22, 2011
Jun 22, 2011
478
479
480
481
482
483
484
}
}
if (renderer->blendMode == SDL_BLENDMODE_NONE) {
Uint32 color = SDL_MapRGBA(surface->format,
renderer->r, renderer->g, renderer->b,
renderer->a);
Oct 2, 2012
Oct 2, 2012
485
status = SDL_FillRects(surface, final_rects, count, color);
Jun 22, 2011
Jun 22, 2011
486
} else {
Oct 2, 2012
Oct 2, 2012
487
status = SDL_BlendFillRects(surface, final_rects, count,
Jun 22, 2011
Jun 22, 2011
488
489
490
491
renderer->blendMode,
renderer->r, renderer->g, renderer->b,
renderer->a);
}
Oct 2, 2012
Oct 2, 2012
492
SDL_stack_free(final_rects);
Jun 22, 2011
Jun 22, 2011
493
494
495
496
497
498
return status;
}
static int
SW_RenderCopy(SDL_Renderer * renderer, SDL_Texture * texture,
Oct 2, 2012
Oct 2, 2012
499
const SDL_Rect * srcrect, const SDL_FRect * dstrect)
Jun 22, 2011
Jun 22, 2011
500
501
502
{
SDL_Surface *surface = SW_ActivateRenderer(renderer);
SDL_Surface *src = (SDL_Surface *) texture->driverdata;
Oct 2, 2012
Oct 2, 2012
503
SDL_Rect final_rect;
Jun 22, 2011
Jun 22, 2011
504
505
506
507
508
509
if (!surface) {
return -1;
}
if (renderer->viewport.x || renderer->viewport.y) {
Oct 2, 2012
Oct 2, 2012
510
511
final_rect.x = (int)(renderer->viewport.x + dstrect->x);
final_rect.y = (int)(renderer->viewport.y + dstrect->y);
Oct 2, 2012
Oct 2, 2012
512
513
514
} else {
final_rect.x = (int)dstrect->x;
final_rect.y = (int)dstrect->y;
Jun 22, 2011
Jun 22, 2011
515
}
Oct 2, 2012
Oct 2, 2012
516
517
518
final_rect.w = (int)dstrect->w;
final_rect.h = (int)dstrect->h;
Jun 22, 2011
Jun 22, 2011
519
520
521
522
523
524
525
if ( srcrect->w == final_rect.w && srcrect->h == final_rect.h ) {
return SDL_BlitSurface(src, srcrect, surface, &final_rect);
} else {
return SDL_BlitScaled(src, srcrect, surface, &final_rect);
}
}
Jun 1, 2012
Jun 1, 2012
526
527
528
529
530
531
532
533
534
535
536
537
538
539
static int
GetScaleQuality(void)
{
const char *hint = SDL_GetHint(SDL_HINT_RENDER_SCALE_QUALITY);
if (!hint || *hint == '0' || SDL_strcasecmp(hint, "nearest") == 0) {
return 0;
} else {
return 1;
}
}
static int
SW_RenderCopyEx(SDL_Renderer * renderer, SDL_Texture * texture,
Oct 2, 2012
Oct 2, 2012
540
541
const SDL_Rect * srcrect, const SDL_FRect * dstrect,
const double angle, const SDL_FPoint * center, const SDL_RendererFlip flip)
Jun 1, 2012
Jun 1, 2012
542
543
544
{
SDL_Surface *surface = SW_ActivateRenderer(renderer);
SDL_Surface *src = (SDL_Surface *) texture->driverdata;
Oct 2, 2012
Oct 2, 2012
545
SDL_Rect final_rect, tmp_rect;
Jun 1, 2012
Jun 1, 2012
546
547
548
549
550
551
552
553
554
555
SDL_Surface *surface_rotated, *surface_scaled;
Uint32 colorkey;
int retval, dstwidth, dstheight, abscenterx, abscentery;
double cangle, sangle, px, py, p1x, p1y, p2x, p2y, p3x, p3y, p4x, p4y;
if (!surface) {
return -1;
}
if (renderer->viewport.x || renderer->viewport.y) {
Oct 2, 2012
Oct 2, 2012
556
557
final_rect.x = (int)(renderer->viewport.x + dstrect->x);
final_rect.y = (int)(renderer->viewport.y + dstrect->y);
Oct 2, 2012
Oct 2, 2012
558
559
560
} else {
final_rect.x = (int)dstrect->x;
final_rect.y = (int)dstrect->y;
Jun 1, 2012
Jun 1, 2012
561
}
Oct 2, 2012
Oct 2, 2012
562
563
final_rect.w = (int)dstrect->w;
final_rect.h = (int)dstrect->h;
Jun 1, 2012
Jun 1, 2012
564
565
566
567
568
surface_scaled = SDL_CreateRGBSurface(SDL_SWSURFACE, final_rect.w, final_rect.h, src->format->BitsPerPixel,
src->format->Rmask, src->format->Gmask,
src->format->Bmask, src->format->Amask );
if (surface_scaled) {
Oct 2, 2012
Oct 2, 2012
569
570
571
572
573
574
SDL_GetColorKey(src, &colorkey);
SDL_SetColorKey(surface_scaled, SDL_TRUE, colorkey);
tmp_rect = final_rect;
tmp_rect.x = 0;
tmp_rect.y = 0;
Jun 1, 2012
Jun 1, 2012
575
576
577
578
579
580
retval = SDL_BlitScaled(src, srcrect, surface_scaled, &tmp_rect);
if (!retval) {
_rotozoomSurfaceSizeTrig(tmp_rect.w, tmp_rect.h, -angle, &dstwidth, &dstheight, &cangle, &sangle);
surface_rotated = _rotateSurface(surface_scaled, -angle, dstwidth/2, dstheight/2, GetScaleQuality(), flip & SDL_FLIP_HORIZONTAL, flip & SDL_FLIP_VERTICAL, dstwidth, dstheight, cangle, sangle);
if(surface_rotated) {
/* Find out where the new origin is by rotating the four final_rect points around the center and then taking the extremes */
Oct 2, 2012
Oct 2, 2012
581
582
abscenterx = final_rect.x + (int)center->x;
abscentery = final_rect.y + (int)center->y;
Jun 1, 2012
Jun 1, 2012
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
/* Compensate the angle inversion to match the behaviour of the other backends */
sangle = -sangle;
/* Top Left */
px = final_rect.x - abscenterx;
py = final_rect.y - abscentery;
p1x = px * cangle - py * sangle + abscenterx;
p1y = px * sangle + py * cangle + abscentery;
/* Top Right */
px = final_rect.x + final_rect.w - abscenterx;
py = final_rect.y - abscentery;
p2x = px * cangle - py * sangle + abscenterx;
p2y = px * sangle + py * cangle + abscentery;
/* Bottom Left */
px = final_rect.x - abscenterx;
py = final_rect.y + final_rect.h - abscentery;
p3x = px * cangle - py * sangle + abscenterx;
p3y = px * sangle + py * cangle + abscentery;
/* Bottom Right */
px = final_rect.x + final_rect.w - abscenterx;
py = final_rect.y + final_rect.h - abscentery;
p4x = px * cangle - py * sangle + abscenterx;
p4y = px * sangle + py * cangle + abscentery;
tmp_rect.x = (int)MIN(MIN(p1x, p2x), MIN(p3x, p4x));
tmp_rect.y = (int)MIN(MIN(p1y, p2y), MIN(p3y, p4y));
tmp_rect.w = dstwidth;
tmp_rect.h = dstheight;
retval = SDL_BlitSurface(surface_rotated, NULL, surface, &tmp_rect);
SDL_FreeSurface(surface_scaled);
SDL_FreeSurface(surface_rotated);
return retval;
}
}
return retval;
}
return -1;
}
Jun 22, 2011
Jun 22, 2011
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
static int
SW_RenderReadPixels(SDL_Renderer * renderer, const SDL_Rect * rect,
Uint32 format, void * pixels, int pitch)
{
SDL_Surface *surface = SW_ActivateRenderer(renderer);
Uint32 src_format;
void *src_pixels;
SDL_Rect final_rect;
if (!surface) {
return -1;
}
if (renderer->viewport.x || renderer->viewport.y) {
final_rect.x = renderer->viewport.x + rect->x;
final_rect.y = renderer->viewport.y + rect->y;
final_rect.w = rect->w;
final_rect.h = rect->h;
rect = &final_rect;
}
if (rect->x < 0 || rect->x+rect->w > surface->w ||
rect->y < 0 || rect->y+rect->h > surface->h) {
SDL_SetError("Tried to read outside of surface bounds");
return -1;
}
src_format = surface->format->format;
src_pixels = (void*)((Uint8 *) surface->pixels +
rect->y * surface->pitch +
rect->x * surface->format->BytesPerPixel);
return SDL_ConvertPixels(rect->w, rect->h,
src_format, src_pixels, surface->pitch,
format, pixels, pitch);
}
static void
SW_RenderPresent(SDL_Renderer * renderer)
{
SDL_Window *window = renderer->window;
if (window) {
SDL_UpdateWindowSurface(window);
}
}
static void
SW_DestroyTexture(SDL_Renderer * renderer, SDL_Texture * texture)
{
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
SDL_FreeSurface(surface);
}
static void
SW_DestroyRenderer(SDL_Renderer * renderer)
{
SW_RenderData *data = (SW_RenderData *) renderer->driverdata;
if (data) {
SDL_free(data);
}
SDL_free(renderer);
}
#endif /* !SDL_RENDER_DISABLED */
/* vi: set ts=4 sw=4 expandtab: */