annotate src/video/ps3/SDL_ps3render.c @ 3157:cce01ba54174 gsoc2009_ps3

Added comments, clean up.
author Martin Lowinski <martin@goldtopf.org>
date Thu, 27 Aug 2009 11:33:56 +0000
parents a16c4ec43631
children
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;
3148
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
43 extern spe_program_handle_t bilin_scaler_spu;
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
44
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
45 /* SDL surface based renderer implementation */
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);
3152
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
48 static int SDL_PS3_DisplayModeChanged(SDL_Renderer * renderer);
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
49 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
50 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
51 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
52 int x2, int y2);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
53 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
54 const SDL_Rect * rect);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
55 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
56 SDL_Texture * texture,
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
57 const SDL_Rect * srcrect,
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
58 const SDL_Rect * dstrect);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
59 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
60 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
61
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
62 /* Texture */
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
63 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
64 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
65 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
66 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
67 static void PS3_UnlockTexture(SDL_Renderer * renderer, SDL_Texture * texture);
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
68 static void PS3_DestroyTexture(SDL_Renderer * renderer, SDL_Texture * texture);
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
69
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
70
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
71 SDL_RenderDriver SDL_PS3_RenderDriver = {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
72 SDL_PS3_CreateRenderer,
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
73 {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
74 "ps3",
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
75 (SDL_RENDERER_SINGLEBUFFER | SDL_RENDERER_PRESENTVSYNC |
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
76 SDL_RENDERER_PRESENTFLIP2 | SDL_RENDERER_PRESENTDISCARD |
3150
0cf7bff804ad Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents: 3148
diff changeset
77 SDL_RENDERER_ACCELERATED),
0cf7bff804ad Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents: 3148
diff changeset
78 (SDL_TEXTUREMODULATE_NONE),
0cf7bff804ad Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents: 3148
diff changeset
79 (SDL_BLENDMODE_NONE),
0cf7bff804ad Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents: 3148
diff changeset
80 /* We use bilinear scaling on the SPE for YV12 & IYUV
0cf7bff804ad Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents: 3148
diff changeset
81 * (width and height % 8 = 0) */
0cf7bff804ad Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents: 3148
diff changeset
82 (SDL_TEXTURESCALEMODE_SLOW)
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
83 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
84 };
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
85
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
86 typedef struct
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
87 {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
88 int current_screen;
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
89 SDL_Surface *screen;
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
90 SDL_VideoDisplay *display;
3150
0cf7bff804ad Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents: 3148
diff changeset
91 /* adress of the centered image in the framebuffer (double buffered) */
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
92 uint8_t *center[2];
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
93
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
94 /* width of input (bounded by writeable width) */
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
95 unsigned int bounded_width;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
96 /* height of input (bounded by writeable height) */
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
97 unsigned int bounded_height;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
98 /* offset from the left side (used for centering) */
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
99 unsigned int offset_left;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
100 /* offset from the upper side (used for centering) */
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
101 unsigned int offset_top;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
102 /* width of screen which is writeable */
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
103 unsigned int wr_width;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
104 /* width of screen which is writeable */
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
105 unsigned int wr_height;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
106 /* size of a screen line: width * bpp/8 */
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
107 unsigned int line_length;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
108
3157
cce01ba54174 Added comments, clean up.
Martin Lowinski <martin@goldtopf.org>
parents: 3153
diff changeset
109 /* Is the kernels fb size bigger than ~12MB
cce01ba54174 Added comments, clean up.
Martin Lowinski <martin@goldtopf.org>
parents: 3153
diff changeset
110 * double buffering will work for 1080p */
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
111 unsigned int double_buffering;
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
112
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
113 /* SPE threading stuff */
3148
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
114 spu_data_t *converter_thread_data;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
115 spu_data_t *scaler_thread_data;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
116
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
117 /* YUV converting transfer data */
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
118 volatile struct yuv2rgb_parms_t * converter_parms __attribute__((aligned(128)));
3148
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
119 /* Scaler transfer data */
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
120 volatile struct scale_parms_t * scaler_parms __attribute__((aligned(128)));
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
121 } SDL_PS3_RenderData;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
122
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
123 typedef struct
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
124 {
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
125 int pitch;
3150
0cf7bff804ad Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents: 3148
diff changeset
126 /* Image data */
0cf7bff804ad Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents: 3148
diff changeset
127 volatile void *pixels;
0cf7bff804ad Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents: 3148
diff changeset
128 /* Use software renderer for not supported formats */
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
129 SDL_SW_YUVTexture *yuv;
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
130 } PS3_TextureData;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
131
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
132 SDL_Renderer *
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
133 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
134 {
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
135 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
136 SDL_VideoDisplay *display = SDL_GetDisplayFromWindow(window);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
137 SDL_DisplayMode *displayMode = &display->current_mode;
3152
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
138 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
139 SDL_Renderer *renderer;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
140 SDL_PS3_RenderData *data;
3152
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
141 struct ps3fb_ioctl_res res;
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
142 int i, n;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
143 int bpp;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
144 Uint32 Rmask, Gmask, Bmask, Amask;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
145
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
146 if (!SDL_PixelFormatEnumToMasks
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
147 (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
148 SDL_SetError("Unknown display format");
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
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
152 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
153 if (!renderer) {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
154 SDL_OutOfMemory();
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
155 return NULL;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
156 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
157
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
158 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
159 if (!data) {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
160 SDL_PS3_DestroyRenderer(renderer);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
161 SDL_OutOfMemory();
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
162 return NULL;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
163 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
164 SDL_zerop(data);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
165
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
166 renderer->CreateTexture = PS3_CreateTexture;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
167 renderer->DestroyTexture = PS3_DestroyTexture;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
168 renderer->QueryTexturePixels = PS3_QueryTexturePixels;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
169 renderer->UpdateTexture = PS3_UpdateTexture;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
170 renderer->LockTexture = PS3_LockTexture;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
171 renderer->UnlockTexture = PS3_UnlockTexture;
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
172 renderer->ActivateRenderer = SDL_PS3_ActivateRenderer;
3152
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
173 renderer->DisplayModeChanged = SDL_PS3_DisplayModeChanged;
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
174 renderer->RenderPoint = SDL_PS3_RenderPoint;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
175 renderer->RenderLine = SDL_PS3_RenderLine;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
176 renderer->RenderFill = SDL_PS3_RenderFill;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
177 renderer->RenderCopy = SDL_PS3_RenderCopy;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
178 renderer->RenderPresent = SDL_PS3_RenderPresent;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
179 renderer->DestroyRenderer = SDL_PS3_DestroyRenderer;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
180 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
181 renderer->info.flags = 0;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
182 renderer->window = window->id;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
183 renderer->driverdata = data;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
184
3143
8fdabaa064c3 Fixed centering. Added debug msgs for RenderCopy().
Martin Lowinski <martin@goldtopf.org>
parents: 3142
diff changeset
185 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
186 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
187
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
188 data->double_buffering = 0;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
189
3152
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
190 /* Get ps3 screeninfo */
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
191 if (ioctl(devdata->fbdev, PS3FB_IOCTL_SCREENINFO, (unsigned long)&res) < 0) {
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
192 SDL_SetError("[PS3] PS3FB_IOCTL_SCREENINFO failed");
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
193 }
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
194 deprintf(2, "res.num_frames = %d\n", res.num_frames);
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
195
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
196 /* Only use double buffering if enough fb memory is available */
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
197 if (res.num_frames > 1) {
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
198 renderer->info.flags |= SDL_RENDERER_PRESENTFLIP2;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
199 n = 2;
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
200 data->double_buffering = 1;
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
201 } else {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
202 renderer->info.flags |= SDL_RENDERER_PRESENTCOPY;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
203 n = 1;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
204 }
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
205
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
206 data->screen =
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
207 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
208 Bmask, Amask);
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
209 if (!data->screen) {
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
210 SDL_PS3_DestroyRenderer(renderer);
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
211 return NULL;
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
212 }
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
213 /* Allocate aligned memory for pixels */
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
214 SDL_free(data->screen->pixels);
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
215 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
216 if (!data->screen->pixels) {
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
217 SDL_FreeSurface(data->screen);
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
218 SDL_OutOfMemory();
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
219 return NULL;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
220 }
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
221 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
222 SDL_SetSurfacePalette(data->screen, display->palette);
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
223
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
224 data->current_screen = 0;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
225
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
226 /* Create SPU parms structure */
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
227 data->converter_parms = (struct yuv2rgb_parms_t *) memalign(16, sizeof(struct yuv2rgb_parms_t));
3148
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
228 data->scaler_parms = (struct scale_parms_t *) memalign(16, sizeof(struct scale_parms_t));
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
229 if (data->converter_parms == NULL || data->scaler_parms == NULL) {
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
230 SDL_PS3_DestroyRenderer(renderer);
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
231 SDL_OutOfMemory();
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
232 return NULL;
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
233 }
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
234
3157
cce01ba54174 Added comments, clean up.
Martin Lowinski <martin@goldtopf.org>
parents: 3153
diff changeset
235 /* Set up the SPE threading data */
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
236 data->converter_thread_data = (spu_data_t *) malloc(sizeof(spu_data_t));
3148
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
237 data->scaler_thread_data = (spu_data_t *) malloc(sizeof(spu_data_t));
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
238 if (data->converter_thread_data == NULL || data->scaler_thread_data == NULL) {
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
239 SDL_PS3_DestroyRenderer(renderer);
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
240 SDL_OutOfMemory();
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
241 return NULL;
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
242 }
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
243
3152
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
244 /* Set up the SPE scaler (booted) */
3148
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
245 data->scaler_thread_data->program = bilin_scaler_spu;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
246 data->scaler_thread_data->program_name = "bilin_scaler_spu";
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
247 data->scaler_thread_data->keepalive = 0;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
248 data->scaler_thread_data->booted = 0;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
249
3152
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
250 /* Set up the SPE converter (always running) */
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
251 data->converter_thread_data->program = yuv2rgb_spu;
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
252 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
253 data->converter_thread_data->keepalive = 1;
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
254 data->converter_thread_data->booted = 0;
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
255
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
256 SPE_Start(data->converter_thread_data);
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
257
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
258 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
259 return renderer;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
260 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
261
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
262 static int
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
263 SDL_PS3_ActivateRenderer(SDL_Renderer * renderer)
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
264 {
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
265 deprintf(1, "+PS3_ActivateRenderer()\n");
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
266 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
267
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
268 deprintf(1, "-PS3_ActivateRenderer()\n");
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
269 return 0;
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
270 }
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
271
3152
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
272 static int SDL_PS3_DisplayModeChanged(SDL_Renderer * renderer) {
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
273 deprintf(1, "+PS3_DisplayModeChanged()\n");
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
274 SDL_PS3_RenderData *data = (SDL_PS3_RenderData *) renderer->driverdata;
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
275
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
276 deprintf(1, "-PS3_DisplayModeChanged()\n");
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
277 return 0;
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
278 }
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
279
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
280 static int
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
281 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
282 deprintf(1, "+PS3_CreateTexture()\n");
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
283 PS3_TextureData *data;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
284 data = (PS3_TextureData *) SDL_calloc(1, sizeof(*data));
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
285 if (!data) {
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
286 SDL_OutOfMemory();
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
287 return -1;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
288 }
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
289 data->pitch = (texture->w * SDL_BYTESPERPIXEL(texture->format));
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
290
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
291 if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
292 /* Use SDLs SW_YUVTexture */
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
293 data->yuv =
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
294 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
295 if (!data->yuv) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
296 SDL_OutOfMemory();
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
297 return -1;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
298 }
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
299 /* but align pixels */
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
300 SDL_free(data->yuv->pixels);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
301 data->yuv->pixels = (Uint8 *)memalign(16, texture->w * texture->h * 2);
3150
0cf7bff804ad Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents: 3148
diff changeset
302 if (!data->yuv->pixels) {
0cf7bff804ad Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents: 3148
diff changeset
303 SDL_OutOfMemory();
0cf7bff804ad Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents: 3148
diff changeset
304 return -1;
0cf7bff804ad Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents: 3148
diff changeset
305 }
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
306
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
307 /* 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
308 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
309 switch (texture->format) {
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
310 case SDL_PIXELFORMAT_YV12:
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
311 case SDL_PIXELFORMAT_IYUV:
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
312 swdata->pitches[0] = texture->w;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
313 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
314 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
315 swdata->planes[0] = swdata->pixels;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
316 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
317 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
318 break;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
319 case SDL_PIXELFORMAT_YUY2:
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
320 case SDL_PIXELFORMAT_UYVY:
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
321 case SDL_PIXELFORMAT_YVYU:
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
322 swdata->pitches[0] = texture->w * 2;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
323 swdata->planes[0] = swdata->pixels;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
324 break;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
325 default:
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
326 /* 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
327 break;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
328 }
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
329 } else {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
330 data->pixels = NULL;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
331 data->pixels = SDL_malloc(texture->h * data->pitch);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
332 if (!data->pixels) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
333 PS3_DestroyTexture(renderer, texture);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
334 SDL_OutOfMemory();
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
335 return -1;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
336 }
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
337 }
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
338 texture->driverdata = data;
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
339 deprintf(1, "-PS3_CreateTexture()\n");
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
340 return 0;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
341 }
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
342
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
343 static int
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
344 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
345 void **pixels, int *pitch)
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
346 {
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
347 deprintf(1, "+PS3_QueryTexturePixels()\n");
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
348 PS3_TextureData *data = (PS3_TextureData *) texture->driverdata;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
349
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
350 if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
351 return SDL_SW_QueryYUVTexturePixels(data->yuv, pixels, pitch);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
352 } else {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
353 *pixels = (void *)data->pixels;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
354 *pitch = data->pitch;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
355 }
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
356
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
357 deprintf(1, "-PS3_QueryTexturePixels()\n");
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
358 return 0;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
359 }
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
360
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
361 static int
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
362 PS3_UpdateTexture(SDL_Renderer * renderer, SDL_Texture * texture,
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
363 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
364 {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
365 deprintf(1, "+PS3_UpdateTexture()\n");
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
366 PS3_TextureData *data = (PS3_TextureData *) texture->driverdata;
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
367
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
368 if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
369 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
370 } else {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
371 Uint8 *src, *dst;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
372 int row;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
373 size_t length;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
374 Uint8 *dstpixels;
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 src = (Uint8 *) pixels;
3148
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
377 dst = (Uint8 *) dstpixels + rect->y * data->pitch + rect->x
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
378 * SDL_BYTESPERPIXEL(texture->format);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
379 length = rect->w * SDL_BYTESPERPIXEL(texture->format);
3157
cce01ba54174 Added comments, clean up.
Martin Lowinski <martin@goldtopf.org>
parents: 3153
diff changeset
380 /* Update the texture */
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
381 for (row = 0; row < rect->h; ++row) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
382 SDL_memcpy(dst, src, length);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
383 src += pitch;
3148
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
384 dst += data->pitch;
3146
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 }
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
387 deprintf(1, "-PS3_UpdateTexture()\n");
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
388 return 0;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
389 }
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
390
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
391 static int
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
392 PS3_LockTexture(SDL_Renderer * renderer, SDL_Texture * texture,
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
393 const SDL_Rect * rect, int markDirty, void **pixels,
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
394 int *pitch)
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
395 {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
396 deprintf(1, "+PS3_LockTexture()\n");
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
397 PS3_TextureData *data = (PS3_TextureData *) texture->driverdata;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
398
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
399 if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
3152
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
400 deprintf(1, "-PS3_LockTexture()\n");
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
401 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
402 } else {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
403 *pixels =
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
404 (void *) ((Uint8 *) data->pixels + rect->y * data->pitch +
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
405 rect->x * SDL_BYTESPERPIXEL(texture->format));
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
406 *pitch = data->pitch;
3152
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
407 deprintf(1, "-PS3_LockTexture()\n");
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
408 return 0;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
409 }
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
410 }
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
411
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
412 static void
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
413 PS3_UnlockTexture(SDL_Renderer * renderer, SDL_Texture * texture)
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
414 {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
415 deprintf(1, "+PS3_UnlockTexture()\n");
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
416 PS3_TextureData *data = (PS3_TextureData *) texture->driverdata;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
417
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
418 if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
419 SDL_SW_UnlockYUVTexture(data->yuv);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
420 }
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
421 deprintf(1, "-PS3_UnlockTexture()\n");
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
422 }
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
423
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
424 static void
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
425 PS3_DestroyTexture(SDL_Renderer * renderer, SDL_Texture * texture)
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
426 {
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
427 deprintf(1, "+PS3_DestroyTexture()\n");
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
428 PS3_TextureData *data = (PS3_TextureData *) texture->driverdata;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
429
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
430 if (!data) {
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
431 return;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
432 }
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
433 if (data->yuv) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
434 SDL_SW_DestroyYUVTexture(data->yuv);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
435 }
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
436 if (data->pixels) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
437 SDL_free((void *)data->pixels);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
438 }
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
439 deprintf(1, "-PS3_DestroyTexture()\n");
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
440 }
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
441
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
442 static int
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
443 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
444 {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
445 SDL_PS3_RenderData *data =
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
446 (SDL_PS3_RenderData *) renderer->driverdata;
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
447 SDL_Surface *target = data->screen;
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
448 int status;
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 if (renderer->blendMode == SDL_BLENDMODE_NONE ||
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
451 renderer->blendMode == SDL_BLENDMODE_MASK) {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
452 Uint32 color =
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
453 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
454 renderer->a);
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 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
457 } else {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
458 status =
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
459 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
460 renderer->g, renderer->b, renderer->a);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
461 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
462 return status;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
463 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
464
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
465 static int
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
466 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
467 {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
468 SDL_PS3_RenderData *data =
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
469 (SDL_PS3_RenderData *) renderer->driverdata;
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
470 SDL_Surface *target = data->screen;
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
471 int status;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
472
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
473 if (renderer->blendMode == SDL_BLENDMODE_NONE ||
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
474 renderer->blendMode == SDL_BLENDMODE_MASK) {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
475 Uint32 color =
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
476 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
477 renderer->a);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
478
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
479 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
480 } else {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
481 status =
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
482 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
483 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
484 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
485 return status;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
486 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
487
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
488 static int
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
489 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
490 {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
491 deprintf(1, "SDL_PS3_RenderFill()\n");
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
492 SDL_PS3_RenderData *data =
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
493 (SDL_PS3_RenderData *) renderer->driverdata;
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
494 SDL_Surface *target = data->screen;
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
495 SDL_Rect real_rect = *rect;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
496 int status;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
497
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
498 if (renderer->blendMode == SDL_BLENDMODE_NONE) {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
499 Uint32 color =
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
500 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
501 renderer->a);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
502
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
503 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
504 } else {
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
505 status =
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
506 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
507 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
508 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
509 return status;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
510 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
511
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
512 static int
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
513 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
514 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
515 {
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
516 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
517 SDL_PS3_RenderData *data =
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
518 (SDL_PS3_RenderData *) renderer->driverdata;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
519 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
520 SDL_VideoDisplay *display = SDL_GetDisplayFromWindow(window);
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
521 PS3_TextureData *txdata = (PS3_TextureData *) texture->driverdata;
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
522 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
523
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
524 if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) {
3153
a16c4ec43631 Fixed bug in texture format.
Martin Lowinski <martin@goldtopf.org>
parents: 3152
diff changeset
525 deprintf(1, "Texture is in a FOURCC format\n");
a16c4ec43631 Fixed bug in texture format.
Martin Lowinski <martin@goldtopf.org>
parents: 3152
diff changeset
526 if ((texture->format == SDL_PIXELFORMAT_YV12 || texture->format == SDL_PIXELFORMAT_IYUV)
3152
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
527 && texture->w % 8 == 0 && texture->h % 8 == 0
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
528 && dstrect->w % 8 == 0 && dstrect->h % 8 == 0) {
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
529 deprintf(1, "Use SPE for scaling/converting\n");
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
530
3148
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
531 SDL_SW_YUVTexture *swdata = (SDL_SW_YUVTexture *) txdata->yuv;
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
532 Uint8 *lum, *Cr, *Cb;
3148
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
533 Uint8 *scaler_out = NULL;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
534 Uint8 *dstpixels;
3153
a16c4ec43631 Fixed bug in texture format.
Martin Lowinski <martin@goldtopf.org>
parents: 3152
diff changeset
535 switch (texture->format) {
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
536 case SDL_PIXELFORMAT_YV12:
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
537 lum = swdata->planes[0];
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
538 Cr = swdata->planes[1];
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
539 Cb = swdata->planes[2];
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
540 break;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
541 case SDL_PIXELFORMAT_IYUV:
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
542 lum = swdata->planes[0];
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
543 Cr = swdata->planes[2];
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
544 Cb = swdata->planes[1];
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
545 break;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
546 default:
3153
a16c4ec43631 Fixed bug in texture format.
Martin Lowinski <martin@goldtopf.org>
parents: 3152
diff changeset
547 /* We should never get here (caught above) */
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
548 return -1;
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
549 }
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
550
3148
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
551 if (srcrect->w != dstrect->w || srcrect->h != dstrect->h) {
3153
a16c4ec43631 Fixed bug in texture format.
Martin Lowinski <martin@goldtopf.org>
parents: 3152
diff changeset
552 deprintf(1, "We need to scale the texture from %u x %u to %u x %u\n",
a16c4ec43631 Fixed bug in texture format.
Martin Lowinski <martin@goldtopf.org>
parents: 3152
diff changeset
553 srcrect->w, srcrect->h, dstrect->w, dstrect->h);
3148
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
554 /* Alloc mem for scaled YUV picture */
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
555 scaler_out = (Uint8 *) memalign(16, dstrect->w * dstrect->h + ((dstrect->w * dstrect->h) >> 1));
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
556 if (scaler_out == NULL) {
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
557 SDL_OutOfMemory();
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
558 return -1;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
559 }
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
560
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
561 /* Set parms for scaling */
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
562 data->scaler_parms->src_pixel_width = srcrect->w;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
563 data->scaler_parms->src_pixel_height = srcrect->h;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
564 data->scaler_parms->dst_pixel_width = dstrect->w;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
565 data->scaler_parms->dst_pixel_height = dstrect->h;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
566 data->scaler_parms->y_plane = lum;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
567 data->scaler_parms->v_plane = Cr;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
568 data->scaler_parms->u_plane = Cb;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
569 data->scaler_parms->dstBuffer = scaler_out;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
570 data->scaler_thread_data->argp = (void *)data->scaler_parms;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
571
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
572 /* Scale the YUV overlay to given size */
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
573 SPE_Start(data->scaler_thread_data);
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
574 SPE_Stop(data->scaler_thread_data);
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
575
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
576 /* Set parms for converting after scaling */
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
577 data->converter_parms->y_plane = scaler_out;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
578 data->converter_parms->v_plane = scaler_out + dstrect->w * dstrect->h;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
579 data->converter_parms->u_plane = scaler_out + dstrect->w * dstrect->h + ((dstrect->w * dstrect->h) >> 2);
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
580 } else {
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
581 data->converter_parms->y_plane = lum;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
582 data->converter_parms->v_plane = Cr;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
583 data->converter_parms->u_plane = Cb;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
584 }
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
585
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
586 dstpixels = (Uint8 *) data->screen->pixels + dstrect->y * data->screen->pitch + dstrect->x
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
587 * SDL_BYTESPERPIXEL(texture->format);
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
588 data->converter_parms->src_pixel_width = dstrect->w;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
589 data->converter_parms->src_pixel_height = dstrect->h;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
590 data->converter_parms->dstBuffer = dstpixels/*(Uint8 *)data->screen->pixels*/;
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
591 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
592
3148
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
593 /* Convert YUV texture to RGB */
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
594 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
595 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
596
3150
0cf7bff804ad Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents: 3148
diff changeset
597 /* We can probably move that to RenderPresent() */
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
598 SPE_WaitForMsg(data->converter_thread_data, SPU_FIN);
3148
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
599 if (scaler_out) {
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
600 free(scaler_out);
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
601 }
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
602 } else {
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
603 deprintf(1, "Use software for scaling/converting\n");
3148
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
604 Uint8 *dst;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
605 /* FIXME: Not good */
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
606 dst = (Uint8 *) data->screen->pixels + dstrect->y * data->screen->pitch + dstrect->x
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
607 * SDL_BYTESPERPIXEL(texture->format);
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
608 return SDL_SW_CopyYUVToRGB(txdata->yuv, srcrect, display->current_mode.format,
3148
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
609 dstrect->w, dstrect->h, dst/*data->screen->pixels*/,
3147
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
610 data->screen->pitch);
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
611 }
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
612 } else {
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
613 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
614
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
615 Uint8 *src, *dst;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
616 int row;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
617 size_t length;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
618 Uint8 *dstpixels;
3143
8fdabaa064c3 Fixed centering. Added debug msgs for RenderCopy().
Martin Lowinski <martin@goldtopf.org>
parents: 3142
diff changeset
619
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
620 src = (Uint8 *) txdata->pixels;
3148
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
621 dst = (Uint8 *) data->screen->pixels + dstrect->y * data->screen->pitch + dstrect->x
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
622 * SDL_BYTESPERPIXEL(texture->format);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
623 length = dstrect->w * SDL_BYTESPERPIXEL(texture->format);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
624 for (row = 0; row < dstrect->h; ++row) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
625 SDL_memcpy(dst, src, length);
3148
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
626 src += txdata->pitch;
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
627 dst += data->screen->pitch;
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
628 }
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
629 }
3143
8fdabaa064c3 Fixed centering. Added debug msgs for RenderCopy().
Martin Lowinski <martin@goldtopf.org>
parents: 3142
diff changeset
630
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
631 deprintf(1, "-SDL_PS3_RenderCopy()\n");
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
632 return 0;
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
633 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
634
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
635 static void
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
636 SDL_PS3_RenderPresent(SDL_Renderer * renderer)
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
637 {
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
638 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
639 SDL_PS3_RenderData *data =
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
640 (SDL_PS3_RenderData *) renderer->driverdata;
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
641 SDL_Window *window = SDL_GetWindowFromID(renderer->window);
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
642 SDL_VideoDisplay *display = SDL_GetDisplayFromWindow(window);
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
643 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
644
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
645 /* Send the data to the screen */
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
646 /* Get screeninfo */
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
647 struct fb_fix_screeninfo fb_finfo;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
648 if (ioctl(devdata->fbdev, FBIOGET_FSCREENINFO, &fb_finfo)) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
649 SDL_SetError("[PS3] Can't get fixed screeninfo");
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
650 }
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
651 struct fb_var_screeninfo fb_vinfo;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
652 if (ioctl(devdata->fbdev, FBIOGET_VSCREENINFO, &fb_vinfo)) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
653 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
654 }
3150
0cf7bff804ad Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents: 3148
diff changeset
655
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
656 /* 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
657 //txdata->bpp = fb_vinfo.bits_per_pixel;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
658 //if (txdata->bpp == 16)
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
659 // 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
660
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
661 /* Adjust centering */
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
662 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
663 data->bounded_height = window->h < fb_vinfo.yres ? window->h : fb_vinfo.yres;
3152
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
664 /* We could use SDL's CENTERED flag for centering */
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
665 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
666 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
667 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
668 data->offset_top * fb_finfo.line_length;
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
669 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
670
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
671 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
672 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
673
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
674 /* 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
675 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
676 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
677 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
678 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
679 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
680 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
681 //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
682 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
683
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
684 deprintf(3, "[PS3->SPU] fb_thread_data->argp = 0x%x\n", devdata->fb_thread_data->argp);
3150
0cf7bff804ad Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents: 3148
diff changeset
685
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
686 /* Copying.. */
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
687 SPE_SendMsg(devdata->fb_thread_data, SPU_START);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
688 SPE_SendMsg(devdata->fb_thread_data, (unsigned int)devdata->fb_thread_data->argp);
3150
0cf7bff804ad Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents: 3148
diff changeset
689
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
690 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
691
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
692 /* Wait for vsync */
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
693 if (renderer->info.flags & SDL_RENDERER_PRESENTVSYNC) {
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
694 unsigned long crt = 0;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
695 deprintf(1, "[PS3] Wait for vsync\n");
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
696 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
697 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
698
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
699 /* Page flip */
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
700 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
701 ioctl(devdata->fbdev, PS3FB_IOCTL_FSEL, (unsigned long)&data->current_screen);
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
702
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
703 /* Update the flipping chain, if any */
3152
7f3341cccf42 Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents: 3150
diff changeset
704 if (data->double_buffering) {
3142
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
705 data->current_screen = (data->current_screen + 1) % 2;
c146645a770e Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents: 3141
diff changeset
706 }
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
707 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
708 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
709
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
710 static void
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
711 SDL_PS3_DestroyRenderer(SDL_Renderer * renderer)
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
712 {
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
713 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
714 SDL_PS3_RenderData *data =
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
715 (SDL_PS3_RenderData *) renderer->driverdata;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
716 int i;
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
717
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
718 if (data) {
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
719 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
720 if (data->screen) {
a80760096937 Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents: 3146
diff changeset
721 SDL_FreeSurface(data->screen);
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
722 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
723 }
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
724
3150
0cf7bff804ad Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents: 3148
diff changeset
725 /* Shutdown SPE and release related resources */
3148
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
726 if (data->scaler_thread_data) {
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
727 free((void *)data->scaler_thread_data);
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
728 }
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
729 if (data->scaler_parms) {
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
730 free((void *)data->scaler_parms);
104786a909a2 Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents: 3147
diff changeset
731 }
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
732 if (data->converter_thread_data) {
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
733 SPE_Shutdown(data->converter_thread_data);
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
734 free((void *)data->converter_thread_data);
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
735 }
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
736 if (data->converter_parms) {
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
737 free((void *)data->converter_parms);
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
738 }
3144
0d8d1f870964 Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents: 3143
diff changeset
739
3141
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
740 SDL_free(data);
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
741 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
742 SDL_free(renderer);
3146
9e902f423497 YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents: 3144
diff changeset
743 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
744 }
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
745
3df74541339b Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff changeset
746 /* vi: set ts=4 sw=4 expandtab: */