annotate src/video/ps3/SDL_ps3render.c @ 3147:a80760096937 gsoc2009_ps3

Support all YUV texture formats using SW_Textures.
author Martin Lowinski <martin@goldtopf.org>
date Thu, 18 Jun 2009 03:27:12 +0000
parents 9e902f423497
children 104786a909a2
rev   line source
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
1 /*
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
2 SDL - Simple DirectMedia Layer
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
3 Copyright (C) 1997-2009 Sam Lantinga
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
4
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
5 This library is free software; you can redistribute it and/or
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
6 modify it under the terms of the GNU Lesser General Public
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
7 License as published by the Free Software Foundation; either
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
8 version 2.1 of the License, or (at your option) any later version.
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
9
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
10 This library is distributed in the hope that it will be useful,
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
13 Lesser General Public License for more details.
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
14
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
15 You should have received a copy of the GNU Lesser General Public
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
16 License along with this library; if not, write to the Free Software
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
18
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
19 Sam Lantinga
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
20 slouken@libsdl.org
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
21 */
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
22 #include "SDL_config.h"
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
23
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
24 #include "SDL_video.h"
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
25 #include "../SDL_sysvideo.h"
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
26 #include "../SDL_yuv_sw_c.h"
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
27 #include "../SDL_renderer_sw.h"
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
28
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
29 #include "SDL_ps3video.h"
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
30 #include "SDL_ps3spe_c.h"
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
31
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
32 #include <fcntl.h>
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
33 #include <stdlib.h>
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
34 #include <sys/ioctl.h>
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
35 #include <linux/kd.h>
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
36 #include <linux/fb.h>
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
37 #include <sys/mman.h>
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
38 #include <asm/ps3fb.h>
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
39
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
40
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
41 /* Stores the executable name */
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
42 extern spe_program_handle_t yuv2rgb_spu;
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
43
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
44 /* SDL surface based renderer implementation */
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
45
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
46 static SDL_Renderer *SDL_PS3_CreateRenderer(SDL_Window * window,
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
47 Uint32 flags);
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
48 static int SDL_PS3_ActivateRenderer(SDL_Renderer * renderer);
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
49 static int SDL_PS3_RenderPoint(SDL_Renderer * renderer, int x, int y);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
50 static int SDL_PS3_RenderLine(SDL_Renderer * renderer, int x1, int y1,
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
51 int x2, int y2);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
52 static int SDL_PS3_RenderFill(SDL_Renderer * renderer,
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
53 const SDL_Rect * rect);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
54 static int SDL_PS3_RenderCopy(SDL_Renderer * renderer,
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
55 SDL_Texture * texture,
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
56 const SDL_Rect * srcrect,
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
57 const SDL_Rect * dstrect);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
58 static void SDL_PS3_RenderPresent(SDL_Renderer * renderer);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
59 static void SDL_PS3_DestroyRenderer(SDL_Renderer * renderer);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
60
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
61 /* Texture */
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
62 static int PS3_CreateTexture(SDL_Renderer * renderer, SDL_Texture * texture);
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
63 static int PS3_QueryTexturePixels(SDL_Renderer * renderer, SDL_Texture * texture, void **pixels, int *pitch);
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
64 static int PS3_UpdateTexture(SDL_Renderer * renderer, SDL_Texture * texture, const SDL_Rect * rect, const void *pixels, int pitch);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
65 static int PS3_LockTexture(SDL_Renderer * renderer, SDL_Texture * texture, const SDL_Rect * rect, int markDirty, void **pixels, int *pitch);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
66 static void PS3_UnlockTexture(SDL_Renderer * renderer, SDL_Texture * texture);
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
67 static void PS3_DestroyTexture(SDL_Renderer * renderer, SDL_Texture * texture);
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
68
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
69
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
70 SDL_RenderDriver SDL_PS3_RenderDriver = {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
71 SDL_PS3_CreateRenderer,
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
72 {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
73 "ps3",
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
74 (SDL_RENDERER_SINGLEBUFFER | SDL_RENDERER_PRESENTVSYNC |
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
75 SDL_RENDERER_PRESENTFLIP2 | SDL_RENDERER_PRESENTDISCARD |
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
76 SDL_RENDERER_ACCELERATED)
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
77 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
78 };
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
79
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
80 typedef struct
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
81 {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
82 int current_screen;
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
83 SDL_Surface *screen;
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
84 SDL_VideoDisplay *display;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
85 uint8_t *center[2];
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
86
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
87 /* width of input (bounded by writeable width) */
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
88 unsigned int bounded_width;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
89 /* height of input (bounded by writeable height) */
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
90 unsigned int bounded_height;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
91 /* offset from the left side (used for centering) */
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
92 unsigned int offset_left;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
93 /* offset from the upper side (used for centering) */
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
94 unsigned int offset_top;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
95 /* width of screen which is writeable */
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
96 unsigned int wr_width;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
97 /* width of screen which is writeable */
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
98 unsigned int wr_height;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
99 /* size of a screen line: width * bpp/8 */
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
100 unsigned int line_length;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
101
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
102 /* Use two buffers in fb? res < 720p */
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
103 unsigned int double_buffering;
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
104
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
105 /* SPE threading stuff */
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
106 spu_data_t * converter_thread_data;
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
107 /* YUV converting transfer data */
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
108 volatile struct yuv2rgb_parms_t * converter_parms __attribute__((aligned(128)));
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
109 } SDL_PS3_RenderData;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
110
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
111 typedef struct
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
112 {
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
113 //SDL_PixelFormat * format;
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
114 int pitch;
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
115 volatile void *pixels;// __attribute__((aligned(128))); we don't need alignment here
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
116 SDL_SW_YUVTexture *yuv;
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
117 /* Can we use the SPE to process this texture? */
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
118 unsigned int accelerated;
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
119 } PS3_TextureData;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
120
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
121 SDL_Renderer *
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
122 SDL_PS3_CreateRenderer(SDL_Window * window, Uint32 flags)
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
123 {
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
124 deprintf(1, "+SDL_PS3_CreateRenderer()\n");
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
125 SDL_VideoDisplay *display = SDL_GetDisplayFromWindow(window);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
126 SDL_DisplayMode *displayMode = &display->current_mode;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
127 SDL_Renderer *renderer;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
128 SDL_PS3_RenderData *data;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
129 int i, n;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
130 int bpp;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
131 Uint32 Rmask, Gmask, Bmask, Amask;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
132
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
133 if (!SDL_PixelFormatEnumToMasks
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
134 (displayMode->format, &bpp, &Rmask, &Gmask, &Bmask, &Amask)) {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
135 SDL_SetError("Unknown display format");
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
136 return NULL;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
137 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
138
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
139 renderer = (SDL_Renderer *) SDL_calloc(1, sizeof(*renderer));
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
140 if (!renderer) {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
141 SDL_OutOfMemory();
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
142 return NULL;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
143 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
144
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
145 data = (SDL_PS3_RenderData *) SDL_malloc(sizeof(*data));
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
146 if (!data) {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
147 SDL_PS3_DestroyRenderer(renderer);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
148 SDL_OutOfMemory();
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
149 return NULL;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
150 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
151 SDL_zerop(data);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
152
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
153 #if 1
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
154 renderer->CreateTexture = PS3_CreateTexture;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
155 renderer->DestroyTexture = PS3_DestroyTexture;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
156 renderer->QueryTexturePixels = PS3_QueryTexturePixels;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
157 renderer->UpdateTexture = PS3_UpdateTexture;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
158 renderer->LockTexture = PS3_LockTexture;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
159 renderer->UnlockTexture = PS3_UnlockTexture;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
160 #endif
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
161 renderer->ActivateRenderer = SDL_PS3_ActivateRenderer;
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
162 renderer->RenderPoint = SDL_PS3_RenderPoint;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
163 renderer->RenderLine = SDL_PS3_RenderLine;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
164 renderer->RenderFill = SDL_PS3_RenderFill;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
165 renderer->RenderCopy = SDL_PS3_RenderCopy;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
166 renderer->RenderPresent = SDL_PS3_RenderPresent;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
167 renderer->DestroyRenderer = SDL_PS3_DestroyRenderer;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
168 renderer->info.name = SDL_PS3_RenderDriver.info.name;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
169 renderer->info.flags = 0;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
170 renderer->window = window->id;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
171 renderer->driverdata = data;
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
172 //Setup_SoftwareRenderer(renderer);
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
173
3143
8fdabaa064c3 Fixed centering. Added debug msgs for RenderCopy().
Martin Lowinski <martin@goldtopf.org>
parents: 3142
diff changeset
174 deprintf(1, "window->w = %u\n", window->w);
8fdabaa064c3 Fixed centering. Added debug msgs for RenderCopy().
Martin Lowinski <martin@goldtopf.org>
parents: 3142
diff changeset
175 deprintf(1, "window->h = %u\n", window->h);
8fdabaa064c3 Fixed centering. Added debug msgs for RenderCopy().
Martin Lowinski <martin@goldtopf.org>
parents: 3142
diff changeset
176
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
177 data->double_buffering = 0;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
178
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
179 if (flags & SDL_RENDERER_PRESENTFLIP2) {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
180 renderer->info.flags |= SDL_RENDERER_PRESENTFLIP2;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
181 n = 2;
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
182 data->double_buffering = 1;
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
183 } else {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
184 renderer->info.flags |= SDL_RENDERER_PRESENTCOPY;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
185 n = 1;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
186 }
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
187
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
188 data->screen =
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
189 SDL_CreateRGBSurface(0, window->w, window->h, bpp, Rmask, Gmask,
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
190 Bmask, Amask);
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
191 if (!data->screen) {
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
192 SDL_PS3_DestroyRenderer(renderer);
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
193 return NULL;
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
194 }
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
195 /* Allocate aligned memory for pixels */
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
196 SDL_free(data->screen->pixels);
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
197 data->screen->pixels = (void *)memalign(16, data->screen->h * data->screen->pitch);
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
198 if (!data->screen->pixels) {
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
199 SDL_FreeSurface(data->screen);
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
200 SDL_OutOfMemory();
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
201 return NULL;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
202 }
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
203 SDL_memset(data->screen->pixels, 0, data->screen->h * data->screen->pitch);
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
204 SDL_SetSurfacePalette(data->screen, display->palette);
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
205
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
206 data->current_screen = 0;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
207
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
208 /* Create SPU parms structure */
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
209 data->converter_parms = (struct yuv2rgb_parms_t *) memalign(16, sizeof(struct yuv2rgb_parms_t));
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
210 if (data->converter_parms == NULL) {
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
211 SDL_PS3_DestroyRenderer(renderer);
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
212 SDL_OutOfMemory();
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
213 return NULL;
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
214 }
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
215
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
216 /* Set up the SPEs */
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
217 data->converter_thread_data = (spu_data_t *) malloc(sizeof(spu_data_t));
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
218 if (data->converter_thread_data == NULL) {
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
219 SDL_PS3_DestroyRenderer(renderer);
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
220 SDL_OutOfMemory();
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
221 return NULL;
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
222 }
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
223
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
224 data->converter_thread_data->program = yuv2rgb_spu;
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
225 data->converter_thread_data->program_name = "yuv2rgb_spu";
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
226 data->converter_thread_data->keepalive = 1;
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
227 data->converter_thread_data->booted = 0;
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
228
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
229 SPE_Start(data->converter_thread_data);
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
230
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
231 deprintf(1, "-SDL_PS3_CreateRenderer()\n");
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
232 return renderer;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
233 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
234
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
235 static int
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
236 SDL_PS3_ActivateRenderer(SDL_Renderer * renderer)
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
237 {
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
238 deprintf(1, "+PS3_ActivateRenderer()\n");
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
239 SDL_PS3_RenderData *data = (SDL_PS3_RenderData *) renderer->driverdata;
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
240
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
241 deprintf(1, "-PS3_ActivateRenderer()\n");
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
242 return 0;
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
243 }
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
244
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
245 static int
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
246 PS3_CreateTexture(SDL_Renderer * renderer, SDL_Texture * texture) {
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
247 deprintf(1, "+PS3_CreateTexture()\n");
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
248 PS3_TextureData *data;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
249 data = (PS3_TextureData *) SDL_calloc(1, sizeof(*data));
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
250 if (!data) {
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
251 SDL_OutOfMemory();
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
252 return -1;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
253 }
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
254 data->pitch = (texture->w * SDL_BYTESPERPIXEL(texture->format));
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
255 data->accelerated = 0;
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
256
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
257 if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
258 /* Use SDLs SW_YUVTexture */
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
259 data->yuv =
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
260 SDL_SW_CreateYUVTexture(texture->format, texture->w, texture->h);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
261 if (!data->yuv) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
262 SDL_OutOfMemory();
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
263 return -1;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
264 }
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
265 /* but align pixels */
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
266 SDL_free(data->yuv->pixels);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
267 data->yuv->pixels = (Uint8 *)memalign(16, texture->w * texture->h * 2);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
268
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
269 /* Redo: Find the pitch and offset values for the overlay */
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
270 SDL_SW_YUVTexture *swdata = (SDL_SW_YUVTexture *) data->yuv;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
271 switch (texture->format) {
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
272 case SDL_PIXELFORMAT_YV12:
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
273 case SDL_PIXELFORMAT_IYUV:
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
274 swdata->pitches[0] = texture->w;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
275 swdata->pitches[1] = swdata->pitches[0] / 2;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
276 swdata->pitches[2] = swdata->pitches[0] / 2;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
277 swdata->planes[0] = swdata->pixels;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
278 swdata->planes[1] = swdata->planes[0] + swdata->pitches[0] * texture->h;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
279 swdata->planes[2] = swdata->planes[1] + swdata->pitches[1] * texture->h / 2;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
280 break;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
281 case SDL_PIXELFORMAT_YUY2:
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
282 case SDL_PIXELFORMAT_UYVY:
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
283 case SDL_PIXELFORMAT_YVYU:
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
284 swdata->pitches[0] = texture->w * 2;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
285 swdata->planes[0] = swdata->pixels;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
286 break;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
287 default:
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
288 /* We should never get here (caught above) */
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
289 break;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
290 }
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
291 if ((texture->format & SDL_PIXELFORMAT_YV12 || texture->format & SDL_PIXELFORMAT_IYUV)
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
292 && texture->w % 8 == 0 && texture->h % 8 == 0) {
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
293 data->accelerated = 1;
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
294 }
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
295 } else {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
296 data->pixels = NULL;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
297 data->pixels = SDL_malloc(texture->h * data->pitch);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
298 if (!data->pixels) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
299 PS3_DestroyTexture(renderer, texture);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
300 SDL_OutOfMemory();
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
301 return -1;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
302 }
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
303 }
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
304 texture->driverdata = data;
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
305 deprintf(1, "-PS3_CreateTexture()\n");
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
306 return 0;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
307 }
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
308
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
309 static int
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
310 PS3_QueryTexturePixels(SDL_Renderer * renderer, SDL_Texture * texture,
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
311 void **pixels, int *pitch)
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
312 {
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
313 deprintf(1, "+PS3_QueryTexturePixels()\n");
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
314 PS3_TextureData *data = (PS3_TextureData *) texture->driverdata;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
315
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
316 if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
317 return SDL_SW_QueryYUVTexturePixels(data->yuv, pixels, pitch);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
318 } else {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
319 *pixels = (void *)data->pixels;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
320 *pitch = data->pitch;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
321 }
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
322
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
323 deprintf(1, "-PS3_QueryTexturePixels()\n");
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
324 return 0;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
325 }
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
326
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
327 static int
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
328 PS3_UpdateTexture(SDL_Renderer * renderer, SDL_Texture * texture,
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
329 const SDL_Rect * rect, const void *pixels, int pitch)
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
330 {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
331 deprintf(1, "+PS3_UpdateTexture()\n");
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
332 PS3_TextureData *data = (PS3_TextureData *) texture->driverdata;
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
333
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
334 if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
335 return SDL_SW_UpdateYUVTexture(data->yuv, rect, pixels, pitch);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
336 } else {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
337 Uint8 *src, *dst;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
338 int row;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
339 size_t length;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
340 int dstpitch;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
341 Uint8 *dstpixels;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
342
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
343 src = (Uint8 *) pixels;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
344 dst = (Uint8 *) dstpixels + rect->y * dstpitch + rect->x
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
345 * SDL_BYTESPERPIXEL(texture->format);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
346 length = rect->w * SDL_BYTESPERPIXEL(texture->format);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
347 for (row = 0; row < rect->h; ++row) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
348 SDL_memcpy(dst, src, length);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
349 src += pitch;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
350 dst += dstpitch;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
351 }
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
352 }
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
353 deprintf(1, "-PS3_UpdateTexture()\n");
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
354 return 0;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
355 }
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
356
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
357 static int
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
358 PS3_LockTexture(SDL_Renderer * renderer, SDL_Texture * texture,
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
359 const SDL_Rect * rect, int markDirty, void **pixels,
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
360 int *pitch)
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
361 {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
362 deprintf(1, "+PS3_LockTexture()\n");
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
363 PS3_TextureData *data = (PS3_TextureData *) texture->driverdata;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
364
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
365 if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
366 return SDL_SW_LockYUVTexture(data->yuv, rect, markDirty, pixels, pitch);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
367 } else {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
368 *pixels =
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
369 (void *) ((Uint8 *) data->pixels + rect->y * data->pitch +
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
370 rect->x * SDL_BYTESPERPIXEL(texture->format));
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
371 *pitch = data->pitch;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
372 return 0;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
373 }
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
374 deprintf(1, "-PS3_LockTexture()\n");
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
375 }
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
376
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
377 static void
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
378 PS3_UnlockTexture(SDL_Renderer * renderer, SDL_Texture * texture)
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
379 {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
380 deprintf(1, "+PS3_UnlockTexture()\n");
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
381 PS3_TextureData *data = (PS3_TextureData *) texture->driverdata;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
382
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
383 if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
384 SDL_SW_UnlockYUVTexture(data->yuv);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
385 }
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
386 deprintf(1, "-PS3_UnlockTexture()\n");
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
387 }
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
388
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
389 static void
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
390 PS3_DestroyTexture(SDL_Renderer * renderer, SDL_Texture * texture)
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
391 {
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
392 deprintf(1, "+PS3_DestroyTexture()\n");
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
393 PS3_TextureData *data = (PS3_TextureData *) texture->driverdata;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
394
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
395 if (!data) {
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
396 return;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
397 }
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
398 if (data->yuv) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
399 SDL_SW_DestroyYUVTexture(data->yuv);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
400 }
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
401 if (data->pixels) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
402 SDL_free((void *)data->pixels);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
403 }
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
404 deprintf(1, "-PS3_DestroyTexture()\n");
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
405 }
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
406
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
407 static int
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
408 SDL_PS3_RenderPoint(SDL_Renderer * renderer, int x, int y)
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
409 {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
410 SDL_PS3_RenderData *data =
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
411 (SDL_PS3_RenderData *) renderer->driverdata;
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
412 SDL_Surface *target = data->screen;
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
413 int status;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
414
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
415 if (renderer->blendMode == SDL_BLENDMODE_NONE ||
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
416 renderer->blendMode == SDL_BLENDMODE_MASK) {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
417 Uint32 color =
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
418 SDL_MapRGBA(target->format, renderer->r, renderer->g, renderer->b,
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
419 renderer->a);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
420
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
421 status = SDL_DrawPoint(target, x, y, color);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
422 } else {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
423 status =
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
424 SDL_BlendPoint(target, x, y, renderer->blendMode, renderer->r,
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
425 renderer->g, renderer->b, renderer->a);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
426 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
427 return status;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
428 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
429
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
430 static int
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
431 SDL_PS3_RenderLine(SDL_Renderer * renderer, int x1, int y1, int x2, int y2)
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
432 {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
433 SDL_PS3_RenderData *data =
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
434 (SDL_PS3_RenderData *) renderer->driverdata;
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
435 SDL_Surface *target = data->screen;
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
436 int status;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
437
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
438 if (renderer->blendMode == SDL_BLENDMODE_NONE ||
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
439 renderer->blendMode == SDL_BLENDMODE_MASK) {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
440 Uint32 color =
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
441 SDL_MapRGBA(target->format, renderer->r, renderer->g, renderer->b,
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
442 renderer->a);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
443
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
444 status = SDL_DrawLine(target, x1, y1, x2, y2, color);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
445 } else {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
446 status =
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
447 SDL_BlendLine(target, x1, y1, x2, y2, renderer->blendMode,
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
448 renderer->r, renderer->g, renderer->b, renderer->a);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
449 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
450 return status;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
451 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
452
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
453 static int
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
454 SDL_PS3_RenderFill(SDL_Renderer * renderer, const SDL_Rect * rect)
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
455 {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
456 deprintf(1, "SDL_PS3_RenderFill()\n");
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
457 SDL_PS3_RenderData *data =
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
458 (SDL_PS3_RenderData *) renderer->driverdata;
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
459 SDL_Surface *target = data->screen;
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
460 SDL_Rect real_rect = *rect;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
461 int status;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
462
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
463 if (renderer->blendMode == SDL_BLENDMODE_NONE) {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
464 Uint32 color =
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
465 SDL_MapRGBA(target->format, renderer->r, renderer->g, renderer->b,
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
466 renderer->a);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
467
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
468 status = SDL_FillRect(target, &real_rect, color);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
469 } else {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
470 status =
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
471 SDL_BlendRect(target, &real_rect, renderer->blendMode,
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
472 renderer->r, renderer->g, renderer->b, renderer->a);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
473 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
474 return status;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
475 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
476
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
477 static int
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
478 SDL_PS3_RenderCopy(SDL_Renderer * renderer, SDL_Texture * texture,
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
479 const SDL_Rect * srcrect, const SDL_Rect * dstrect)
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
480 {
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
481 deprintf(1, "+SDL_PS3_RenderCopy()\n");
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
482 SDL_PS3_RenderData *data =
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
483 (SDL_PS3_RenderData *) renderer->driverdata;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
484 SDL_Window *window = SDL_GetWindowFromID(renderer->window);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
485 SDL_VideoDisplay *display = SDL_GetDisplayFromWindow(window);
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
486 PS3_TextureData *txdata = (PS3_TextureData *) texture->driverdata;
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
487 SDL_VideoData *devdata = display->device->driverdata;
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
488
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
489 deprintf(1, "srcrect->w = %u\n", srcrect->w);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
490 deprintf(1, "srcrect->h = %u\n", srcrect->h);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
491 deprintf(1, "srcrect->x = %u\n", srcrect->x);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
492 deprintf(1, "srcrect->y = %u\n", srcrect->y);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
493 deprintf(1, "dstrect->w = %u\n", dstrect->w);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
494 deprintf(1, "dstrect->h = %u\n", dstrect->h);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
495 deprintf(1, "dstrect->x = %u\n", dstrect->x);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
496 deprintf(1, "dstrect->y = %u\n", dstrect->y);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
497
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
498 if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
499 deprintf(1, "SDL_ISPIXELFORMAT_FOURCC = true\n");
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
500 if (txdata->accelerated) {
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
501 deprintf(1, "Use SPE for scaling/converting\n");
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
502 if (srcrect-> != dstrect->w || srcrect->h != dstrect->h) {
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
503 // do scaling
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
504 }
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
505
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
506 Uint8 *lum, *Cr, *Cb;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
507 SDL_SW_YUVTexture *swdata = (SDL_SW_YUVTexture *) txdata->yuv;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
508 switch (swdata->format) {
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
509 case SDL_PIXELFORMAT_YV12:
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
510 lum = swdata->planes[0];
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
511 Cr = swdata->planes[1];
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
512 Cb = swdata->planes[2];
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
513 break;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
514 case SDL_PIXELFORMAT_IYUV:
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
515 lum = swdata->planes[0];
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
516 Cr = swdata->planes[2];
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
517 Cb = swdata->planes[1];
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
518 break;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
519 default:
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
520 return -1;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
521 }
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
522
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
523 data->converter_parms->y_plane = lum;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
524 data->converter_parms->v_plane = Cr;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
525 data->converter_parms->u_plane = Cb;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
526 data->converter_parms->src_pixel_width = swdata->w;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
527 data->converter_parms->src_pixel_height = swdata->h;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
528 data->converter_parms->dstBuffer = (Uint8 *)data->screen->pixels;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
529 data->converter_thread_data->argp = (void *)data->converter_parms;
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
530
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
531 /* Convert YUV overlay to RGB */
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
532 SPE_SendMsg(data->converter_thread_data, SPU_START);
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
533 SPE_SendMsg(data->converter_thread_data, (unsigned int)data->converter_thread_data->argp);
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
534
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
535 SPE_WaitForMsg(data->converter_thread_data, SPU_FIN);
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
536 } else {
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
537 deprintf(1, "Use software for scaling/converting\n");
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
538 return SDL_SW_CopyYUVToRGB(txdata->yuv, srcrect, display->current_mode.format,
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
539 dstrect->w, dstrect->h, data->screen->pixels,
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
540 data->screen->pitch);
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
541 }
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
542 } else {
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
543 deprintf(1, "SDL_ISPIXELFORMAT_FOURCC = false\n");
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
544
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
545 Uint8 *src, *dst;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
546 int row;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
547 size_t length;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
548 int dstpitch;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
549 Uint8 *dstpixels;
3143
8fdabaa064c3 Fixed centering. Added debug msgs for RenderCopy().
Martin Lowinski <martin@goldtopf.org>
parents: 3142
diff changeset
550
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
551 src = (Uint8 *) txdata->pixels;
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
552 dst = (Uint8 *) data->screen->pixels + dstrect->y * dstpitch + dstrect->x
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
553 * SDL_BYTESPERPIXEL(texture->format);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
554 length = dstrect->w * SDL_BYTESPERPIXEL(texture->format);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
555 for (row = 0; row < dstrect->h; ++row) {
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
556 //deprintf(1, "Copying texture to screen...\n");
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
557 SDL_memcpy(dst, src, length);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
558 src += dstpitch;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
559 dst += dstpitch;
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
560 }
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
561 }
3143
8fdabaa064c3 Fixed centering. Added debug msgs for RenderCopy().
Martin Lowinski <martin@goldtopf.org>
parents: 3142
diff changeset
562
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
563 deprintf(1, "-SDL_PS3_RenderCopy()\n");
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
564 return 0;
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
565 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
566
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
567 static void
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
568 SDL_PS3_RenderPresent(SDL_Renderer * renderer)
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
569 {
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
570 deprintf(1, "+SDL_PS3_RenderPresent()\n");
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
571 static int frame_number;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
572 SDL_PS3_RenderData *data =
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
573 (SDL_PS3_RenderData *) renderer->driverdata;
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
574 SDL_Window *window = SDL_GetWindowFromID(renderer->window);
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
575 SDL_VideoDisplay *display = SDL_GetDisplayFromWindow(window);
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
576 SDL_VideoData *devdata = display->device->driverdata;
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
577
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
578 #if 0
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
579 /* Send the data to the display */
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
580 if (SDL_getenv("SDL_VIDEO_PS3_SAVE_FRAMES")) {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
581 char file[128];
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
582 SDL_snprintf(file, sizeof(file), "SDL_window%d-%8.8d.bmp",
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
583 renderer->window, ++frame_number);
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
584 SDL_SaveBMP(data->screen[data->current_screen], file);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
585 }
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
586 #endif
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
587
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
588 /* Send the data to the screen */
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
589 /* Get screeninfo */
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
590 struct fb_fix_screeninfo fb_finfo;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
591 if (ioctl(devdata->fbdev, FBIOGET_FSCREENINFO, &fb_finfo)) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
592 SDL_SetError("[PS3] Can't get fixed screeninfo");
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
593 }
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
594 struct fb_var_screeninfo fb_vinfo;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
595 if (ioctl(devdata->fbdev, FBIOGET_VSCREENINFO, &fb_vinfo)) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
596 SDL_SetError("[PS3] Can't get VSCREENINFO");
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
597 }
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
598 /* 16 and 15 bpp is reported as 16 bpp */
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
599 //txdata->bpp = fb_vinfo.bits_per_pixel;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
600 //if (txdata->bpp == 16)
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
601 // txdata->bpp = fb_vinfo.red.length + fb_vinfo.green.length + fb_vinfo.blue.length;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
602
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
603 /* Adjust centering */
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
604 data->bounded_width = window->w < fb_vinfo.xres ? window->w : fb_vinfo.xres;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
605 data->bounded_height = window->h < fb_vinfo.yres ? window->h : fb_vinfo.yres;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
606 data->offset_left = (fb_vinfo.xres - data->bounded_width) >> 1;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
607 data->offset_top = (fb_vinfo.yres - data->bounded_height) >> 1;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
608 data->center[0] = devdata->frame_buffer + data->offset_left * /*txdata->bpp/8*/ 4 +
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
609 data->offset_top * fb_finfo.line_length;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
610 data->center[1] = data->center[0] + fb_vinfo.yres * fb_finfo.line_length;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
611
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
612 deprintf(1, "offset_left = %u\n", data->offset_left);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
613 deprintf(1, "offset_top = %u\n", data->offset_top);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
614
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
615 /* Set SPU parms for copying the surface to framebuffer */
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
616 devdata->fb_parms->data = (unsigned char *)data->screen->pixels;
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
617 devdata->fb_parms->center = data->center[data->current_screen];
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
618 devdata->fb_parms->out_line_stride = fb_finfo.line_length;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
619 devdata->fb_parms->in_line_stride = window->w * /*txdata->bpp / 8*/4;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
620 devdata->fb_parms->bounded_input_height = data->bounded_height;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
621 devdata->fb_parms->bounded_input_width = data->bounded_width;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
622 //devdata->fb_parms->fb_pixel_size = txdata->bpp / 8;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
623 devdata->fb_parms->fb_pixel_size = 4;//SDL_BYTESPERPIXEL(window->format);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
624
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
625 deprintf(3, "[PS3->SPU] fb_thread_data->argp = 0x%x\n", devdata->fb_thread_data->argp);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
626
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
627 /* Copying.. */
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
628 SPE_SendMsg(devdata->fb_thread_data, SPU_START);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
629 SPE_SendMsg(devdata->fb_thread_data, (unsigned int)devdata->fb_thread_data->argp);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
630
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
631 SPE_WaitForMsg(devdata->fb_thread_data, SPU_FIN);
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
632
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
633 /* Wait for vsync */
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
634 if (renderer->info.flags & SDL_RENDERER_PRESENTVSYNC) {
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
635 unsigned long crt = 0;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
636 deprintf(1, "[PS3] Wait for vsync\n");
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
637 ioctl(devdata->fbdev, FBIO_WAITFORVSYNC, &crt);
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
638 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
639
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
640 /* Page flip */
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
641 deprintf(1, "[PS3] Page flip to buffer #%u 0x%x\n", data->current_screen, data->center[data->current_screen]);
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
642 ioctl(devdata->fbdev, PS3FB_IOCTL_FSEL, (unsigned long)&data->current_screen);
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
643
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
644 /* Update the flipping chain, if any */
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
645 if (renderer->info.flags & SDL_RENDERER_PRESENTFLIP2 && data->double_buffering) {
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
646 data->current_screen = (data->current_screen + 1) % 2;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
647 }
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
648 deprintf(1, "-SDL_PS3_RenderPresent()\n");
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
649 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
650
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
651 static void
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
652 SDL_PS3_DestroyRenderer(SDL_Renderer * renderer)
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
653 {
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
654 deprintf(1, "+SDL_PS3_DestroyRenderer()\n");
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
655 SDL_PS3_RenderData *data =
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
656 (SDL_PS3_RenderData *) renderer->driverdata;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
657 int i;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
658
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
659 if (data) {
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
660 for (i = 0; i < SDL_arraysize(data->screen); ++i) {
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
661 if (data->screen) {
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
662 SDL_FreeSurface(data->screen);
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
663 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
664 }
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
665
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
666 /* Shutdown SPE and related resources */
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
667 if (data->converter_thread_data) {
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
668 SPE_Shutdown(data->converter_thread_data);
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
669 free((void *)data->converter_thread_data);
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
670 }
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
671 if (data->converter_parms) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
672 free((void *)data->converter_parms);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
673 }
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
674
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
675 SDL_free(data);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
676 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
677 SDL_free(renderer);
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
678 deprintf(1, "-SDL_PS3_DestroyRenderer()\n");
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
679 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
680
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
681 /* vi: set ts=4 sw=4 expandtab: */