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

Latest commit

 

History

History
1285 lines (1131 loc) · 40.8 KB

SDL_renderer_gl.c

File metadata and controls

1285 lines (1131 loc) · 40.8 KB
 
Jul 19, 2006
Jul 19, 2006
1
2
/*
SDL - Simple DirectMedia Layer
Jan 24, 2010
Jan 24, 2010
3
Copyright (C) 1997-2010 Sam Lantinga
Jul 19, 2006
Jul 19, 2006
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Sam Lantinga
slouken@libsdl.org
*/
#include "SDL_config.h"
Jul 28, 2006
Jul 28, 2006
24
#if SDL_VIDEO_RENDER_OGL
Jul 22, 2006
Jul 22, 2006
25
26
#include "SDL_opengl.h"
Feb 2, 2011
Feb 2, 2011
27
#include "../SDL_sysrender.h"
Jul 19, 2006
Jul 19, 2006
28
Aug 15, 2007
Aug 15, 2007
29
30
31
32
#ifdef __MACOSX__
#include <OpenGL/OpenGL.h>
#endif
Nov 22, 2008
Nov 22, 2008
33
Jul 19, 2006
Jul 19, 2006
34
35
/* OpenGL renderer implementation */
Aug 12, 2007
Aug 12, 2007
36
37
38
39
/* Details on optimizing the texture path on Mac OS X:
http://developer.apple.com/documentation/GraphicsImaging/Conceptual/OpenGL-MacProgGuide/opengl_texturedata/chapter_10_section_2.html
*/
Dec 6, 2008
Dec 6, 2008
40
41
42
43
/* !!! FIXME: this should go in a higher level than the GL renderer. */
static __inline__ int
bytes_per_pixel(const Uint32 format)
{
Dec 6, 2008
Dec 6, 2008
44
45
46
47
48
if (!SDL_ISPIXELFORMAT_FOURCC(format)) {
return SDL_BYTESPERPIXEL(format);
}
/* FOURCC format */
Dec 6, 2008
Dec 6, 2008
49
switch (format) {
Dec 20, 2008
Dec 20, 2008
50
51
52
53
54
55
56
57
case SDL_PIXELFORMAT_YV12:
case SDL_PIXELFORMAT_IYUV:
case SDL_PIXELFORMAT_YUY2:
case SDL_PIXELFORMAT_UYVY:
case SDL_PIXELFORMAT_YVYU:
return 2;
default:
return 1; /* shouldn't ever hit this. */
Dec 6, 2008
Dec 6, 2008
58
59
60
}
}
Feb 2, 2011
Feb 2, 2011
61
62
/* Used to re-create the window with OpenGL capability */
extern int SDL_RecreateWindow(SDL_Window * window, Uint32 flags);
Dec 6, 2008
Dec 6, 2008
63
Aug 28, 2006
Aug 28, 2006
64
65
static const float inv255f = 1.0f / 255.0f;
Jul 19, 2006
Jul 19, 2006
66
static SDL_Renderer *GL_CreateRenderer(SDL_Window * window, Uint32 flags);
Feb 2, 2011
Feb 2, 2011
67
68
static void GL_WindowEvent(SDL_Renderer * renderer,
const SDL_WindowEvent *event);
Jul 19, 2006
Jul 19, 2006
69
static int GL_CreateTexture(SDL_Renderer * renderer, SDL_Texture * texture);
Aug 11, 2007
Aug 11, 2007
70
71
72
static int GL_QueryTexturePixels(SDL_Renderer * renderer,
SDL_Texture * texture, void **pixels,
int *pitch);
Jul 19, 2006
Jul 19, 2006
73
74
75
76
static int GL_UpdateTexture(SDL_Renderer * renderer, SDL_Texture * texture,
const SDL_Rect * rect, const void *pixels,
int pitch);
static int GL_LockTexture(SDL_Renderer * renderer, SDL_Texture * texture,
Aug 28, 2006
Aug 28, 2006
77
78
const SDL_Rect * rect, int markDirty, void **pixels,
int *pitch);
Jul 19, 2006
Jul 19, 2006
79
80
81
static void GL_UnlockTexture(SDL_Renderer * renderer, SDL_Texture * texture);
static void GL_DirtyTexture(SDL_Renderer * renderer, SDL_Texture * texture,
int numrects, const SDL_Rect * rects);
Dec 23, 2009
Dec 23, 2009
82
83
84
85
86
87
88
static int GL_RenderClear(SDL_Renderer * renderer);
static int GL_RenderDrawPoints(SDL_Renderer * renderer,
const SDL_Point * points, int count);
static int GL_RenderDrawLines(SDL_Renderer * renderer,
const SDL_Point * points, int count);
static int GL_RenderFillRects(SDL_Renderer * renderer,
const SDL_Rect ** rects, int count);
Jul 19, 2006
Jul 19, 2006
89
static int GL_RenderCopy(SDL_Renderer * renderer, SDL_Texture * texture,
Aug 28, 2006
Aug 28, 2006
90
const SDL_Rect * srcrect, const SDL_Rect * dstrect);
Nov 15, 2009
Nov 15, 2009
91
static int GL_RenderReadPixels(SDL_Renderer * renderer, const SDL_Rect * rect,
Nov 16, 2009
Nov 16, 2009
92
Uint32 pixel_format, void * pixels, int pitch);
Nov 15, 2009
Nov 15, 2009
93
static int GL_RenderWritePixels(SDL_Renderer * renderer, const SDL_Rect * rect,
Nov 16, 2009
Nov 16, 2009
94
Uint32 pixel_format, const void * pixels, int pitch);
Jul 19, 2006
Jul 19, 2006
95
96
97
98
99
100
101
102
103
static void GL_RenderPresent(SDL_Renderer * renderer);
static void GL_DestroyTexture(SDL_Renderer * renderer, SDL_Texture * texture);
static void GL_DestroyRenderer(SDL_Renderer * renderer);
SDL_RenderDriver GL_RenderDriver = {
GL_CreateRenderer,
{
"opengl",
Feb 1, 2011
Feb 1, 2011
104
(SDL_RENDERER_PRESENTVSYNC | SDL_RENDERER_ACCELERATED),
Feb 2, 2011
Feb 2, 2011
105
13,
Jul 19, 2006
Jul 19, 2006
106
{
Aug 5, 2006
Aug 5, 2006
107
108
109
110
111
112
113
114
115
116
117
118
SDL_PIXELFORMAT_RGB332,
SDL_PIXELFORMAT_RGB444,
SDL_PIXELFORMAT_RGB555,
SDL_PIXELFORMAT_ARGB4444,
SDL_PIXELFORMAT_ARGB1555,
SDL_PIXELFORMAT_RGB565,
SDL_PIXELFORMAT_RGB24,
SDL_PIXELFORMAT_BGR24,
SDL_PIXELFORMAT_RGB888,
SDL_PIXELFORMAT_BGR888,
SDL_PIXELFORMAT_ARGB8888,
SDL_PIXELFORMAT_ABGR8888,
Dec 1, 2008
Dec 1, 2008
119
SDL_PIXELFORMAT_ARGB2101010},
Jul 19, 2006
Jul 19, 2006
120
121
122
123
124
125
126
0,
0}
};
typedef struct
{
SDL_GLContext context;
Dec 5, 2008
Dec 5, 2008
127
SDL_bool updateSize;
Jul 22, 2006
Jul 22, 2006
128
SDL_bool GL_ARB_texture_rectangle_supported;
Aug 12, 2007
Aug 12, 2007
129
SDL_bool GL_EXT_paletted_texture_supported;
Dec 7, 2008
Dec 7, 2008
130
131
SDL_bool GL_APPLE_ycbcr_422_supported;
SDL_bool GL_MESA_ycbcr_texture_supported;
Dec 6, 2008
Dec 6, 2008
132
SDL_bool GL_ARB_fragment_program_supported;
Jul 22, 2006
Jul 22, 2006
133
134
135
136
int blendMode;
/* OpenGL functions */
#define SDL_PROC(ret,func,params) ret (APIENTRY *func) params;
Feb 2, 2011
Feb 2, 2011
137
#include "../../video/SDL_glfuncs.h"
Jul 22, 2006
Jul 22, 2006
138
#undef SDL_PROC
Aug 6, 2006
Aug 6, 2006
139
Aug 12, 2007
Aug 12, 2007
140
141
void (*glTextureRangeAPPLE) (GLenum target, GLsizei length,
const GLvoid * pointer);
Dec 6, 2008
Dec 6, 2008
142
143
144
145
146
147
148
149
150
151
152
PFNGLGETPROGRAMIVARBPROC glGetProgramivARB;
PFNGLGETPROGRAMSTRINGARBPROC glGetProgramStringARB;
PFNGLPROGRAMLOCALPARAMETER4FVARBPROC glProgramLocalParameter4fvARB;
PFNGLDELETEPROGRAMSARBPROC glDeleteProgramsARB;
PFNGLGENPROGRAMSARBPROC glGenProgramsARB;
PFNGLBINDPROGRAMARBPROC glBindProgramARB;
PFNGLPROGRAMSTRINGARBPROC glProgramStringARB;
/* (optional) fragment programs */
GLuint fragment_program_UYVY;
Jul 19, 2006
Jul 19, 2006
153
154
155
156
157
} GL_RenderData;
typedef struct
{
GLuint texture;
Dec 6, 2008
Dec 6, 2008
158
GLuint shader;
Jul 22, 2006
Jul 22, 2006
159
GLenum type;
Jul 19, 2006
Jul 19, 2006
160
161
GLfloat texw;
GLfloat texh;
Jul 22, 2006
Jul 22, 2006
162
163
GLenum format;
GLenum formattype;
Aug 6, 2006
Aug 6, 2006
164
Uint8 *palette;
Jul 19, 2006
Jul 19, 2006
165
166
void *pixels;
int pitch;
Jul 22, 2006
Jul 22, 2006
167
SDL_DirtyRectList dirty;
Dec 20, 2008
Dec 20, 2008
168
int HACK_RYAN_FIXME;
Jul 19, 2006
Jul 19, 2006
169
170
171
} GL_TextureData;
Jul 22, 2006
Jul 22, 2006
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
static void
GL_SetError(const char *prefix, GLenum result)
{
const char *error;
switch (result) {
case GL_NO_ERROR:
error = "GL_NO_ERROR";
break;
case GL_INVALID_ENUM:
error = "GL_INVALID_ENUM";
break;
case GL_INVALID_VALUE:
error = "GL_INVALID_VALUE";
break;
case GL_INVALID_OPERATION:
error = "GL_INVALID_OPERATION";
break;
case GL_STACK_OVERFLOW:
error = "GL_STACK_OVERFLOW";
break;
case GL_STACK_UNDERFLOW:
error = "GL_STACK_UNDERFLOW";
break;
case GL_OUT_OF_MEMORY:
error = "GL_OUT_OF_MEMORY";
break;
case GL_TABLE_TOO_LARGE:
error = "GL_TABLE_TOO_LARGE";
break;
default:
error = "UNKNOWN";
break;
}
SDL_SetError("%s: %s", prefix, error);
}
Jul 22, 2006
Jul 22, 2006
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
static int
GL_LoadFunctions(GL_RenderData * data)
{
#ifdef __SDL_NOGETPROCADDR__
#define SDL_PROC(ret,func,params) data->func=func;
#else
#define SDL_PROC(ret,func,params) \
do { \
data->func = SDL_GL_GetProcAddress(#func); \
if ( ! data->func ) { \
SDL_SetError("Couldn't load GL function %s: %s\n", #func, SDL_GetError()); \
return -1; \
} \
} while ( 0 );
#endif /* __SDL_NOGETPROCADDR__ */
Feb 2, 2011
Feb 2, 2011
225
#include "../../video/SDL_glfuncs.h"
Jul 22, 2006
Jul 22, 2006
226
227
228
229
#undef SDL_PROC
return 0;
}
Jul 19, 2006
Jul 19, 2006
230
231
232
233
234
SDL_Renderer *
GL_CreateRenderer(SDL_Window * window, Uint32 flags)
{
SDL_Renderer *renderer;
GL_RenderData *data;
Jul 28, 2006
Jul 28, 2006
235
GLint value;
Feb 2, 2011
Feb 2, 2011
236
Uint32 window_flags;
Jul 19, 2006
Jul 19, 2006
237
Feb 2, 2011
Feb 2, 2011
238
239
240
window_flags = SDL_GetWindowFlags(window);
if (!(window_flags & SDL_WINDOW_OPENGL)) {
if (SDL_RecreateWindow(window, window_flags | SDL_WINDOW_OPENGL) < 0) {
Jul 22, 2006
Jul 22, 2006
241
242
return NULL;
}
Jul 19, 2006
Jul 19, 2006
243
244
}
Jul 22, 2006
Jul 22, 2006
245
renderer = (SDL_Renderer *) SDL_calloc(1, sizeof(*renderer));
Jul 19, 2006
Jul 19, 2006
246
247
248
249
250
if (!renderer) {
SDL_OutOfMemory();
return NULL;
}
Jul 22, 2006
Jul 22, 2006
251
data = (GL_RenderData *) SDL_calloc(1, sizeof(*data));
Jul 19, 2006
Jul 19, 2006
252
253
254
255
256
257
if (!data) {
GL_DestroyRenderer(renderer);
SDL_OutOfMemory();
return NULL;
}
Feb 2, 2011
Feb 2, 2011
258
renderer->WindowEvent = GL_WindowEvent;
Jul 19, 2006
Jul 19, 2006
259
renderer->CreateTexture = GL_CreateTexture;
Aug 11, 2007
Aug 11, 2007
260
renderer->QueryTexturePixels = GL_QueryTexturePixels;
Jul 19, 2006
Jul 19, 2006
261
262
263
264
renderer->UpdateTexture = GL_UpdateTexture;
renderer->LockTexture = GL_LockTexture;
renderer->UnlockTexture = GL_UnlockTexture;
renderer->DirtyTexture = GL_DirtyTexture;
Dec 23, 2009
Dec 23, 2009
265
266
267
268
renderer->RenderClear = GL_RenderClear;
renderer->RenderDrawPoints = GL_RenderDrawPoints;
renderer->RenderDrawLines = GL_RenderDrawLines;
renderer->RenderFillRects = GL_RenderFillRects;
Jul 19, 2006
Jul 19, 2006
269
renderer->RenderCopy = GL_RenderCopy;
Nov 15, 2009
Nov 15, 2009
270
271
renderer->RenderReadPixels = GL_RenderReadPixels;
renderer->RenderWritePixels = GL_RenderWritePixels;
Jul 19, 2006
Jul 19, 2006
272
273
274
275
renderer->RenderPresent = GL_RenderPresent;
renderer->DestroyTexture = GL_DestroyTexture;
renderer->DestroyRenderer = GL_DestroyRenderer;
renderer->info = GL_RenderDriver.info;
Jan 21, 2010
Jan 21, 2010
276
renderer->window = window;
Jul 19, 2006
Jul 19, 2006
277
278
renderer->driverdata = data;
Feb 1, 2011
Feb 1, 2011
279
renderer->info.flags = SDL_RENDERER_ACCELERATED;
Jul 19, 2006
Jul 19, 2006
280
Jul 22, 2006
Jul 22, 2006
281
282
283
284
285
if (GL_LoadFunctions(data) < 0) {
GL_DestroyRenderer(renderer);
return NULL;
}
Jan 21, 2010
Jan 21, 2010
286
data->context = SDL_GL_CreateContext(window);
Jul 19, 2006
Jul 19, 2006
287
288
289
290
if (!data->context) {
GL_DestroyRenderer(renderer);
return NULL;
}
Jan 21, 2010
Jan 21, 2010
291
if (SDL_GL_MakeCurrent(window, data->context) < 0) {
Jul 19, 2006
Jul 19, 2006
292
293
294
GL_DestroyRenderer(renderer);
return NULL;
}
Aug 15, 2007
Aug 15, 2007
295
296
297
#ifdef __MACOSX__
/* Enable multi-threaded rendering */
/* Disabled until Ryan finishes his VBO/PBO code...
Jan 8, 2008
Jan 8, 2008
298
299
CGLEnable(CGLGetCurrentContext(), kCGLCEMPEngine);
*/
Aug 15, 2007
Aug 15, 2007
300
301
#endif
Aug 5, 2006
Aug 5, 2006
302
if (flags & SDL_RENDERER_PRESENTVSYNC) {
Jul 19, 2006
Jul 19, 2006
303
304
305
306
307
SDL_GL_SetSwapInterval(1);
} else {
SDL_GL_SetSwapInterval(0);
}
if (SDL_GL_GetSwapInterval() > 0) {
Aug 5, 2006
Aug 5, 2006
308
renderer->info.flags |= SDL_RENDERER_PRESENTVSYNC;
Jul 19, 2006
Jul 19, 2006
309
310
}
Jul 28, 2006
Jul 28, 2006
311
312
313
314
data->glGetIntegerv(GL_MAX_TEXTURE_SIZE, &value);
renderer->info.max_texture_width = value;
data->glGetIntegerv(GL_MAX_TEXTURE_SIZE, &value);
renderer->info.max_texture_height = value;
Jul 22, 2006
Jul 22, 2006
315
Jul 22, 2006
Jul 22, 2006
316
317
318
319
if (SDL_GL_ExtensionSupported("GL_ARB_texture_rectangle")
|| SDL_GL_ExtensionSupported("GL_EXT_texture_rectangle")) {
data->GL_ARB_texture_rectangle_supported = SDL_TRUE;
}
Dec 7, 2008
Dec 7, 2008
320
321
322
323
324
325
if (SDL_GL_ExtensionSupported("GL_APPLE_ycbcr_422")) {
data->GL_APPLE_ycbcr_422_supported = SDL_TRUE;
}
if (SDL_GL_ExtensionSupported("GL_MESA_ycbcr_texture")) {
data->GL_MESA_ycbcr_texture_supported = SDL_TRUE;
}
Aug 12, 2007
Aug 12, 2007
326
327
328
329
330
if (SDL_GL_ExtensionSupported("GL_APPLE_texture_range")) {
data->glTextureRangeAPPLE =
(void (*)(GLenum, GLsizei, const GLvoid *))
SDL_GL_GetProcAddress("glTextureRangeAPPLE");
}
Jul 22, 2006
Jul 22, 2006
331
Dec 6, 2008
Dec 6, 2008
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
/* we might use fragment programs for YUV data, etc. */
if (SDL_GL_ExtensionSupported("GL_ARB_fragment_program")) {
/* !!! FIXME: this doesn't check for errors. */
/* !!! FIXME: this should really reuse the glfuncs.h stuff. */
data->glGetProgramivARB = (PFNGLGETPROGRAMIVARBPROC)
SDL_GL_GetProcAddress("glGetProgramivARB");
data->glGetProgramStringARB = (PFNGLGETPROGRAMSTRINGARBPROC)
SDL_GL_GetProcAddress("glGetProgramStringARB");
data->glProgramLocalParameter4fvARB =
(PFNGLPROGRAMLOCALPARAMETER4FVARBPROC)
SDL_GL_GetProcAddress("glProgramLocalParameter4fvARB");
data->glDeleteProgramsARB = (PFNGLDELETEPROGRAMSARBPROC)
SDL_GL_GetProcAddress("glDeleteProgramsARB");
data->glGenProgramsARB = (PFNGLGENPROGRAMSARBPROC)
SDL_GL_GetProcAddress("glGenProgramsARB");
data->glBindProgramARB = (PFNGLBINDPROGRAMARBPROC)
SDL_GL_GetProcAddress("glBindProgramARB");
data->glProgramStringARB = (PFNGLPROGRAMSTRINGARBPROC)
SDL_GL_GetProcAddress("glProgramStringARB");
data->GL_ARB_fragment_program_supported = SDL_TRUE;
}
Jul 19, 2006
Jul 19, 2006
354
/* Set up parameters for rendering */
Jul 22, 2006
Jul 22, 2006
355
356
357
data->blendMode = -1;
data->glDisable(GL_DEPTH_TEST);
data->glDisable(GL_CULL_FACE);
Sep 19, 2009
Sep 19, 2009
358
359
/* This ended up causing video discrepancies between OpenGL and Direct3D */
/*data->glEnable(GL_LINE_SMOOTH);*/
Jul 22, 2006
Jul 22, 2006
360
if (data->GL_ARB_texture_rectangle_supported) {
Jul 22, 2006
Jul 22, 2006
361
data->glEnable(GL_TEXTURE_RECTANGLE_ARB);
Jul 22, 2006
Jul 22, 2006
362
} else {
Jul 22, 2006
Jul 22, 2006
363
data->glEnable(GL_TEXTURE_2D);
Jul 22, 2006
Jul 22, 2006
364
}
Dec 5, 2008
Dec 5, 2008
365
data->updateSize = SDL_TRUE;
Jul 19, 2006
Jul 19, 2006
366
367
368
369
return renderer;
}
Feb 2, 2011
Feb 2, 2011
370
371
static SDL_GLContext SDL_CurrentContext = NULL;
Jul 22, 2006
Jul 22, 2006
372
373
374
375
static int
GL_ActivateRenderer(SDL_Renderer * renderer)
{
GL_RenderData *data = (GL_RenderData *) renderer->driverdata;
Jan 21, 2010
Jan 21, 2010
376
SDL_Window *window = renderer->window;
Jul 22, 2006
Jul 22, 2006
377
Feb 2, 2011
Feb 2, 2011
378
379
380
381
382
if (SDL_CurrentContext != data->context) {
if (SDL_GL_MakeCurrent(window, data->context) < 0) {
return -1;
}
SDL_CurrentContext = data->context;
Aug 6, 2006
Aug 6, 2006
383
}
Dec 5, 2008
Dec 5, 2008
384
if (data->updateSize) {
Feb 2, 2011
Feb 2, 2011
385
386
387
int w, h;
SDL_GetWindowSize(window, &w, &h);
Dec 6, 2008
Dec 6, 2008
388
389
390
391
data->glMatrixMode(GL_PROJECTION);
data->glLoadIdentity();
data->glMatrixMode(GL_MODELVIEW);
data->glLoadIdentity();
Feb 2, 2011
Feb 2, 2011
392
393
data->glViewport(0, 0, w, h);
data->glOrtho(0.0, (GLdouble) w, (GLdouble) h, 0.0, 0.0, 1.0);
Dec 5, 2008
Dec 5, 2008
394
395
data->updateSize = SDL_FALSE;
}
Aug 6, 2006
Aug 6, 2006
396
397
398
return 0;
}
Feb 2, 2011
Feb 2, 2011
399
400
static void
GL_WindowEvent(SDL_Renderer * renderer, const SDL_WindowEvent *event)
Aug 6, 2006
Aug 6, 2006
401
402
403
{
GL_RenderData *data = (GL_RenderData *) renderer->driverdata;
Feb 2, 2011
Feb 2, 2011
404
405
406
407
408
if (event->event == SDL_WINDOWEVENT_RESIZED) {
/* Rebind the context to the window area and update matrices */
SDL_CurrentContext = NULL;
data->updateSize = SDL_TRUE;
}
Jul 22, 2006
Jul 22, 2006
409
410
}
Jul 22, 2006
Jul 22, 2006
411
412
413
414
415
416
417
418
419
420
421
static __inline__ int
power_of_2(int input)
{
int value = 1;
while (value < input) {
value <<= 1;
}
return value;
}
Dec 6, 2008
Dec 6, 2008
422
Dec 8, 2008
Dec 8, 2008
423
//#define DEBUG_PROGRAM_COMPILE 1
Dec 6, 2008
Dec 6, 2008
424
Nov 21, 2009
Nov 21, 2009
425
426
427
428
429
430
431
static void
set_shader_error(GL_RenderData * data, const char *prefix)
{
GLint pos = 0;
const GLubyte *errstr;
data->glGetIntegerv(GL_PROGRAM_ERROR_POSITION_ARB, &pos);
errstr = data->glGetString(GL_PROGRAM_ERROR_STRING_ARB);
Nov 22, 2009
Nov 22, 2009
432
SDL_SetError("%s: shader compile error at position %d: %s",
Nov 21, 2009
Nov 21, 2009
433
434
435
prefix, (int) pos, (const char *) errstr);
}
Dec 6, 2008
Dec 6, 2008
436
static GLuint
Dec 20, 2008
Dec 20, 2008
437
compile_shader(GL_RenderData * data, GLenum shader_type, const char *_code)
Dec 6, 2008
Dec 6, 2008
438
{
Dec 7, 2008
Dec 7, 2008
439
440
const int have_texture_rects = data->GL_ARB_texture_rectangle_supported;
const char *replacement = have_texture_rects ? "RECT" : "2D";
Dec 25, 2008
Dec 25, 2008
441
const size_t replacementlen = SDL_strlen(replacement);
Dec 7, 2008
Dec 7, 2008
442
const char *token = "%TEXTURETARGET%";
Dec 25, 2008
Dec 25, 2008
443
const size_t tokenlen = SDL_strlen(token);
Dec 7, 2008
Dec 7, 2008
444
445
446
447
448
449
450
451
452
453
454
455
456
char *code = NULL;
char *ptr = NULL;
GLuint program = 0;
/*
* The TEX instruction needs a different target depending on what we use.
* To handle this, we use "%TEXTURETARGET%" and replace the string before
* compiling the shader.
*/
code = SDL_strdup(_code);
if (code == NULL)
return 0;
Dec 20, 2008
Dec 20, 2008
457
for (ptr = SDL_strstr(code, token); ptr; ptr = SDL_strstr(ptr + 1, token)) {
Dec 25, 2008
Dec 25, 2008
458
459
460
SDL_memcpy(ptr, replacement, replacementlen);
SDL_memmove(ptr + replacementlen, ptr + tokenlen,
SDL_strlen(ptr + tokenlen) + 1);
Dec 7, 2008
Dec 7, 2008
461
462
}
Dec 6, 2008
Dec 6, 2008
463
#if DEBUG_PROGRAM_COMPILE
Dec 7, 2008
Dec 7, 2008
464
printf("compiling shader:\n%s\n\n", code);
Dec 6, 2008
Dec 6, 2008
465
466
#endif
Dec 20, 2008
Dec 20, 2008
467
data->glGetError(); /* flush any existing error state. */
Dec 6, 2008
Dec 6, 2008
468
469
470
data->glGenProgramsARB(1, &program);
data->glBindProgramARB(shader_type, program);
data->glProgramStringARB(shader_type, GL_PROGRAM_FORMAT_ASCII_ARB,
Sep 5, 2009
Sep 5, 2009
471
(GLsizei)SDL_strlen(code), code);
Dec 7, 2008
Dec 7, 2008
472
473
SDL_free(code);
Dec 6, 2008
Dec 6, 2008
474
Dec 20, 2008
Dec 20, 2008
475
if (data->glGetError() == GL_INVALID_OPERATION) {
Dec 6, 2008
Dec 6, 2008
476
477
478
479
480
481
#if DEBUG_PROGRAM_COMPILE
GLint pos = 0;
const GLubyte *errstr;
data->glGetIntegerv(GL_PROGRAM_ERROR_POSITION_ARB, &pos);
errstr = data->glGetString(GL_PROGRAM_ERROR_STRING_ARB);
printf("program compile error at position %d: %s\n\n",
Dec 20, 2008
Dec 20, 2008
482
(int) pos, (const char *) errstr);
Dec 6, 2008
Dec 6, 2008
483
484
485
486
#endif
data->glBindProgramARB(shader_type, 0);
data->glDeleteProgramsARB(1, &program);
return 0;
Dec 7, 2008
Dec 7, 2008
487
}
Dec 6, 2008
Dec 6, 2008
488
489
490
491
return program;
}
Dec 7, 2008
Dec 7, 2008
492
493
494
495
496
497
498
499
500
501
502
503
504
/*
* Fragment program that renders from UYVY textures.
* The UYVY to RGB equasion is:
* R = 1.164(Y-16) + 1.596(Cr-128)
* G = 1.164(Y-16) - 0.813(Cr-128) - 0.391(Cb-128)
* B = 1.164(Y-16) + 2.018(Cb-128)
* Byte layout is Cb, Y1, Cr, Y2, stored in the R, G, B, A channels.
* 4 bytes == 2 pixels: Y1/Cb/Cr, Y2/Cb/Cr
*
* !!! FIXME: this ignores blendmodes, etc.
* !!! FIXME: this could be more efficient...use a dot product for green, etc.
*/
Dec 20, 2008
Dec 20, 2008
505
static const char *fragment_program_UYVY_source_code = "!!ARBfp1.0\n"
Dec 7, 2008
Dec 7, 2008
506
/* outputs... */
Dec 6, 2008
Dec 6, 2008
507
"OUTPUT outcolor = result.color;\n"
Dec 7, 2008
Dec 7, 2008
508
/* scratch registers... */
Dec 20, 2008
Dec 20, 2008
509
"TEMP uyvy;\n" "TEMP luminance;\n" "TEMP work;\n"
Dec 7, 2008
Dec 7, 2008
510
/* Halve the coordinates to grab the correct 32 bits for the fragment. */
Dec 6, 2008
Dec 6, 2008
511
"MUL work, fragment.texcoord, { 0.5, 1.0, 1.0, 1.0 };\n"
Dec 7, 2008
Dec 7, 2008
512
/* Sample the YUV texture. Cb, Y1, Cr, Y2, are stored in x, y, z, w. */
Dec 7, 2008
Dec 7, 2008
513
"TEX uyvy, work, texture[0], %TEXTURETARGET%;\n"
Dec 7, 2008
Dec 7, 2008
514
/* Do subtractions (128/255, 16/255, 128/255, 16/255) */
Dec 7, 2008
Dec 7, 2008
515
"SUB uyvy, uyvy, { 0.501960784313726, 0.06274509803922, 0.501960784313726, 0.06274509803922 };\n"
Dec 7, 2008
Dec 7, 2008
516
517
/* Choose the luminance component by texcoord. */
/* !!! FIXME: laziness wins out for now... just average Y1 and Y2. */
Dec 6, 2008
Dec 6, 2008
518
519
"ADD luminance, uyvy.yyyy, uyvy.wwww;\n"
"MUL luminance, luminance, { 0.5, 0.5, 0.5, 0.5 };\n"
Dec 7, 2008
Dec 7, 2008
520
/* Multiply luminance by its magic value. */
Dec 6, 2008
Dec 6, 2008
521
"MUL luminance, luminance, { 1.164, 1.164, 1.164, 1.164 };\n"
Dec 7, 2008
Dec 7, 2008
522
/* uyvy.xyzw becomes Cr/Cr/Cb/Cb, with multiplications. */
Dec 6, 2008
Dec 6, 2008
523
"MUL uyvy, uyvy.zzxx, { 1.596, -0.813, 2.018, -0.391 };\n"
Dec 7, 2008
Dec 7, 2008
524
/* Add luminance to Cr and Cb, store to RGB channels. */
Dec 6, 2008
Dec 6, 2008
525
"ADD work.rgb, luminance, uyvy;\n"
Dec 7, 2008
Dec 7, 2008
526
/* Do final addition for Green channel. (!!! FIXME: this should be a DPH?) */
Dec 6, 2008
Dec 6, 2008
527
"ADD work.g, work.g, uyvy.w;\n"
Dec 7, 2008
Dec 7, 2008
528
/* Make sure alpha channel is fully opaque. (!!! FIXME: blend modes!) */
Dec 6, 2008
Dec 6, 2008
529
"MOV work.a, { 1.0 };\n"
Dec 7, 2008
Dec 7, 2008
530
/* Store out the final fragment color... */
Dec 6, 2008
Dec 6, 2008
531
"MOV outcolor, work;\n"
Dec 7, 2008
Dec 7, 2008
532
/* ...and we're done! */
Dec 6, 2008
Dec 6, 2008
533
534
"END\n";
Nov 15, 2009
Nov 15, 2009
535
536
537
static __inline__ SDL_bool
convert_format(GL_RenderData *renderdata, Uint32 pixel_format,
GLint* internalFormat, GLenum* format, GLenum* type)
Jul 19, 2006
Jul 19, 2006
538
{
Nov 15, 2009
Nov 15, 2009
539
switch (pixel_format) {
Aug 5, 2006
Aug 5, 2006
540
case SDL_PIXELFORMAT_RGB332:
Nov 15, 2009
Nov 15, 2009
541
542
543
*internalFormat = GL_R3_G3_B2;
*format = GL_RGB;
*type = GL_UNSIGNED_BYTE_3_3_2;
Jul 22, 2006
Jul 22, 2006
544
break;
Aug 5, 2006
Aug 5, 2006
545
case SDL_PIXELFORMAT_RGB444:
Nov 15, 2009
Nov 15, 2009
546
547
548
*internalFormat = GL_RGB4;
*format = GL_RGB;
*type = GL_UNSIGNED_SHORT_4_4_4_4;
Jul 22, 2006
Jul 22, 2006
549
break;
Aug 5, 2006
Aug 5, 2006
550
case SDL_PIXELFORMAT_RGB555:
Nov 15, 2009
Nov 15, 2009
551
552
553
*internalFormat = GL_RGB5;
*format = GL_RGB;
*type = GL_UNSIGNED_SHORT_5_5_5_1;
Jul 22, 2006
Jul 22, 2006
554
break;
Aug 5, 2006
Aug 5, 2006
555
case SDL_PIXELFORMAT_ARGB4444:
Nov 15, 2009
Nov 15, 2009
556
557
558
*internalFormat = GL_RGBA4;
*format = GL_BGRA;
*type = GL_UNSIGNED_SHORT_4_4_4_4_REV;
Jul 22, 2006
Jul 22, 2006
559
break;
Aug 5, 2006
Aug 5, 2006
560
case SDL_PIXELFORMAT_ARGB1555:
Nov 15, 2009
Nov 15, 2009
561
562
563
*internalFormat = GL_RGB5_A1;
*format = GL_BGRA;
*type = GL_UNSIGNED_SHORT_1_5_5_5_REV;
Jul 22, 2006
Jul 22, 2006
564
break;
Aug 5, 2006
Aug 5, 2006
565
case SDL_PIXELFORMAT_RGB565:
Nov 15, 2009
Nov 15, 2009
566
567
568
*internalFormat = GL_RGB8;
*format = GL_RGB;
*type = GL_UNSIGNED_SHORT_5_6_5;
Jul 22, 2006
Jul 22, 2006
569
break;
Aug 5, 2006
Aug 5, 2006
570
case SDL_PIXELFORMAT_RGB24:
Nov 15, 2009
Nov 15, 2009
571
572
573
*internalFormat = GL_RGB8;
*format = GL_RGB;
*type = GL_UNSIGNED_BYTE;
Jul 22, 2006
Jul 22, 2006
574
break;
Aug 5, 2006
Aug 5, 2006
575
case SDL_PIXELFORMAT_RGB888:
Nov 15, 2009
Nov 15, 2009
576
577
578
*internalFormat = GL_RGB8;
*format = GL_BGRA;
*type = GL_UNSIGNED_BYTE;
Jul 22, 2006
Jul 22, 2006
579
break;
Aug 5, 2006
Aug 5, 2006
580
case SDL_PIXELFORMAT_BGR24:
Nov 15, 2009
Nov 15, 2009
581
582
583
*internalFormat = GL_RGB8;
*format = GL_BGR;
*type = GL_UNSIGNED_BYTE;
Jul 22, 2006
Jul 22, 2006
584
break;
Aug 5, 2006
Aug 5, 2006
585
case SDL_PIXELFORMAT_BGR888:
Nov 15, 2009
Nov 15, 2009
586
587
588
*internalFormat = GL_RGB8;
*format = GL_RGBA;
*type = GL_UNSIGNED_BYTE;
Jul 22, 2006
Jul 22, 2006
589
break;
Aug 5, 2006
Aug 5, 2006
590
case SDL_PIXELFORMAT_ARGB8888:
Aug 12, 2007
Aug 12, 2007
591
#ifdef __MACOSX__
Nov 15, 2009
Nov 15, 2009
592
593
594
*internalFormat = GL_RGBA;
*format = GL_BGRA;
*type = GL_UNSIGNED_INT_8_8_8_8_REV;
Aug 12, 2007
Aug 12, 2007
595
#else
Nov 15, 2009
Nov 15, 2009
596
597
598
*internalFormat = GL_RGBA8;
*format = GL_BGRA;
*type = GL_UNSIGNED_BYTE;
Aug 12, 2007
Aug 12, 2007
599
#endif
Jul 22, 2006
Jul 22, 2006
600
break;
Aug 5, 2006
Aug 5, 2006
601
case SDL_PIXELFORMAT_ABGR8888:
Nov 15, 2009
Nov 15, 2009
602
603
604
*internalFormat = GL_RGBA8;
*format = GL_RGBA;
*type = GL_UNSIGNED_BYTE;
Jul 22, 2006
Jul 22, 2006
605
break;
Aug 5, 2006
Aug 5, 2006
606
case SDL_PIXELFORMAT_ARGB2101010:
Nov 15, 2009
Nov 15, 2009
607
608
609
*internalFormat = GL_RGB10_A2;
*format = GL_BGRA;
*type = GL_UNSIGNED_INT_2_10_10_10_REV;
Jul 22, 2006
Jul 22, 2006
610
break;
Dec 6, 2008
Dec 6, 2008
611
case SDL_PIXELFORMAT_UYVY:
Dec 7, 2008
Dec 7, 2008
612
if (renderdata->GL_APPLE_ycbcr_422_supported) {
Nov 15, 2009
Nov 15, 2009
613
614
*internalFormat = GL_RGB;
*format = GL_YCBCR_422_APPLE;
Dec 7, 2008
Dec 7, 2008
615
#if SDL_BYTEORDER == SDL_LIL_ENDIAN
Nov 15, 2009
Nov 15, 2009
616
*type = GL_UNSIGNED_SHORT_8_8_APPLE;
Dec 7, 2008
Dec 7, 2008
617
#else
Nov 15, 2009
Nov 15, 2009
618
*type = GL_UNSIGNED_SHORT_8_8_REV_APPLE;
Dec 7, 2008
Dec 7, 2008
619
620
#endif
} else if (renderdata->GL_MESA_ycbcr_texture_supported) {
Nov 26, 2009
Nov 26, 2009
621
*internalFormat = GL_YCBCR_MESA;
Nov 15, 2009
Nov 15, 2009
622
*format = GL_YCBCR_MESA;
Dec 7, 2008
Dec 7, 2008
623
#if SDL_BYTEORDER == SDL_LIL_ENDIAN
Nov 15, 2009
Nov 15, 2009
624
*type = GL_UNSIGNED_SHORT_8_8_MESA;
Dec 7, 2008
Dec 7, 2008
625
#else
Nov 15, 2009
Nov 15, 2009
626
*type = GL_UNSIGNED_SHORT_8_8_REV_MESA;
Dec 7, 2008
Dec 7, 2008
627
628
#endif
} else if (renderdata->GL_ARB_fragment_program_supported) {
Nov 15, 2009
Nov 15, 2009
629
630
631
*internalFormat = GL_RGBA;
*format = GL_RGBA;
*type = GL_UNSIGNED_BYTE;
Dec 6, 2008
Dec 6, 2008
632
} else {
Nov 15, 2009
Nov 15, 2009
633
return SDL_FALSE;
Dec 6, 2008
Dec 6, 2008
634
635
}
break;
Dec 7, 2008
Dec 7, 2008
636
637
case SDL_PIXELFORMAT_YUY2:
if (renderdata->GL_APPLE_ycbcr_422_supported) {
Nov 15, 2009
Nov 15, 2009
638
639
*internalFormat = GL_RGB;
*format = GL_YCBCR_422_APPLE;
Dec 7, 2008
Dec 7, 2008
640
#if SDL_BYTEORDER == SDL_LIL_ENDIAN
Nov 15, 2009
Nov 15, 2009
641
*type = GL_UNSIGNED_SHORT_8_8_REV_APPLE;
Dec 7, 2008
Dec 7, 2008
642
#else
Nov 15, 2009
Nov 15, 2009
643
*type = GL_UNSIGNED_SHORT_8_8_APPLE;
Dec 7, 2008
Dec 7, 2008
644
645
#endif
} else if (renderdata->GL_MESA_ycbcr_texture_supported) {
Nov 26, 2009
Nov 26, 2009
646
*internalFormat = GL_YCBCR_MESA;
Nov 15, 2009
Nov 15, 2009
647
*format = GL_YCBCR_MESA;
Dec 7, 2008
Dec 7, 2008
648
#if SDL_BYTEORDER == SDL_LIL_ENDIAN
Nov 15, 2009
Nov 15, 2009
649
*type = GL_UNSIGNED_SHORT_8_8_REV_MESA;
Dec 7, 2008
Dec 7, 2008
650
#else
Nov 15, 2009
Nov 15, 2009
651
*type = GL_UNSIGNED_SHORT_8_8_MESA;
Dec 6, 2008
Dec 6, 2008
652
#endif
Dec 7, 2008
Dec 7, 2008
653
} else {
Nov 15, 2009
Nov 15, 2009
654
return SDL_FALSE;
Dec 7, 2008
Dec 7, 2008
655
656
}
break;
Jul 22, 2006
Jul 22, 2006
657
default:
Nov 15, 2009
Nov 15, 2009
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
return SDL_FALSE;
}
return SDL_TRUE;
}
static int
GL_CreateTexture(SDL_Renderer * renderer, SDL_Texture * texture)
{
GL_RenderData *renderdata = (GL_RenderData *) renderer->driverdata;
GL_TextureData *data;
GLint internalFormat;
GLenum format, type;
int texture_w, texture_h;
GLuint shader = 0;
GLenum result;
Feb 2, 2011
Feb 2, 2011
674
675
GL_ActivateRenderer(renderer);
Nov 15, 2009
Nov 15, 2009
676
677
if (!convert_format(renderdata, texture->format, &internalFormat,
&format, &type)) {
Jan 13, 2011
Jan 13, 2011
678
679
SDL_SetError("Texture format %s not supported by OpenGL",
SDL_GetPixelFormatName(texture->format));
Jul 22, 2006
Jul 22, 2006
680
681
return -1;
}
Nov 15, 2009
Nov 15, 2009
682
683
684
685
686
687
688
689
690
if (texture->format == SDL_PIXELFORMAT_UYVY &&
!renderdata->GL_APPLE_ycbcr_422_supported &&
!renderdata->GL_MESA_ycbcr_texture_supported &&
renderdata->GL_ARB_fragment_program_supported) {
if (renderdata->fragment_program_UYVY == 0) {
renderdata->fragment_program_UYVY =
compile_shader(renderdata, GL_FRAGMENT_PROGRAM_ARB,
fragment_program_UYVY_source_code);
if (renderdata->fragment_program_UYVY == 0) {
Nov 21, 2009
Nov 21, 2009
691
set_shader_error(renderdata, "UYVY");
Nov 15, 2009
Nov 15, 2009
692
693
694
695
696
return -1;
}
}
shader = renderdata->fragment_program_UYVY;
}
Jul 19, 2006
Jul 19, 2006
697
Jul 22, 2006
Jul 22, 2006
698
data = (GL_TextureData *) SDL_calloc(1, sizeof(*data));
Jul 19, 2006
Jul 19, 2006
699
700
701
702
703
if (!data) {
SDL_OutOfMemory();
return -1;
}
Dec 6, 2008
Dec 6, 2008
704
705
data->shader = shader;
Aug 11, 2007
Aug 11, 2007
706
if (texture->access == SDL_TEXTUREACCESS_STREAMING) {
Dec 6, 2008
Dec 6, 2008
707
data->pitch = texture->w * bytes_per_pixel(texture->format);
Aug 11, 2007
Aug 11, 2007
708
709
710
711
712
713
714
715
data->pixels = SDL_malloc(texture->h * data->pitch);
if (!data->pixels) {
SDL_OutOfMemory();
SDL_free(data);
return -1;
}
}
Jul 19, 2006
Jul 19, 2006
716
717
texture->driverdata = data;
Jul 22, 2006
Jul 22, 2006
718
719
renderdata->glGetError();
renderdata->glGenTextures(1, &data->texture);
Jul 22, 2006
Jul 22, 2006
720
721
722
723
if (renderdata->GL_ARB_texture_rectangle_supported) {
data->type = GL_TEXTURE_RECTANGLE_ARB;
texture_w = texture->w;
texture_h = texture->h;
Dec 6, 2008
Dec 6, 2008
724
725
data->texw = (GLfloat) texture_w;
data->texh = (GLfloat) texture_h;
Jul 22, 2006
Jul 22, 2006
726
727
728
729
} else {
data->type = GL_TEXTURE_2D;
texture_w = power_of_2(texture->w);
texture_h = power_of_2(texture->h);
Dec 6, 2008
Dec 6, 2008
730
data->texw = (GLfloat) (texture->w) / texture_w;
Jul 22, 2006
Jul 22, 2006
731
732
data->texh = (GLfloat) texture->h / texture_h;
}
Dec 6, 2008
Dec 6, 2008
733
Dec 6, 2008
Dec 6, 2008
734
735
/* YUV formats use RGBA but are really two bytes per pixel */
if (internalFormat == GL_RGBA && bytes_per_pixel(texture->format) < 4) {
Feb 17, 2010
Feb 17, 2010
736
737
738
739
texture_w /= 2;
if (data->type == GL_TEXTURE_2D) {
data->texw *= 2.0f;
}
Dec 20, 2008
Dec 20, 2008
740
data->HACK_RYAN_FIXME = 2;
Dec 6, 2008
Dec 6, 2008
741
} else {
Dec 20, 2008
Dec 20, 2008
742
data->HACK_RYAN_FIXME = 1;
Dec 6, 2008
Dec 6, 2008
743
744
}
Jul 22, 2006
Jul 22, 2006
745
746
data->format = format;
data->formattype = type;
Dec 20, 2008
Dec 20, 2008
747
renderdata->glEnable(data->type);
Jul 22, 2006
Jul 22, 2006
748
renderdata->glBindTexture(data->type, data->texture);
Aug 12, 2007
Aug 12, 2007
749
renderdata->glTexParameteri(data->type, GL_TEXTURE_MIN_FILTER,
Feb 1, 2011
Feb 1, 2011
750
GL_LINEAR);
Aug 12, 2007
Aug 12, 2007
751
renderdata->glTexParameteri(data->type, GL_TEXTURE_MAG_FILTER,
Feb 1, 2011
Feb 1, 2011
752
GL_LINEAR);
Aug 12, 2007
Aug 12, 2007
753
754
755
756
renderdata->glTexParameteri(data->type, GL_TEXTURE_WRAP_S,
GL_CLAMP_TO_EDGE);
renderdata->glTexParameteri(data->type, GL_TEXTURE_WRAP_T,
GL_CLAMP_TO_EDGE);
Dec 6, 2008
Dec 6, 2008
757
#ifdef __MACOSX__
Aug 12, 2007
Aug 12, 2007
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
#ifndef GL_TEXTURE_STORAGE_HINT_APPLE
#define GL_TEXTURE_STORAGE_HINT_APPLE 0x85BC
#endif
#ifndef STORAGE_CACHED_APPLE
#define STORAGE_CACHED_APPLE 0x85BE
#endif
#ifndef STORAGE_SHARED_APPLE
#define STORAGE_SHARED_APPLE 0x85BF
#endif
if (texture->access == SDL_TEXTUREACCESS_STREAMING) {
renderdata->glTexParameteri(data->type, GL_TEXTURE_STORAGE_HINT_APPLE,
GL_STORAGE_SHARED_APPLE);
} else {
renderdata->glTexParameteri(data->type, GL_TEXTURE_STORAGE_HINT_APPLE,
GL_STORAGE_CACHED_APPLE);
}
Nov 29, 2008
Nov 29, 2008
774
775
/* This causes a crash in testoverlay for some reason. Apple bug? */
#if 0
Jan 8, 2008
Jan 8, 2008
776
777
if (texture->access == SDL_TEXTUREACCESS_STREAMING
&& texture->format == SDL_PIXELFORMAT_ARGB8888) {
Aug 13, 2007
Aug 13, 2007
778
/*
Jan 8, 2008
Jan 8, 2008
779
780
781
782
783
784
if (renderdata->glTextureRangeAPPLE) {
renderdata->glTextureRangeAPPLE(data->type,
texture->h * data->pitch,
data->pixels);
}
*/
Aug 12, 2007
Aug 12, 2007
785
786
787
788
renderdata->glPixelStorei(GL_UNPACK_CLIENT_STORAGE_APPLE, GL_TRUE);
renderdata->glTexImage2D(data->type, 0, internalFormat, texture_w,
texture_h, 0, format, type, data->pixels);
} else
Nov 29, 2008
Nov 29, 2008
789
#endif
Aug 12, 2007
Aug 12, 2007
790
791
792
793
794
#endif
{
renderdata->glTexImage2D(data->type, 0, internalFormat, texture_w,
texture_h, 0, format, type, NULL);
}
Jan 14, 2009
Jan 14, 2009
795
renderdata->glDisable(data->type);
Jul 22, 2006
Jul 22, 2006
796
result = renderdata->glGetError();
Jul 22, 2006
Jul 22, 2006
797
798
799
800
if (result != GL_NO_ERROR) {
GL_SetError("glTexImage2D()", result);
return -1;
}
Jul 19, 2006
Jul 19, 2006
801
802
803
return 0;
}
Aug 11, 2007
Aug 11, 2007
804
805
806
807
808
809
810
811
812
813
814
static int
GL_QueryTexturePixels(SDL_Renderer * renderer, SDL_Texture * texture,
void **pixels, int *pitch)
{
GL_TextureData *data = (GL_TextureData *) texture->driverdata;
*pixels = data->pixels;
*pitch = data->pitch;
return 0;
}
Jul 22, 2006
Jul 22, 2006
815
static void
Jul 22, 2006
Jul 22, 2006
816
817
SetupTextureUpdate(GL_RenderData * renderdata, SDL_Texture * texture,
int pitch)
Jul 22, 2006
Jul 22, 2006
818
{
Jul 22, 2006
Jul 22, 2006
819
renderdata->glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
Nov 29, 2008
Nov 29, 2008
820
renderdata->glPixelStorei(GL_UNPACK_ROW_LENGTH,
Dec 20, 2008
Dec 20, 2008
821
(pitch / bytes_per_pixel(texture->format)) /
Jan 10, 2009
Jan 10, 2009
822
823
((GL_TextureData *) texture->driverdata)->
HACK_RYAN_FIXME);
Jul 22, 2006
Jul 22, 2006
824
825
}
Jul 19, 2006
Jul 19, 2006
826
827
828
829
static int
GL_UpdateTexture(SDL_Renderer * renderer, SDL_Texture * texture,
const SDL_Rect * rect, const void *pixels, int pitch)
{
Jul 22, 2006
Jul 22, 2006
830
GL_RenderData *renderdata = (GL_RenderData *) renderer->driverdata;
Jul 19, 2006
Jul 19, 2006
831
GL_TextureData *data = (GL_TextureData *) texture->driverdata;
Jul 22, 2006
Jul 22, 2006
832
GLenum result;
Jul 19, 2006
Jul 19, 2006
833
Feb 2, 2011
Feb 2, 2011
834
835
GL_ActivateRenderer(renderer);
Jul 22, 2006
Jul 22, 2006
836
837
renderdata->glGetError();
SetupTextureUpdate(renderdata, texture, pitch);
Dec 20, 2008
Dec 20, 2008
838
renderdata->glEnable(data->type);
Jul 22, 2006
Jul 22, 2006
839
840
841
842
renderdata->glBindTexture(data->type, data->texture);
renderdata->glTexSubImage2D(data->type, 0, rect->x, rect->y, rect->w,
rect->h, data->format, data->formattype,
pixels);
Jan 14, 2009
Jan 14, 2009
843
renderdata->glDisable(data->type);
Jul 22, 2006
Jul 22, 2006
844
result = renderdata->glGetError();
Jul 22, 2006
Jul 22, 2006
845
846
847
848
if (result != GL_NO_ERROR) {
GL_SetError("glTexSubImage2D()", result);
return -1;
}
Jul 19, 2006
Jul 19, 2006
849
850
851
852
853
854
855
856
857
858
return 0;
}
static int
GL_LockTexture(SDL_Renderer * renderer, SDL_Texture * texture,
const SDL_Rect * rect, int markDirty, void **pixels,
int *pitch)
{
GL_TextureData *data = (GL_TextureData *) texture->driverdata;
Jul 22, 2006
Jul 22, 2006
859
860
if (markDirty) {
SDL_AddDirtyRect(&data->dirty, rect);
Jul 19, 2006
Jul 19, 2006
861
}
Jul 22, 2006
Jul 22, 2006
862
863
864
*pixels =
(void *) ((Uint8 *) data->pixels + rect->y * data->pitch +
Dec 6, 2008
Dec 6, 2008
865
rect->x * bytes_per_pixel(texture->format));
Jul 22, 2006
Jul 22, 2006
866
*pitch = data->pitch;
Jul 19, 2006
Jul 19, 2006
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
return 0;
}
static void
GL_UnlockTexture(SDL_Renderer * renderer, SDL_Texture * texture)
{
}
static void
GL_DirtyTexture(SDL_Renderer * renderer, SDL_Texture * texture, int numrects,
const SDL_Rect * rects)
{
GL_TextureData *data = (GL_TextureData *) texture->driverdata;
int i;
for (i = 0; i < numrects; ++i) {
Jul 22, 2006
Jul 22, 2006
883
SDL_AddDirtyRect(&data->dirty, &rects[i]);
Jul 19, 2006
Jul 19, 2006
884
885
886
}
}
Dec 31, 2008
Dec 31, 2008
887
static void
Feb 1, 2011
Feb 1, 2011
888
GL_SetBlendMode(GL_RenderData * data, int blendMode)
Dec 31, 2008
Dec 31, 2008
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
{
if (blendMode != data->blendMode) {
switch (blendMode) {
case SDL_BLENDMODE_NONE:
data->glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
data->glDisable(GL_BLEND);
break;
case SDL_BLENDMODE_BLEND:
data->glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
data->glEnable(GL_BLEND);
data->glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
break;
case SDL_BLENDMODE_ADD:
data->glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
data->glEnable(GL_BLEND);
data->glBlendFunc(GL_SRC_ALPHA, GL_ONE);
break;
}
data->blendMode = blendMode;
}
}
Dec 20, 2008
Dec 20, 2008
911
static int
Dec 23, 2009
Dec 23, 2009
912
913
914
915
GL_RenderClear(SDL_Renderer * renderer)
{
GL_RenderData *data = (GL_RenderData *) renderer->driverdata;
Feb 2, 2011
Feb 2, 2011
916
917
GL_ActivateRenderer(renderer);
Dec 23, 2009
Dec 23, 2009
918
919
920
921
922
923
924
925
926
927
928
929
930
data->glClearColor((GLfloat) renderer->r * inv255f,
(GLfloat) renderer->g * inv255f,
(GLfloat) renderer->b * inv255f,
(GLfloat) renderer->a * inv255f);
data->glClear(GL_COLOR_BUFFER_BIT);
return 0;
}
static int
GL_RenderDrawPoints(SDL_Renderer * renderer, const SDL_Point * points,
int count)
Jul 19, 2006
Jul 19, 2006
931
932
{
GL_RenderData *data = (GL_RenderData *) renderer->driverdata;
Dec 9, 2009
Dec 9, 2009
933
int i;
Dec 30, 2008
Dec 30, 2008
934
Feb 2, 2011
Feb 2, 2011
935
936
GL_ActivateRenderer(renderer);
Feb 1, 2011
Feb 1, 2011
937
GL_SetBlendMode(data, renderer->blendMode);
Jul 19, 2006
Jul 19, 2006
938
Dec 20, 2008
Dec 20, 2008
939
940
941
942
data->glColor4f((GLfloat) renderer->r * inv255f,
(GLfloat) renderer->g * inv255f,
(GLfloat) renderer->b * inv255f,
(GLfloat) renderer->a * inv255f);
Dec 30, 2008
Dec 30, 2008
943
944
data->glBegin(GL_POINTS);
Dec 9, 2009
Dec 9, 2009
945
946
947
for (i = 0; i < count; ++i) {
data->glVertex2f(0.5f + points[i].x, 0.5f + points[i].y);
}
Dec 30, 2008
Dec 30, 2008
948
data->glEnd();
Dec 20, 2008
Dec 20, 2008
949
950
951
952
return 0;
}
Dec 21, 2008
Dec 21, 2008
953
static int
Dec 23, 2009
Dec 23, 2009
954
955
GL_RenderDrawLines(SDL_Renderer * renderer, const SDL_Point * points,
int count)
Dec 21, 2008
Dec 21, 2008
956
957
{
GL_RenderData *data = (GL_RenderData *) renderer->driverdata;
Dec 9, 2009
Dec 9, 2009
958
int i;
Dec 21, 2008
Dec 21, 2008
959
Feb 2, 2011
Feb 2, 2011
960
961
GL_ActivateRenderer(renderer);
Feb 1, 2011
Feb 1, 2011
962
GL_SetBlendMode(data, renderer->blendMode);
Dec 21, 2008
Dec 21, 2008
963
964
965
966
967
968
data->glColor4f((GLfloat) renderer->r * inv255f,
(GLfloat) renderer->g * inv255f,
(GLfloat) renderer->b * inv255f,
(GLfloat) renderer->a * inv255f);
Dec 9, 2009
Dec 9, 2009
969
970
971
972
973
974
975
976
977
978
if (count > 2 &&
points[0].x == points[count-1].x && points[0].y == points[count-1].y) {
data->glBegin(GL_LINE_LOOP);
/* GL_LINE_LOOP takes care of the final segment */
--count;
for (i = 0; i < count; ++i) {
data->glVertex2f(0.5f + points[i].x, 0.5f + points[i].y);
}
data->glEnd();
} else {
Jan 24, 2011
Jan 24, 2011
979
#if defined(__APPLE__) || defined(__WIN32__)
Nov 20, 2010
Nov 20, 2010
980
#else
Oct 17, 2010
Oct 17, 2010
981
int x1, y1, x2, y2;
Nov 20, 2010
Nov 20, 2010
982
#endif
Oct 17, 2010
Oct 17, 2010
983
Dec 9, 2009
Dec 9, 2009
984
985
986
987
988
989
990
991
992
993
994
995
996
997
data->glBegin(GL_LINE_STRIP);
for (i = 0; i < count; ++i) {
data->glVertex2f(0.5f + points[i].x, 0.5f + points[i].y);
}
data->glEnd();
/* The line is half open, so we need one more point to complete it.
* http://www.opengl.org/documentation/specs/version1.1/glspec1.1/node47.html
* If we have to, we can use vertical line and horizontal line textures
* for vertical and horizontal lines, and then create custom textures
* for diagonal lines and software render those. It's terrible, but at
* least it would be pixel perfect.
*/
data->glBegin(GL_POINTS);
Jan 24, 2011
Jan 24, 2011
998
#if defined(__APPLE__) || defined(__WIN32__)
Dec 9, 2009
Dec 9, 2009
999
1000
/* Mac OS X and Windows seem to always leave the second point open */
data->glVertex2f(0.5f + points[count-1].x, 0.5f + points[count-1].y);