2006-07-10 21:04:37 +00:00
|
|
|
/*
|
2011-04-08 13:03:26 -07:00
|
|
|
Simple DirectMedia Layer
|
2011-12-31 09:28:07 -05:00
|
|
|
Copyright (C) 1997-2012 Sam Lantinga <slouken@libsdl.org>
|
2011-04-08 13:03:26 -07:00
|
|
|
|
|
|
|
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.
|
2006-07-10 21:04:37 +00:00
|
|
|
*/
|
|
|
|
#include "SDL_config.h"
|
|
|
|
|
2011-02-08 10:04:09 -08:00
|
|
|
#if !SDL_RENDER_DISABLED
|
|
|
|
|
2011-02-02 14:34:54 -08:00
|
|
|
#include "../SDL_sysrender.h"
|
2011-10-31 05:56:58 -04:00
|
|
|
#include "SDL_render_sw_c.h"
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2011-02-03 02:45:29 -08:00
|
|
|
#include "SDL_draw.h"
|
|
|
|
#include "SDL_blendfillrect.h"
|
|
|
|
#include "SDL_blendline.h"
|
|
|
|
#include "SDL_blendpoint.h"
|
|
|
|
#include "SDL_drawline.h"
|
|
|
|
#include "SDL_drawpoint.h"
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
|
|
|
|
/* SDL surface based renderer implementation */
|
|
|
|
|
2006-07-19 07:18:45 +00:00
|
|
|
static SDL_Renderer *SW_CreateRenderer(SDL_Window * window, Uint32 flags);
|
2011-02-01 19:19:43 -08:00
|
|
|
static void SW_WindowEvent(SDL_Renderer * renderer,
|
|
|
|
const SDL_WindowEvent *event);
|
2006-07-19 07:18:45 +00:00
|
|
|
static int SW_CreateTexture(SDL_Renderer * renderer, SDL_Texture * texture);
|
2006-08-28 03:17:39 +00:00
|
|
|
static int SW_SetTextureColorMod(SDL_Renderer * renderer,
|
|
|
|
SDL_Texture * texture);
|
|
|
|
static int SW_SetTextureAlphaMod(SDL_Renderer * renderer,
|
|
|
|
SDL_Texture * texture);
|
2011-01-31 23:37:30 -08:00
|
|
|
static int SW_SetTextureBlendMode(SDL_Renderer * renderer,
|
|
|
|
SDL_Texture * texture);
|
2006-08-28 03:17:39 +00:00
|
|
|
static int SW_UpdateTexture(SDL_Renderer * renderer, SDL_Texture * texture,
|
|
|
|
const SDL_Rect * rect, const void *pixels,
|
|
|
|
int pitch);
|
2006-07-19 07:18:45 +00:00
|
|
|
static int SW_LockTexture(SDL_Renderer * renderer, SDL_Texture * texture,
|
2011-02-03 00:19:40 -08:00
|
|
|
const SDL_Rect * rect, void **pixels, int *pitch);
|
2006-07-19 07:18:45 +00:00
|
|
|
static void SW_UnlockTexture(SDL_Renderer * renderer, SDL_Texture * texture);
|
2012-01-22 01:26:28 -05:00
|
|
|
static int SW_SetRenderTarget(SDL_Renderer * renderer, SDL_Texture * texture);
|
2011-02-15 13:59:59 -08:00
|
|
|
static int SW_UpdateViewport(SDL_Renderer * renderer);
|
|
|
|
static int SW_RenderClear(SDL_Renderer * renderer);
|
2009-12-23 01:55:00 +00:00
|
|
|
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,
|
2011-02-15 13:59:59 -08:00
|
|
|
const SDL_Rect * rects, int count);
|
2006-07-19 07:18:45 +00:00
|
|
|
static int SW_RenderCopy(SDL_Renderer * renderer, SDL_Texture * texture,
|
2006-08-28 03:17:39 +00:00
|
|
|
const SDL_Rect * srcrect, const SDL_Rect * dstrect);
|
2009-11-09 05:20:11 +00:00
|
|
|
static int SW_RenderReadPixels(SDL_Renderer * renderer, const SDL_Rect * rect,
|
2009-11-16 07:13:07 +00:00
|
|
|
Uint32 format, void * pixels, int pitch);
|
2006-07-19 07:18:45 +00:00
|
|
|
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,
|
2006-07-10 21:04:37 +00:00
|
|
|
{
|
|
|
|
"software",
|
2012-01-21 22:22:30 -05:00
|
|
|
SDL_RENDERER_SOFTWARE | SDL_RENDERER_TARGETTEXTURE,
|
2011-02-03 00:19:40 -08:00
|
|
|
8,
|
2006-07-10 21:04:37 +00:00
|
|
|
{
|
2006-08-05 17:09:42 +00:00
|
|
|
SDL_PIXELFORMAT_RGB555,
|
|
|
|
SDL_PIXELFORMAT_RGB565,
|
|
|
|
SDL_PIXELFORMAT_RGB888,
|
|
|
|
SDL_PIXELFORMAT_BGR888,
|
|
|
|
SDL_PIXELFORMAT_ARGB8888,
|
|
|
|
SDL_PIXELFORMAT_RGBA8888,
|
|
|
|
SDL_PIXELFORMAT_ABGR8888,
|
2011-02-03 00:19:40 -08:00
|
|
|
SDL_PIXELFORMAT_BGRA8888
|
|
|
|
},
|
2006-07-10 21:04:37 +00:00
|
|
|
0,
|
|
|
|
0}
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2011-02-03 15:49:37 -08:00
|
|
|
SDL_Surface *surface;
|
2012-01-21 22:22:30 -05:00
|
|
|
SDL_Surface *window;
|
2006-07-19 07:18:45 +00:00
|
|
|
} SW_RenderData;
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2006-07-15 09:46:36 +00:00
|
|
|
|
2011-02-15 13:59:59 -08:00
|
|
|
static SDL_Surface *
|
|
|
|
SW_ActivateRenderer(SDL_Renderer * renderer)
|
|
|
|
{
|
|
|
|
SW_RenderData *data = (SW_RenderData *) renderer->driverdata;
|
|
|
|
|
|
|
|
if (!data->surface) {
|
2012-01-21 22:22:30 -05:00
|
|
|
data->surface = data->window;
|
|
|
|
}
|
|
|
|
if (!data->surface) {
|
|
|
|
data->surface = data->window = SDL_GetWindowSurface(renderer->window);
|
2011-02-15 13:59:59 -08:00
|
|
|
|
|
|
|
SW_UpdateViewport(renderer);
|
|
|
|
}
|
|
|
|
return data->surface;
|
|
|
|
}
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
SDL_Renderer *
|
2011-02-03 15:49:37 -08:00
|
|
|
SW_CreateRendererForSurface(SDL_Surface * surface)
|
2006-07-10 21:04:37 +00:00
|
|
|
{
|
|
|
|
SDL_Renderer *renderer;
|
2006-07-19 07:18:45 +00:00
|
|
|
SW_RenderData *data;
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2011-02-03 15:49:37 -08:00
|
|
|
if (!surface) {
|
|
|
|
SDL_SetError("Can't create renderer for NULL surface");
|
2006-07-10 21:04:37 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
renderer = (SDL_Renderer *) SDL_calloc(1, sizeof(*renderer));
|
|
|
|
if (!renderer) {
|
|
|
|
SDL_OutOfMemory();
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2006-07-22 08:33:18 +00:00
|
|
|
data = (SW_RenderData *) SDL_calloc(1, sizeof(*data));
|
2006-07-10 21:04:37 +00:00
|
|
|
if (!data) {
|
2006-07-19 07:18:45 +00:00
|
|
|
SW_DestroyRenderer(renderer);
|
2006-07-10 21:04:37 +00:00
|
|
|
SDL_OutOfMemory();
|
|
|
|
return NULL;
|
|
|
|
}
|
2011-02-03 15:49:37 -08:00
|
|
|
data->surface = surface;
|
|
|
|
|
2011-02-01 19:19:43 -08:00
|
|
|
renderer->WindowEvent = SW_WindowEvent;
|
2011-02-02 14:34:54 -08:00
|
|
|
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;
|
2012-01-22 01:26:28 -05:00
|
|
|
renderer->SetRenderTarget = SW_SetRenderTarget;
|
2011-02-15 13:59:59 -08:00
|
|
|
renderer->UpdateViewport = SW_UpdateViewport;
|
|
|
|
renderer->RenderClear = SW_RenderClear;
|
2009-12-23 01:55:00 +00:00
|
|
|
renderer->RenderDrawPoints = SW_RenderDrawPoints;
|
|
|
|
renderer->RenderDrawLines = SW_RenderDrawLines;
|
|
|
|
renderer->RenderFillRects = SW_RenderFillRects;
|
2006-07-19 07:18:45 +00:00
|
|
|
renderer->RenderCopy = SW_RenderCopy;
|
2009-11-09 05:20:11 +00:00
|
|
|
renderer->RenderReadPixels = SW_RenderReadPixels;
|
2006-07-19 07:18:45 +00:00
|
|
|
renderer->RenderPresent = SW_RenderPresent;
|
2012-01-21 22:22:30 -05:00
|
|
|
renderer->DestroyTexture = SW_DestroyTexture;
|
2006-07-19 07:18:45 +00:00
|
|
|
renderer->DestroyRenderer = SW_DestroyRenderer;
|
2011-02-02 14:34:54 -08:00
|
|
|
renderer->info = SW_RenderDriver.info;
|
2006-07-10 21:04:37 +00:00
|
|
|
renderer->driverdata = data;
|
|
|
|
|
2011-02-15 13:59:59 -08:00
|
|
|
SW_ActivateRenderer(renderer);
|
|
|
|
|
2011-02-03 15:49:37 -08:00
|
|
|
return renderer;
|
|
|
|
}
|
2006-07-15 09:46:36 +00:00
|
|
|
|
2011-02-03 15:49:37 -08:00
|
|
|
SDL_Renderer *
|
|
|
|
SW_CreateRenderer(SDL_Window * window, Uint32 flags)
|
|
|
|
{
|
|
|
|
SDL_Surface *surface;
|
2006-07-15 09:46:36 +00:00
|
|
|
|
2011-02-03 15:49:37 -08:00
|
|
|
surface = SDL_GetWindowSurface(window);
|
|
|
|
if (!surface) {
|
2006-07-15 09:46:36 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2011-02-03 15:49:37 -08:00
|
|
|
return SW_CreateRendererForSurface(surface);
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
|
|
|
|
2011-02-01 19:19:43 -08:00
|
|
|
static void
|
|
|
|
SW_WindowEvent(SDL_Renderer * renderer, const SDL_WindowEvent *event)
|
2006-08-06 04:39:13 +00:00
|
|
|
{
|
|
|
|
SW_RenderData *data = (SW_RenderData *) renderer->driverdata;
|
|
|
|
|
2011-02-12 19:02:14 -08:00
|
|
|
if (event->event == SDL_WINDOWEVENT_SIZE_CHANGED) {
|
2011-02-15 13:59:59 -08:00
|
|
|
data->surface = NULL;
|
2012-02-07 19:34:24 -05:00
|
|
|
data->window = NULL;
|
2006-08-06 04:39:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
static int
|
2006-07-19 07:18:45 +00:00
|
|
|
SW_CreateTexture(SDL_Renderer * renderer, SDL_Texture * texture)
|
2006-07-10 21:04:37 +00:00
|
|
|
{
|
2011-02-03 00:19:40 -08:00
|
|
|
int bpp;
|
|
|
|
Uint32 Rmask, Gmask, Bmask, Amask;
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2011-02-03 00:19:40 -08:00
|
|
|
if (!SDL_PixelFormatEnumToMasks
|
|
|
|
(texture->format, &bpp, &Rmask, &Gmask, &Bmask, &Amask)) {
|
|
|
|
SDL_SetError("Unknown texture format");
|
|
|
|
return -1;
|
|
|
|
}
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2011-02-03 00:19:40 -08:00
|
|
|
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);
|
2009-01-30 06:40:16 +00:00
|
|
|
|
2011-02-03 00:19:40 -08:00
|
|
|
if (texture->access == SDL_TEXTUREACCESS_STATIC) {
|
|
|
|
SDL_SetSurfaceRLE(texture->driverdata, 1);
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!texture->driverdata) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-08-28 03:17:39 +00:00
|
|
|
static int
|
|
|
|
SW_SetTextureColorMod(SDL_Renderer * renderer, SDL_Texture * texture)
|
|
|
|
{
|
2007-08-18 05:39:09 +00:00
|
|
|
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
|
|
|
|
return SDL_SetSurfaceColorMod(surface, texture->r, texture->g,
|
|
|
|
texture->b);
|
2006-08-28 03:17:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
SW_SetTextureAlphaMod(SDL_Renderer * renderer, SDL_Texture * texture)
|
|
|
|
{
|
2007-08-18 05:39:09 +00:00
|
|
|
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
|
|
|
|
return SDL_SetSurfaceAlphaMod(surface, texture->a);
|
2006-08-28 03:17:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
SW_SetTextureBlendMode(SDL_Renderer * renderer, SDL_Texture * texture)
|
|
|
|
{
|
2007-08-18 05:39:09 +00:00
|
|
|
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
|
|
|
|
return SDL_SetSurfaceBlendMode(surface, texture->blendMode);
|
2006-08-28 03:17:39 +00:00
|
|
|
}
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
static int
|
2006-07-19 07:18:45 +00:00
|
|
|
SW_UpdateTexture(SDL_Renderer * renderer, SDL_Texture * texture,
|
|
|
|
const SDL_Rect * rect, const void *pixels, int pitch)
|
2006-07-10 21:04:37 +00:00
|
|
|
{
|
2011-02-03 00:19:40 -08:00
|
|
|
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
|
|
|
|
Uint8 *src, *dst;
|
|
|
|
int row;
|
|
|
|
size_t length;
|
|
|
|
|
2011-06-10 12:13:06 +03:00
|
|
|
if(SDL_MUSTLOCK(surface))
|
|
|
|
SDL_LockSurface(surface);
|
2011-02-03 00:19:40 -08:00
|
|
|
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;
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2011-06-10 12:13:06 +03:00
|
|
|
if(SDL_MUSTLOCK(surface))
|
|
|
|
SDL_UnlockSurface(surface);
|
2011-02-03 00:19:40 -08:00
|
|
|
return 0;
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2006-07-19 07:18:45 +00:00
|
|
|
SW_LockTexture(SDL_Renderer * renderer, SDL_Texture * texture,
|
2011-02-03 00:19:40 -08:00
|
|
|
const SDL_Rect * rect, void **pixels, int *pitch)
|
2006-07-10 21:04:37 +00:00
|
|
|
{
|
2011-02-03 00:19:40 -08:00
|
|
|
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2011-02-03 00:19:40 -08:00
|
|
|
*pixels =
|
|
|
|
(void *) ((Uint8 *) surface->pixels + rect->y * surface->pitch +
|
|
|
|
rect->x * surface->format->BytesPerPixel);
|
|
|
|
*pitch = surface->pitch;
|
|
|
|
return 0;
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-07-19 07:18:45 +00:00
|
|
|
SW_UnlockTexture(SDL_Renderer * renderer, SDL_Texture * texture)
|
2006-07-10 21:04:37 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-01-21 22:22:30 -05:00
|
|
|
static int
|
2012-01-22 01:26:28 -05:00
|
|
|
SW_SetRenderTarget(SDL_Renderer * renderer, SDL_Texture * texture)
|
2012-01-21 22:22:30 -05:00
|
|
|
{
|
|
|
|
SW_RenderData *data = (SW_RenderData *) renderer->driverdata;
|
|
|
|
|
|
|
|
if (texture ) {
|
|
|
|
data->surface = (SDL_Surface *) texture->driverdata;
|
|
|
|
} else {
|
|
|
|
data->surface = data->window;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-02-15 13:59:59 -08:00
|
|
|
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;
|
|
|
|
}
|
2011-02-15 14:10:50 -08:00
|
|
|
SDL_SetClipRect(data->surface, &renderer->viewport);
|
2011-02-15 13:59:59 -08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
SW_RenderClear(SDL_Renderer * renderer)
|
2011-02-07 20:06:26 -08:00
|
|
|
{
|
|
|
|
SDL_Surface *surface = SW_ActivateRenderer(renderer);
|
2011-02-15 13:59:59 -08:00
|
|
|
Uint32 color;
|
|
|
|
SDL_Rect clip_rect;
|
2011-02-07 20:06:26 -08:00
|
|
|
|
|
|
|
if (!surface) {
|
2011-02-15 13:59:59 -08:00
|
|
|
return -1;
|
2011-02-07 20:06:26 -08:00
|
|
|
}
|
2011-02-15 13:59:59 -08:00
|
|
|
|
|
|
|
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;
|
2011-02-07 20:06:26 -08:00
|
|
|
}
|
|
|
|
|
2008-12-21 17:39:41 +00:00
|
|
|
static int
|
2009-12-23 01:55:00 +00:00
|
|
|
SW_RenderDrawPoints(SDL_Renderer * renderer, const SDL_Point * points,
|
|
|
|
int count)
|
2008-12-21 17:39:41 +00:00
|
|
|
{
|
2011-02-03 15:49:37 -08:00
|
|
|
SDL_Surface *surface = SW_ActivateRenderer(renderer);
|
2011-02-15 13:59:59 -08:00
|
|
|
SDL_Point *temp = NULL;
|
|
|
|
int status;
|
2009-12-09 15:56:56 +00:00
|
|
|
|
2011-02-03 15:49:37 -08:00
|
|
|
if (!surface) {
|
2011-02-01 19:19:43 -08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-02-15 13:59:59 -08:00
|
|
|
if (renderer->viewport.x || renderer->viewport.y) {
|
|
|
|
int i;
|
|
|
|
int x = renderer->viewport.x;
|
|
|
|
int y = renderer->viewport.y;
|
|
|
|
|
|
|
|
temp = SDL_stack_alloc(SDL_Point, count);
|
|
|
|
for (i = 0; i < count; ++i) {
|
|
|
|
temp[i].x = x + points[i].x;
|
|
|
|
temp[i].y = y + points[i].x;
|
|
|
|
}
|
|
|
|
points = temp;
|
|
|
|
}
|
|
|
|
|
2009-12-09 15:56:56 +00:00
|
|
|
/* Draw the points! */
|
2011-01-31 23:23:57 -08:00
|
|
|
if (renderer->blendMode == SDL_BLENDMODE_NONE) {
|
2011-02-03 15:49:37 -08:00
|
|
|
Uint32 color = SDL_MapRGBA(surface->format,
|
2009-12-09 15:56:56 +00:00
|
|
|
renderer->r, renderer->g, renderer->b,
|
|
|
|
renderer->a);
|
|
|
|
|
2011-02-15 13:59:59 -08:00
|
|
|
status = SDL_DrawPoints(surface, points, count, color);
|
2008-12-21 17:39:41 +00:00
|
|
|
} else {
|
2011-02-15 13:59:59 -08:00
|
|
|
status = SDL_BlendPoints(surface, points, count,
|
|
|
|
renderer->blendMode,
|
|
|
|
renderer->r, renderer->g, renderer->b,
|
|
|
|
renderer->a);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (temp) {
|
|
|
|
SDL_stack_free(temp);
|
2008-12-21 17:39:41 +00:00
|
|
|
}
|
2011-02-15 13:59:59 -08:00
|
|
|
return status;
|
2008-12-21 17:39:41 +00:00
|
|
|
}
|
|
|
|
|
2008-12-20 13:14:28 +00:00
|
|
|
static int
|
2009-12-23 01:55:00 +00:00
|
|
|
SW_RenderDrawLines(SDL_Renderer * renderer, const SDL_Point * points,
|
|
|
|
int count)
|
2008-12-20 13:14:28 +00:00
|
|
|
{
|
2011-02-03 15:49:37 -08:00
|
|
|
SDL_Surface *surface = SW_ActivateRenderer(renderer);
|
2011-02-15 13:59:59 -08:00
|
|
|
SDL_Point *temp = NULL;
|
|
|
|
int status;
|
2009-12-09 15:56:56 +00:00
|
|
|
|
2011-02-03 15:49:37 -08:00
|
|
|
if (!surface) {
|
2011-02-01 19:19:43 -08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-02-15 13:59:59 -08:00
|
|
|
if (renderer->viewport.x || renderer->viewport.y) {
|
|
|
|
int i;
|
|
|
|
int x = renderer->viewport.x;
|
|
|
|
int y = renderer->viewport.y;
|
|
|
|
|
|
|
|
temp = SDL_stack_alloc(SDL_Point, count);
|
|
|
|
for (i = 0; i < count; ++i) {
|
|
|
|
temp[i].x = x + points[i].x;
|
|
|
|
temp[i].y = y + points[i].y;
|
|
|
|
}
|
|
|
|
points = temp;
|
|
|
|
}
|
|
|
|
|
2011-02-03 15:49:37 -08:00
|
|
|
/* Draw the lines! */
|
2011-01-31 23:23:57 -08:00
|
|
|
if (renderer->blendMode == SDL_BLENDMODE_NONE) {
|
2011-02-03 15:49:37 -08:00
|
|
|
Uint32 color = SDL_MapRGBA(surface->format,
|
2009-12-09 15:56:56 +00:00
|
|
|
renderer->r, renderer->g, renderer->b,
|
|
|
|
renderer->a);
|
|
|
|
|
2011-02-15 13:59:59 -08:00
|
|
|
status = SDL_DrawLines(surface, points, count, color);
|
2008-12-20 13:14:28 +00:00
|
|
|
} else {
|
2011-02-15 13:59:59 -08:00
|
|
|
status = SDL_BlendLines(surface, points, count,
|
|
|
|
renderer->blendMode,
|
|
|
|
renderer->r, renderer->g, renderer->b,
|
|
|
|
renderer->a);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (temp) {
|
|
|
|
SDL_stack_free(temp);
|
2008-12-20 13:14:28 +00:00
|
|
|
}
|
2011-02-15 13:59:59 -08:00
|
|
|
return status;
|
2008-12-20 13:14:28 +00:00
|
|
|
}
|
|
|
|
|
2009-12-23 01:55:00 +00:00
|
|
|
static int
|
2011-02-15 13:59:59 -08:00
|
|
|
SW_RenderFillRects(SDL_Renderer * renderer, const SDL_Rect * rects, int count)
|
2009-12-23 01:55:00 +00:00
|
|
|
{
|
2011-02-03 15:49:37 -08:00
|
|
|
SDL_Surface *surface = SW_ActivateRenderer(renderer);
|
2011-02-15 13:59:59 -08:00
|
|
|
SDL_Rect *temp = NULL;
|
|
|
|
int status;
|
2009-12-23 01:55:00 +00:00
|
|
|
|
2011-02-03 15:49:37 -08:00
|
|
|
if (!surface) {
|
2011-02-01 19:19:43 -08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-02-15 13:59:59 -08:00
|
|
|
if (renderer->viewport.x || renderer->viewport.y) {
|
|
|
|
int i;
|
|
|
|
int x = renderer->viewport.x;
|
|
|
|
int y = renderer->viewport.y;
|
|
|
|
|
|
|
|
temp = SDL_stack_alloc(SDL_Rect, count);
|
|
|
|
for (i = 0; i < count; ++i) {
|
|
|
|
temp[i].x = x + rects[i].x;
|
|
|
|
temp[i].y = y + rects[i].y;
|
|
|
|
temp[i].w = rects[i].w;
|
|
|
|
temp[i].h = rects[i].h;
|
|
|
|
}
|
|
|
|
rects = temp;
|
|
|
|
}
|
|
|
|
|
2011-01-31 23:23:57 -08:00
|
|
|
if (renderer->blendMode == SDL_BLENDMODE_NONE) {
|
2011-02-03 15:49:37 -08:00
|
|
|
Uint32 color = SDL_MapRGBA(surface->format,
|
|
|
|
renderer->r, renderer->g, renderer->b,
|
|
|
|
renderer->a);
|
2011-02-15 13:59:59 -08:00
|
|
|
status = SDL_FillRects(surface, rects, count, color);
|
2011-02-03 15:49:37 -08:00
|
|
|
} else {
|
2011-02-15 13:59:59 -08:00
|
|
|
status = SDL_BlendFillRects(surface, rects, count,
|
|
|
|
renderer->blendMode,
|
|
|
|
renderer->r, renderer->g, renderer->b,
|
|
|
|
renderer->a);
|
2009-12-23 01:55:00 +00:00
|
|
|
}
|
2011-02-15 13:59:59 -08:00
|
|
|
|
|
|
|
if (temp) {
|
|
|
|
SDL_stack_free(temp);
|
|
|
|
}
|
|
|
|
return status;
|
2009-12-23 01:55:00 +00:00
|
|
|
}
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
static int
|
2006-07-19 07:18:45 +00:00
|
|
|
SW_RenderCopy(SDL_Renderer * renderer, SDL_Texture * texture,
|
2006-08-28 03:17:39 +00:00
|
|
|
const SDL_Rect * srcrect, const SDL_Rect * dstrect)
|
2006-07-10 21:04:37 +00:00
|
|
|
{
|
2011-02-03 15:49:37 -08:00
|
|
|
SDL_Surface *surface = SW_ActivateRenderer(renderer);
|
|
|
|
SDL_Surface *src = (SDL_Surface *) texture->driverdata;
|
|
|
|
SDL_Rect final_rect = *dstrect;
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2011-02-03 15:49:37 -08:00
|
|
|
if (!surface) {
|
2011-02-01 19:19:43 -08:00
|
|
|
return -1;
|
|
|
|
}
|
2011-02-14 11:50:18 -06:00
|
|
|
|
2011-02-15 13:59:59 -08:00
|
|
|
if (renderer->viewport.x || renderer->viewport.y) {
|
|
|
|
final_rect.x += renderer->viewport.x;
|
|
|
|
final_rect.y += renderer->viewport.y;
|
|
|
|
}
|
2011-02-14 11:50:18 -06:00
|
|
|
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);
|
|
|
|
}
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
|
|
|
|
2009-11-09 05:20:11 +00:00
|
|
|
static int
|
|
|
|
SW_RenderReadPixels(SDL_Renderer * renderer, const SDL_Rect * rect,
|
2009-11-16 07:13:07 +00:00
|
|
|
Uint32 format, void * pixels, int pitch)
|
2009-11-09 05:20:11 +00:00
|
|
|
{
|
2011-02-03 15:49:37 -08:00
|
|
|
SDL_Surface *surface = SW_ActivateRenderer(renderer);
|
|
|
|
Uint32 src_format;
|
|
|
|
void *src_pixels;
|
2011-02-15 13:59:59 -08:00
|
|
|
SDL_Rect final_rect;
|
2009-11-09 05:20:11 +00:00
|
|
|
|
2011-02-03 15:49:37 -08:00
|
|
|
if (!surface) {
|
2011-02-01 19:19:43 -08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-02-15 13:59:59 -08:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2011-02-03 15:49:37 -08:00
|
|
|
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");
|
2009-11-09 05:20:11 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-02-15 13:59:59 -08:00
|
|
|
src_format = surface->format->format;
|
2011-02-03 15:49:37 -08:00
|
|
|
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);
|
2009-11-09 05:20:11 +00:00
|
|
|
}
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
static void
|
2006-07-19 07:18:45 +00:00
|
|
|
SW_RenderPresent(SDL_Renderer * renderer)
|
2006-07-10 21:04:37 +00:00
|
|
|
{
|
2011-02-03 15:49:37 -08:00
|
|
|
SDL_Window *window = renderer->window;
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2011-02-03 15:49:37 -08:00
|
|
|
if (window) {
|
|
|
|
SDL_UpdateWindowSurface(window);
|
2011-02-01 19:19:43 -08:00
|
|
|
}
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-07-19 07:18:45 +00:00
|
|
|
SW_DestroyTexture(SDL_Renderer * renderer, SDL_Texture * texture)
|
2006-07-10 21:04:37 +00:00
|
|
|
{
|
2011-02-03 00:19:40 -08:00
|
|
|
SDL_Surface *surface = (SDL_Surface *) texture->driverdata;
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2011-02-03 00:19:40 -08:00
|
|
|
SDL_FreeSurface(surface);
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-07-19 07:18:45 +00:00
|
|
|
SW_DestroyRenderer(SDL_Renderer * renderer)
|
2006-07-10 21:04:37 +00:00
|
|
|
{
|
2006-07-19 07:18:45 +00:00
|
|
|
SW_RenderData *data = (SW_RenderData *) renderer->driverdata;
|
2006-07-10 21:04:37 +00:00
|
|
|
|
|
|
|
if (data) {
|
|
|
|
SDL_free(data);
|
|
|
|
}
|
|
|
|
SDL_free(renderer);
|
|
|
|
}
|
|
|
|
|
2011-02-08 10:04:09 -08:00
|
|
|
#endif /* !SDL_RENDER_DISABLED */
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
/* vi: set ts=4 sw=4 expandtab: */
|