Mercurial > sdl-ios-xcode
annotate src/video/ps3/SDL_ps3render.c @ 3153:a16c4ec43631 gsoc2009_ps3
Fixed bug in texture format.
author | Martin Lowinski <martin@goldtopf.org> |
---|---|
date | Mon, 10 Aug 2009 13:28:58 +0000 |
parents | 7f3341cccf42 |
children | cce01ba54174 |
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 |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
47 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
|
48 Uint32 flags); |
3152
7f3341cccf42
Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents:
3150
diff
changeset
|
49 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
|
50 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
|
51 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
|
52 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
|
53 int x2, int y2); |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
54 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
|
55 const SDL_Rect * rect); |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
56 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
|
57 SDL_Texture * texture, |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
58 const SDL_Rect * srcrect, |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
59 const SDL_Rect * dstrect); |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
60 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
|
61 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
|
62 |
3142
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
63 /* Texture */ |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
64 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
|
65 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
|
66 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
|
67 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
|
68 static void PS3_UnlockTexture(SDL_Renderer * renderer, SDL_Texture * texture); |
3142
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
69 static void PS3_DestroyTexture(SDL_Renderer * renderer, SDL_Texture * texture); |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
70 |
3141
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
71 |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
72 SDL_RenderDriver SDL_PS3_RenderDriver = { |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
73 SDL_PS3_CreateRenderer, |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
74 { |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
75 "ps3", |
3142
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
76 (SDL_RENDERER_SINGLEBUFFER | SDL_RENDERER_PRESENTVSYNC | |
3146
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
77 SDL_RENDERER_PRESENTFLIP2 | SDL_RENDERER_PRESENTDISCARD | |
3150
0cf7bff804ad
Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents:
3148
diff
changeset
|
78 SDL_RENDERER_ACCELERATED), |
0cf7bff804ad
Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents:
3148
diff
changeset
|
79 (SDL_TEXTUREMODULATE_NONE), |
0cf7bff804ad
Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents:
3148
diff
changeset
|
80 (SDL_BLENDMODE_NONE), |
0cf7bff804ad
Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents:
3148
diff
changeset
|
81 /* 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
|
82 * (width and height % 8 = 0) */ |
0cf7bff804ad
Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents:
3148
diff
changeset
|
83 (SDL_TEXTURESCALEMODE_SLOW) |
3141
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 |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
87 typedef struct |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
88 { |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
89 int current_screen; |
3147
a80760096937
Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents:
3146
diff
changeset
|
90 SDL_Surface *screen; |
3142
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
91 SDL_VideoDisplay *display; |
3150
0cf7bff804ad
Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents:
3148
diff
changeset
|
92 /* adress of the centered image in the framebuffer (double buffered) */ |
3142
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
93 uint8_t *center[2]; |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
94 |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
95 /* width of input (bounded by writeable width) */ |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
96 unsigned int bounded_width; |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
97 /* height of input (bounded by writeable height) */ |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
98 unsigned int bounded_height; |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
99 /* offset from the left side (used for centering) */ |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
100 unsigned int offset_left; |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
101 /* offset from the upper side (used for centering) */ |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
102 unsigned int offset_top; |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
103 /* width of screen which is writeable */ |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
104 unsigned int wr_width; |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
105 /* width of screen which is writeable */ |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
106 unsigned int wr_height; |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
107 /* size of a screen line: width * bpp/8 */ |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
108 unsigned int line_length; |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
109 |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
110 /* Use two buffers in fb? res < 720p */ |
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 |
0d8d1f870964
Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents:
3143
diff
changeset
|
235 /* Set up the SPEs */ |
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); |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
380 for (row = 0; row < rect->h; ++row) { |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
381 SDL_memcpy(dst, src, length); |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
382 src += pitch; |
3148
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
383 dst += data->pitch; |
3146
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
384 } |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
385 } |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
386 deprintf(1, "-PS3_UpdateTexture()\n"); |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
387 return 0; |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
388 } |
3144
0d8d1f870964
Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents:
3143
diff
changeset
|
389 |
3146
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
390 static int |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
391 PS3_LockTexture(SDL_Renderer * renderer, SDL_Texture * texture, |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
392 const SDL_Rect * rect, int markDirty, void **pixels, |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
393 int *pitch) |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
394 { |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
395 deprintf(1, "+PS3_LockTexture()\n"); |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
396 PS3_TextureData *data = (PS3_TextureData *) texture->driverdata; |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
397 |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
398 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
|
399 deprintf(1, "-PS3_LockTexture()\n"); |
3146
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
400 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
|
401 } else { |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
402 *pixels = |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
403 (void *) ((Uint8 *) data->pixels + rect->y * data->pitch + |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
404 rect->x * SDL_BYTESPERPIXEL(texture->format)); |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
405 *pitch = data->pitch; |
3152
7f3341cccf42
Working 1080p, 720p, 480p videomodes and double buffering.
Martin Lowinski <martin@goldtopf.org>
parents:
3150
diff
changeset
|
406 deprintf(1, "-PS3_LockTexture()\n"); |
3146
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
407 return 0; |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
408 } |
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 static void |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
412 PS3_UnlockTexture(SDL_Renderer * renderer, SDL_Texture * texture) |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
413 { |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
414 deprintf(1, "+PS3_UnlockTexture()\n"); |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
415 PS3_TextureData *data = (PS3_TextureData *) texture->driverdata; |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
416 |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
417 if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) { |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
418 SDL_SW_UnlockYUVTexture(data->yuv); |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
419 } |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
420 deprintf(1, "-PS3_UnlockTexture()\n"); |
3144
0d8d1f870964
Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents:
3143
diff
changeset
|
421 } |
0d8d1f870964
Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents:
3143
diff
changeset
|
422 |
3142
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
423 static void |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
424 PS3_DestroyTexture(SDL_Renderer * renderer, SDL_Texture * texture) |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
425 { |
3146
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
426 deprintf(1, "+PS3_DestroyTexture()\n"); |
3142
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
427 PS3_TextureData *data = (PS3_TextureData *) texture->driverdata; |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
428 |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
429 if (!data) { |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
430 return; |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
431 } |
3146
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
432 if (data->yuv) { |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
433 SDL_SW_DestroyYUVTexture(data->yuv); |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
434 } |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
435 if (data->pixels) { |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
436 SDL_free((void *)data->pixels); |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
437 } |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
438 deprintf(1, "-PS3_DestroyTexture()\n"); |
3142
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
439 } |
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 static int |
3141
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
442 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
|
443 { |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
444 SDL_PS3_RenderData *data = |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
445 (SDL_PS3_RenderData *) renderer->driverdata; |
3147
a80760096937
Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents:
3146
diff
changeset
|
446 SDL_Surface *target = data->screen; |
3141
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
447 int status; |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
448 |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
449 if (renderer->blendMode == SDL_BLENDMODE_NONE || |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
450 renderer->blendMode == SDL_BLENDMODE_MASK) { |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
451 Uint32 color = |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
452 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
|
453 renderer->a); |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
454 |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
455 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
|
456 } else { |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
457 status = |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
458 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
|
459 renderer->g, renderer->b, renderer->a); |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
460 } |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
461 return status; |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
462 } |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
463 |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
464 static int |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
465 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
|
466 { |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
467 SDL_PS3_RenderData *data = |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
468 (SDL_PS3_RenderData *) renderer->driverdata; |
3147
a80760096937
Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents:
3146
diff
changeset
|
469 SDL_Surface *target = data->screen; |
3141
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
470 int status; |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
471 |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
472 if (renderer->blendMode == SDL_BLENDMODE_NONE || |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
473 renderer->blendMode == SDL_BLENDMODE_MASK) { |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
474 Uint32 color = |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
475 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
|
476 renderer->a); |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
477 |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
478 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
|
479 } else { |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
480 status = |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
481 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
|
482 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
|
483 } |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
484 return status; |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
485 } |
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 static int |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
488 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
|
489 { |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
490 deprintf(1, "SDL_PS3_RenderFill()\n"); |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
491 SDL_PS3_RenderData *data = |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
492 (SDL_PS3_RenderData *) renderer->driverdata; |
3147
a80760096937
Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents:
3146
diff
changeset
|
493 SDL_Surface *target = data->screen; |
3141
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
494 SDL_Rect real_rect = *rect; |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
495 int status; |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
496 |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
497 if (renderer->blendMode == SDL_BLENDMODE_NONE) { |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
498 Uint32 color = |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
499 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
|
500 renderer->a); |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
501 |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
502 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
|
503 } else { |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
504 status = |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
505 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
|
506 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
|
507 } |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
508 return status; |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
509 } |
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 static int |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
512 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
|
513 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
|
514 { |
3146
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
515 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
|
516 SDL_PS3_RenderData *data = |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
517 (SDL_PS3_RenderData *) renderer->driverdata; |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
518 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
|
519 SDL_VideoDisplay *display = SDL_GetDisplayFromWindow(window); |
3146
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
520 PS3_TextureData *txdata = (PS3_TextureData *) texture->driverdata; |
3142
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
521 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
|
522 |
3150
0cf7bff804ad
Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents:
3148
diff
changeset
|
523 /* Debug info */ |
3146
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
524 deprintf(1, "srcrect->w = %u\n", srcrect->w); |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
525 deprintf(1, "srcrect->h = %u\n", srcrect->h); |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
526 deprintf(1, "srcrect->x = %u\n", srcrect->x); |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
527 deprintf(1, "srcrect->y = %u\n", srcrect->y); |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
528 deprintf(1, "dstrect->w = %u\n", dstrect->w); |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
529 deprintf(1, "dstrect->h = %u\n", dstrect->h); |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
530 deprintf(1, "dstrect->x = %u\n", dstrect->x); |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
531 deprintf(1, "dstrect->y = %u\n", dstrect->y); |
3148
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
532 deprintf(1, "texture->w = %u\n", texture->w); |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
533 deprintf(1, "texture->h = %u\n", texture->h); |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
534 |
3141
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
535 if (SDL_ISPIXELFORMAT_FOURCC(texture->format)) { |
3153
a16c4ec43631
Fixed bug in texture format.
Martin Lowinski <martin@goldtopf.org>
parents:
3152
diff
changeset
|
536 deprintf(1, "Texture is in a FOURCC format\n"); |
a16c4ec43631
Fixed bug in texture format.
Martin Lowinski <martin@goldtopf.org>
parents:
3152
diff
changeset
|
537 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
|
538 && 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
|
539 && 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
|
540 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
|
541 |
3148
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
542 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
|
543 Uint8 *lum, *Cr, *Cb; |
3148
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
544 Uint8 *scaler_out = NULL; |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
545 Uint8 *dstpixels; |
3153
a16c4ec43631
Fixed bug in texture format.
Martin Lowinski <martin@goldtopf.org>
parents:
3152
diff
changeset
|
546 switch (texture->format) { |
3147
a80760096937
Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents:
3146
diff
changeset
|
547 case SDL_PIXELFORMAT_YV12: |
a80760096937
Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents:
3146
diff
changeset
|
548 lum = swdata->planes[0]; |
a80760096937
Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents:
3146
diff
changeset
|
549 Cr = swdata->planes[1]; |
a80760096937
Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents:
3146
diff
changeset
|
550 Cb = swdata->planes[2]; |
a80760096937
Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents:
3146
diff
changeset
|
551 break; |
a80760096937
Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents:
3146
diff
changeset
|
552 case SDL_PIXELFORMAT_IYUV: |
a80760096937
Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents:
3146
diff
changeset
|
553 lum = swdata->planes[0]; |
a80760096937
Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents:
3146
diff
changeset
|
554 Cr = swdata->planes[2]; |
a80760096937
Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents:
3146
diff
changeset
|
555 Cb = swdata->planes[1]; |
a80760096937
Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents:
3146
diff
changeset
|
556 break; |
a80760096937
Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents:
3146
diff
changeset
|
557 default: |
3153
a16c4ec43631
Fixed bug in texture format.
Martin Lowinski <martin@goldtopf.org>
parents:
3152
diff
changeset
|
558 /* 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
|
559 return -1; |
a80760096937
Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents:
3146
diff
changeset
|
560 } |
3144
0d8d1f870964
Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents:
3143
diff
changeset
|
561 |
3148
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
562 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
|
563 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
|
564 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
|
565 /* Alloc mem for scaled YUV picture */ |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
566 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
|
567 if (scaler_out == NULL) { |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
568 SDL_OutOfMemory(); |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
569 return -1; |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
570 } |
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 /* Set parms for scaling */ |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
573 data->scaler_parms->src_pixel_width = srcrect->w; |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
574 data->scaler_parms->src_pixel_height = srcrect->h; |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
575 data->scaler_parms->dst_pixel_width = dstrect->w; |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
576 data->scaler_parms->dst_pixel_height = dstrect->h; |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
577 data->scaler_parms->y_plane = lum; |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
578 data->scaler_parms->v_plane = Cr; |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
579 data->scaler_parms->u_plane = Cb; |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
580 data->scaler_parms->dstBuffer = scaler_out; |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
581 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
|
582 |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
583 /* Scale the YUV overlay to given size */ |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
584 SPE_Start(data->scaler_thread_data); |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
585 SPE_Stop(data->scaler_thread_data); |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
586 |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
587 /* Set parms for converting after scaling */ |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
588 data->converter_parms->y_plane = scaler_out; |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
589 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
|
590 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
|
591 } else { |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
592 data->converter_parms->y_plane = lum; |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
593 data->converter_parms->v_plane = Cr; |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
594 data->converter_parms->u_plane = Cb; |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
595 } |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
596 |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
597 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
|
598 * SDL_BYTESPERPIXEL(texture->format); |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
599 data->converter_parms->src_pixel_width = dstrect->w; |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
600 data->converter_parms->src_pixel_height = dstrect->h; |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
601 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
|
602 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
|
603 |
3148
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
604 /* Convert YUV texture to RGB */ |
3147
a80760096937
Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents:
3146
diff
changeset
|
605 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
|
606 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
|
607 |
3150
0cf7bff804ad
Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents:
3148
diff
changeset
|
608 /* 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
|
609 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
|
610 if (scaler_out) { |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
611 free(scaler_out); |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
612 } |
3147
a80760096937
Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents:
3146
diff
changeset
|
613 } else { |
a80760096937
Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents:
3146
diff
changeset
|
614 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
|
615 Uint8 *dst; |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
616 /* FIXME: Not good */ |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
617 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
|
618 * SDL_BYTESPERPIXEL(texture->format); |
3147
a80760096937
Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents:
3146
diff
changeset
|
619 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
|
620 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
|
621 data->screen->pitch); |
a80760096937
Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents:
3146
diff
changeset
|
622 } |
3141
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
623 } else { |
3142
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
624 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
|
625 |
3146
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
626 Uint8 *src, *dst; |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
627 int row; |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
628 size_t length; |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
629 Uint8 *dstpixels; |
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 src = (Uint8 *) txdata->pixels; |
3148
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
632 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
|
633 * SDL_BYTESPERPIXEL(texture->format); |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
634 length = dstrect->w * SDL_BYTESPERPIXEL(texture->format); |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
635 for (row = 0; row < dstrect->h; ++row) { |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
636 SDL_memcpy(dst, src, length); |
3148
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
637 src += txdata->pitch; |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
638 dst += data->screen->pitch; |
3142
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
639 } |
3146
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
640 } |
3143
8fdabaa064c3
Fixed centering. Added debug msgs for RenderCopy().
Martin Lowinski <martin@goldtopf.org>
parents:
3142
diff
changeset
|
641 |
3146
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
642 deprintf(1, "-SDL_PS3_RenderCopy()\n"); |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
643 return 0; |
3141
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
644 } |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
645 |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
646 static void |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
647 SDL_PS3_RenderPresent(SDL_Renderer * renderer) |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
648 { |
3146
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
649 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
|
650 SDL_PS3_RenderData *data = |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
651 (SDL_PS3_RenderData *) renderer->driverdata; |
3142
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
652 SDL_Window *window = SDL_GetWindowFromID(renderer->window); |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
653 SDL_VideoDisplay *display = SDL_GetDisplayFromWindow(window); |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
654 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
|
655 |
3146
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
656 /* Send the data to the screen */ |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
657 /* Get screeninfo */ |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
658 struct fb_fix_screeninfo fb_finfo; |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
659 if (ioctl(devdata->fbdev, FBIOGET_FSCREENINFO, &fb_finfo)) { |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
660 SDL_SetError("[PS3] Can't get fixed screeninfo"); |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
661 } |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
662 struct fb_var_screeninfo fb_vinfo; |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
663 if (ioctl(devdata->fbdev, FBIOGET_VSCREENINFO, &fb_vinfo)) { |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
664 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
|
665 } |
3150
0cf7bff804ad
Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents:
3148
diff
changeset
|
666 |
3146
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
667 /* 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
|
668 //txdata->bpp = fb_vinfo.bits_per_pixel; |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
669 //if (txdata->bpp == 16) |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
670 // 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
|
671 |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
672 /* Adjust centering */ |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
673 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
|
674 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
|
675 /* 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
|
676 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
|
677 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
|
678 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
|
679 data->offset_top * fb_finfo.line_length; |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
680 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
|
681 |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
682 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
|
683 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
|
684 |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
685 /* 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
|
686 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
|
687 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
|
688 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
|
689 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
|
690 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
|
691 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
|
692 //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
|
693 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
|
694 |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
695 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
|
696 |
3146
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
697 /* Copying.. */ |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
698 SPE_SendMsg(devdata->fb_thread_data, SPU_START); |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
699 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
|
700 |
3146
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
701 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
|
702 |
3142
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
703 /* Wait for vsync */ |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
704 if (renderer->info.flags & SDL_RENDERER_PRESENTVSYNC) { |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
705 unsigned long crt = 0; |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
706 deprintf(1, "[PS3] Wait for vsync\n"); |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
707 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
|
708 } |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
709 |
3142
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
710 /* Page flip */ |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
711 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
|
712 ioctl(devdata->fbdev, PS3FB_IOCTL_FSEL, (unsigned long)&data->current_screen); |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
713 |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
714 /* 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
|
715 if (data->double_buffering) { |
3142
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
716 data->current_screen = (data->current_screen + 1) % 2; |
c146645a770e
Roughly working framebuffer.
Martin Lowinski <martin@goldtopf.org>
parents:
3141
diff
changeset
|
717 } |
3146
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
718 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
|
719 } |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
720 |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
721 static void |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
722 SDL_PS3_DestroyRenderer(SDL_Renderer * renderer) |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
723 { |
3146
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
724 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
|
725 SDL_PS3_RenderData *data = |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
726 (SDL_PS3_RenderData *) renderer->driverdata; |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
727 int i; |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
728 |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
729 if (data) { |
3146
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
730 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
|
731 if (data->screen) { |
a80760096937
Support all YUV texture formats using SW_Textures.
Martin Lowinski <martin@goldtopf.org>
parents:
3146
diff
changeset
|
732 SDL_FreeSurface(data->screen); |
3141
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
733 } |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
734 } |
3144
0d8d1f870964
Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents:
3143
diff
changeset
|
735 |
3150
0cf7bff804ad
Code reviewed and added SPE API documentation.
Martin Lowinski <martin@goldtopf.org>
parents:
3148
diff
changeset
|
736 /* Shutdown SPE and release related resources */ |
3148
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
737 if (data->scaler_thread_data) { |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
738 free((void *)data->scaler_thread_data); |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
739 } |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
740 if (data->scaler_parms) { |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
741 free((void *)data->scaler_parms); |
104786a909a2
Scaling (bilinear) of YUV-Textures working.
Martin Lowinski <martin@goldtopf.org>
parents:
3147
diff
changeset
|
742 } |
3144
0d8d1f870964
Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents:
3143
diff
changeset
|
743 if (data->converter_thread_data) { |
0d8d1f870964
Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents:
3143
diff
changeset
|
744 SPE_Shutdown(data->converter_thread_data); |
0d8d1f870964
Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents:
3143
diff
changeset
|
745 free((void *)data->converter_thread_data); |
0d8d1f870964
Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents:
3143
diff
changeset
|
746 } |
3146
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
747 if (data->converter_parms) { |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
748 free((void *)data->converter_parms); |
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
749 } |
3144
0d8d1f870964
Moved SPE-functions to SDL_ps3spe.c.
Martin Lowinski <martin@goldtopf.org>
parents:
3143
diff
changeset
|
750 |
3141
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
751 SDL_free(data); |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
752 } |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
753 SDL_free(renderer); |
3146
9e902f423497
YUV-Textures with SPU-support working.
Martin Lowinski <martin@goldtopf.org>
parents:
3144
diff
changeset
|
754 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
|
755 } |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
756 |
3df74541339b
Added ps3 video driver based on the dummy driver.
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
757 /* vi: set ts=4 sw=4 expandtab: */ |