RetroArch/gfx/gl.c

2532 lines
71 KiB
C
Raw Normal View History

2012-04-21 21:13:50 +00:00
/* RetroArch - A frontend for libretro.
2013-01-01 00:37:37 +00:00
* Copyright (C) 2010-2013 - Hans-Kristian Arntzen
* Copyright (C) 2011-2013 - Daniel De Matteis
2013-03-11 06:13:11 +00:00
* Copyright (C) 2012-2013 - Michael Lelli
2010-05-28 16:22:06 +00:00
*
2012-04-21 21:13:50 +00:00
* RetroArch is free software: you can redistribute it and/or modify it under the terms
2010-05-28 16:22:06 +00:00
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
2012-04-21 21:13:50 +00:00
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
2010-05-28 16:22:06 +00:00
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
2012-04-21 21:31:57 +00:00
* You should have received a copy of the GNU General Public License along with RetroArch.
2010-05-28 16:22:06 +00:00
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifdef _MSC_VER
2012-11-15 08:40:31 +00:00
#pragma comment(lib, "opengl32")
#endif
2011-11-30 17:31:09 +00:00
#include "../driver.h"
#include "../performance.h"
#include "scaler/scaler.h"
#include "image.h"
2010-05-28 00:45:18 +00:00
#include <stdint.h>
2012-04-07 09:55:37 +00:00
#include "../libretro.h"
2010-05-28 00:45:18 +00:00
#include <stdio.h>
2010-12-26 03:15:12 +00:00
#include <string.h>
2011-11-30 17:31:09 +00:00
#include "../general.h"
2011-03-06 18:56:35 +00:00
#include <math.h>
2011-01-07 16:59:53 +00:00
#ifdef HAVE_CONFIG_H
2010-12-30 11:54:16 +00:00
#include "config.h"
2011-01-07 16:59:53 +00:00
#endif
2010-05-28 00:45:18 +00:00
#include "gl_common.h"
2011-03-26 17:34:58 +00:00
#include "gfx_common.h"
#include "gfx_context.h"
2012-03-16 22:26:57 +00:00
#include "../compat/strl.h"
2010-11-12 22:09:43 +00:00
#ifdef HAVE_CG
#include "shader_cg.h"
#endif
#ifdef HAVE_GLSL
#include "shader_glsl.h"
2010-11-12 22:09:43 +00:00
#endif
2010-11-12 21:32:38 +00:00
2012-11-14 22:11:48 +00:00
#include "shader_common.h"
#ifdef ANDROID
#include "../frontend/frontend_android.h"
#endif
// Used for the last pass when rendering to the back buffer.
const GLfloat vertexes_flipped[] = {
0, 1,
1, 1,
0, 0,
1, 0
};
// Used when rendering to an FBO.
// Texture coords have to be aligned with vertex coordinates.
static const GLfloat vertexes[] = {
0, 0,
1, 0,
0, 1,
1, 1
};
static const GLfloat tex_coords[] = {
2010-11-08 23:13:57 +00:00
0, 0,
2010-11-12 21:32:38 +00:00
1, 0,
0, 1,
2010-11-12 21:32:38 +00:00
1, 1
2010-11-08 23:13:57 +00:00
};
2012-12-23 17:36:58 +00:00
#ifdef HAVE_OVERLAY
2013-01-05 08:06:17 +00:00
static void gl_render_overlay(void *data);
static void gl_overlay_vertex_geom(void *data,
float x, float y, float w, float h);
static void gl_overlay_tex_geom(void *data,
float x, float y, float w, float h);
2012-12-23 17:36:58 +00:00
#endif
static inline void set_texture_coords(GLfloat *coords, GLfloat xamt, GLfloat yamt)
{
coords[2] = xamt;
coords[6] = xamt;
coords[5] = yamt;
coords[7] = yamt;
}
2012-05-27 10:26:43 +00:00
const GLfloat white_color[] = {
2011-11-12 14:51:37 +00:00
1, 1, 1, 1,
1, 1, 1, 1,
1, 1, 1, 1,
1, 1, 1, 1,
};
const GLfloat *vertex_ptr = vertexes_flipped;
const GLfloat *default_vertex_ptr = vertexes_flipped;
#undef LOAD_GL_SYM
2012-09-12 18:24:57 +00:00
#define LOAD_GL_SYM(SYM) if (!pgl##SYM) { \
gfx_ctx_proc_t sym = gl->ctx_driver->get_proc_address("gl" #SYM); \
2012-09-12 18:24:57 +00:00
memcpy(&(pgl##SYM), &sym, sizeof(sym)); \
}
2012-10-21 10:20:53 +00:00
#if defined(HAVE_EGL) && defined(HAVE_OPENGLES2)
2012-10-20 08:58:02 +00:00
static PFNGLEGLIMAGETARGETTEXTURE2DOESPROC pglEGLImageTargetTexture2DOES;
static bool load_eglimage_proc(gl_t *gl)
{
LOAD_GL_SYM(EGLImageTargetTexture2DOES);
return pglEGLImageTargetTexture2DOES;
}
#endif
2013-05-03 12:04:29 +00:00
#ifdef HAVE_GL_SYNC
static PFNGLFENCESYNCPROC pglFenceSync;
static PFNGLDELETESYNCPROC pglDeleteSync;
static PFNGLCLIENTWAITSYNCPROC pglClientWaitSync;
static bool load_sync_proc(gl_t *gl)
{
if (!gl_query_extension("ARB_sync"))
return false;
LOAD_GL_SYM(FenceSync);
LOAD_GL_SYM(DeleteSync);
LOAD_GL_SYM(ClientWaitSync);
return pglFenceSync && pglDeleteSync && pglClientWaitSync;
}
#endif
2011-03-23 22:48:13 +00:00
#ifdef HAVE_FBO
#if defined(_WIN32) && !defined(RARCH_CONSOLE)
2012-10-20 08:58:02 +00:00
static PFNGLGENFRAMEBUFFERSPROC pglGenFramebuffers;
static PFNGLBINDFRAMEBUFFERPROC pglBindFramebuffer;
static PFNGLFRAMEBUFFERTEXTURE2DPROC pglFramebufferTexture2D;
static PFNGLCHECKFRAMEBUFFERSTATUSPROC pglCheckFramebufferStatus;
static PFNGLDELETEFRAMEBUFFERSPROC pglDeleteFramebuffers;
2013-03-29 01:50:42 +00:00
static PFNGLGENRENDERBUFFERSPROC pglGenRenderbuffers;
static PFNGLBINDRENDERBUFFERPROC pglBindRenderbuffer;
static PFNGLFRAMEBUFFERRENDERBUFFERPROC pglFramebufferRenderbuffer;
static PFNGLRENDERBUFFERSTORAGEPROC pglRenderbufferStorage;
static PFNGLDELETERENDERBUFFERSPROC pglDeleteRenderbuffers;
2011-03-06 21:18:25 +00:00
2012-09-24 23:26:22 +00:00
static bool load_fbo_proc(gl_t *gl)
2011-03-06 21:18:25 +00:00
{
2012-09-12 18:26:59 +00:00
LOAD_GL_SYM(GenFramebuffers);
LOAD_GL_SYM(BindFramebuffer);
LOAD_GL_SYM(FramebufferTexture2D);
LOAD_GL_SYM(CheckFramebufferStatus);
LOAD_GL_SYM(DeleteFramebuffers);
2013-03-29 01:50:42 +00:00
LOAD_GL_SYM(GenRenderbuffers);
LOAD_GL_SYM(BindRenderbuffer);
LOAD_GL_SYM(FramebufferRenderbuffer);
LOAD_GL_SYM(RenderbufferStorage);
LOAD_GL_SYM(DeleteRenderbuffers);
2011-03-06 21:18:25 +00:00
return pglGenFramebuffers && pglBindFramebuffer && pglFramebufferTexture2D &&
2013-03-29 01:50:42 +00:00
pglCheckFramebufferStatus && pglDeleteFramebuffers &&
pglGenRenderbuffers && pglBindRenderbuffer &&
pglFramebufferRenderbuffer && pglRenderbufferStorage &&
pglDeleteRenderbuffers;
2011-03-06 21:18:25 +00:00
}
2012-09-15 13:17:34 +00:00
#elif defined(HAVE_OPENGLES2)
#define pglGenFramebuffers glGenFramebuffers
#define pglBindFramebuffer glBindFramebuffer
#define pglFramebufferTexture2D glFramebufferTexture2D
#define pglCheckFramebufferStatus glCheckFramebufferStatus
#define pglDeleteFramebuffers glDeleteFramebuffers
2013-03-29 01:50:42 +00:00
#define pglGenRenderbuffers glGenRenderbuffers
#define pglBindRenderbuffer glBindRenderbuffer
#define pglFramebufferRenderbuffer glFramebufferRenderbuffer
#define pglRenderbufferStorage glRenderbufferStorage
#define pglDeleteRenderbuffers glDeleteRenderbuffers
2012-09-24 23:26:22 +00:00
#define load_fbo_proc(gl) (true)
#elif defined(HAVE_OPENGLES)
#define pglGenFramebuffers glGenFramebuffersOES
#define pglBindFramebuffer glBindFramebufferOES
#define pglFramebufferTexture2D glFramebufferTexture2DOES
#define pglCheckFramebufferStatus glCheckFramebufferStatusOES
#define pglDeleteFramebuffers glDeleteFramebuffersOES
2013-03-29 01:50:42 +00:00
#define pglGenRenderbuffers glGenRenderbuffersOES
#define pglBindRenderbuffer glBindRenderbufferOES
#define pglFramebufferRenderbuffer glFramebufferRenderbufferOES
#define pglRenderbufferStorage glRenderbufferStorageOES
#define pglDeleteRenderbuffers glDeleteRenderbuffersOES
2012-05-25 14:20:28 +00:00
#define GL_FRAMEBUFFER GL_FRAMEBUFFER_OES
#define GL_COLOR_ATTACHMENT0 GL_COLOR_ATTACHMENT0_EXT
#define GL_FRAMEBUFFER_COMPLETE GL_FRAMEBUFFER_COMPLETE_OES
2012-09-24 23:26:22 +00:00
#define load_fbo_proc(gl) (true)
2011-03-06 21:18:25 +00:00
#else
#define pglGenFramebuffers glGenFramebuffers
#define pglBindFramebuffer glBindFramebuffer
#define pglFramebufferTexture2D glFramebufferTexture2D
#define pglCheckFramebufferStatus glCheckFramebufferStatus
#define pglDeleteFramebuffers glDeleteFramebuffers
2013-03-29 01:50:42 +00:00
#define pglGenRenderbuffers glGenRenderbuffers
#define pglBindRenderbuffer glBindRenderbuffer
#define pglFramebufferRenderbuffer glFramebufferRenderbuffer
#define pglRenderbufferStorage glRenderbufferStorage
#define pglDeleteRenderbuffers glDeleteRenderbuffers
2012-09-24 23:26:22 +00:00
#define load_fbo_proc(gl) (true)
2011-03-06 21:18:25 +00:00
#endif
2011-03-23 22:48:13 +00:00
#endif
2011-03-06 21:18:25 +00:00
2012-08-16 08:09:44 +00:00
#ifdef _WIN32
PFNGLCLIENTACTIVETEXTUREPROC pglClientActiveTexture;
PFNGLACTIVETEXTUREPROC pglActiveTexture;
static PFNGLGENBUFFERSPROC pglGenBuffers;
static PFNGLGENBUFFERSPROC pglDeleteBuffers;
static PFNGLBINDBUFFERPROC pglBindBuffer;
2012-09-10 21:19:02 +00:00
static PFNGLBUFFERSUBDATAPROC pglBufferSubData;
static PFNGLBUFFERDATAPROC pglBufferData;
static PFNGLMAPBUFFERPROC pglMapBuffer;
static PFNGLUNMAPBUFFERPROC pglUnmapBuffer;
2012-09-24 23:26:22 +00:00
static inline bool load_gl_proc_win32(gl_t *gl)
2011-05-18 20:40:42 +00:00
{
2012-09-12 18:24:57 +00:00
LOAD_GL_SYM(ClientActiveTexture);
LOAD_GL_SYM(ActiveTexture);
LOAD_GL_SYM(GenBuffers);
LOAD_GL_SYM(DeleteBuffers);
2012-09-12 18:24:57 +00:00
LOAD_GL_SYM(BindBuffer);
LOAD_GL_SYM(BufferSubData);
LOAD_GL_SYM(BufferData);
LOAD_GL_SYM(MapBuffer);
LOAD_GL_SYM(UnmapBuffer);
return pglClientActiveTexture && pglActiveTexture &&
pglGenBuffers && pglDeleteBuffers &&
pglBindBuffer && pglBufferSubData && pglBufferData &&
pglMapBuffer && pglUnmapBuffer;
2011-05-18 20:40:42 +00:00
}
#else
#define pglGenBuffers glGenBuffers
#define pglDeleteBuffers glDeleteBuffers
#define pglBindBuffer glBindBuffer
#define pglBufferSubData glBufferSubData
#define pglBufferData glBufferData
#define pglMapBuffer glMapBuffer
#define pglUnmapBuffer glUnmapBuffer
2011-05-18 20:40:42 +00:00
#endif
#if defined(__APPLE__) || defined(HAVE_PSGL)
2013-03-29 00:23:30 +00:00
#define GL_RGBA32F GL_RGBA32F_ARB
#endif
2011-01-22 23:27:20 +00:00
////////////////// Shaders
2012-09-15 13:37:08 +00:00
2013-01-05 08:06:17 +00:00
static bool gl_shader_init(void *data)
{
2013-01-05 08:06:17 +00:00
gl_t *gl = (gl_t*)data;
const gl_shader_backend_t *backend = NULL;
const char *shader_path = (g_settings.video.shader_enable && *g_settings.video.shader_path) ?
g_settings.video.shader_path : NULL;
enum rarch_shader_type type = gfx_shader_parse_type(shader_path, DEFAULT_SHADER_TYPE);
if (type == RARCH_SHADER_NONE)
2013-04-07 00:18:59 +00:00
{
RARCH_LOG("[GL]: Not loading any shader.\n");
return true;
2013-04-07 00:18:59 +00:00
}
switch (type)
{
#ifdef HAVE_CG
2012-04-21 21:25:32 +00:00
case RARCH_SHADER_CG:
2013-04-07 00:18:59 +00:00
RARCH_LOG("[GL]: Using Cg shader backend.\n");
2013-04-06 18:50:22 +00:00
backend = &gl_cg_backend;
break;
#endif
#ifdef HAVE_GLSL
case RARCH_SHADER_GLSL:
2013-04-07 00:18:59 +00:00
RARCH_LOG("[GL]: Using GLSL shader backend.\n");
2013-04-06 18:50:22 +00:00
backend = &gl_glsl_backend;
break;
#endif
default:
break;
}
if (!backend)
2013-04-07 00:18:59 +00:00
{
RARCH_ERR("[GL]: Didn't find valid shader backend. Continuing without shaders.\n");
return true;
2013-04-07 00:18:59 +00:00
}
gl->shader = backend;
bool ret = gl->shader->init(shader_path);
if (!ret)
{
RARCH_ERR("[GL]: Failed to init shader, falling back to stock.\n");
ret = gl->shader->init(NULL);
}
return ret;
}
2013-01-05 08:06:17 +00:00
static inline void gl_shader_deinit(void *data)
{
2013-01-05 08:06:17 +00:00
gl_t *gl = (gl_t*)data;
if (gl->shader)
gl->shader->deinit();
gl->shader = NULL;
}
#ifndef NO_GL_FF_VERTEX
static void gl_set_coords(const struct gl_coords *coords)
{
2013-04-06 09:26:06 +00:00
pglClientActiveTexture(GL_TEXTURE1);
glTexCoordPointer(2, GL_FLOAT, 0, coords->lut_tex_coord);
glEnableClientState(GL_TEXTURE_COORD_ARRAY);
2013-04-06 09:26:06 +00:00
pglClientActiveTexture(GL_TEXTURE0);
glVertexPointer(2, GL_FLOAT, 0, coords->vertex);
glEnableClientState(GL_VERTEX_ARRAY);
glColorPointer(4, GL_FLOAT, 0, coords->color);
glEnableClientState(GL_COLOR_ARRAY);
glTexCoordPointer(2, GL_FLOAT, 0, coords->tex_coord);
glEnableClientState(GL_TEXTURE_COORD_ARRAY);
2013-04-06 09:26:06 +00:00
}
2013-04-06 09:26:06 +00:00
static void gl_disable_client_arrays(void)
{
pglClientActiveTexture(GL_TEXTURE1);
2013-04-06 09:26:06 +00:00
glDisableClientState(GL_TEXTURE_COORD_ARRAY);
pglClientActiveTexture(GL_TEXTURE0);
2013-04-06 09:26:06 +00:00
glDisableClientState(GL_VERTEX_ARRAY);
glDisableClientState(GL_COLOR_ARRAY);
glDisableClientState(GL_TEXTURE_COORD_ARRAY);
}
#endif
#ifndef NO_GL_FF_MATRIX
2013-01-05 08:06:17 +00:00
static void gl_set_mvp(const void *data)
{
2013-01-05 08:06:17 +00:00
const math_matrix *mat = (const math_matrix*)data;
glMatrixMode(GL_PROJECTION);
glLoadMatrixf(mat->data);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
}
#endif
void gl_shader_set_coords(void *data, const struct gl_coords *coords, const math_matrix *mat)
{
gl_t *gl = (gl_t*)data;
bool ret_coords = false;
bool ret_mvp = false;
2012-11-15 21:29:02 +00:00
(void)ret_coords;
(void)ret_mvp;
2012-11-15 16:17:55 +00:00
if (gl->shader)
ret_coords = gl->shader->set_coords(coords);
if (gl->shader)
ret_mvp = gl->shader->set_mvp(mat);
// Fall back to FF-style if needed and possible.
#ifndef NO_GL_FF_VERTEX
if (!ret_coords)
gl_set_coords(coords);
#endif
#ifndef NO_GL_FF_MATRIX
if (!ret_mvp)
gl_set_mvp(mat);
#endif
}
#define gl_shader_num(gl) ((gl->shader) ? gl->shader->num_shaders() : 0)
#define gl_shader_filter_type(gl, index, smooth) ((gl->shader) ? gl->shader->filter_type(index, smooth) : false)
#ifdef IOS
// There is no default frame buffer on IOS.
void ios_bind_game_view_fbo(void);
#define gl_bind_backbuffer() ios_bind_game_view_fbo()
#else
#define gl_bind_backbuffer() pglBindFramebuffer(GL_FRAMEBUFFER, 0)
#endif
2011-03-23 22:48:13 +00:00
#ifdef HAVE_FBO
static void gl_shader_scale(void *data, unsigned index, struct gfx_fbo_scale *scale)
2011-03-14 20:28:30 +00:00
{
2013-01-05 08:06:17 +00:00
gl_t *gl = (gl_t*)data;
scale->valid = false;
if (gl->shader)
gl->shader->shader_scale(index, scale);
2011-03-14 20:28:30 +00:00
}
2011-01-22 23:27:20 +00:00
2013-01-05 08:06:17 +00:00
static void gl_compute_fbo_geometry(void *data, unsigned width, unsigned height,
2012-08-10 04:50:41 +00:00
unsigned vp_width, unsigned vp_height)
{
2013-01-05 08:06:17 +00:00
gl_t *gl = (gl_t*)data;
2012-08-10 04:50:41 +00:00
unsigned last_width = width;
unsigned last_height = height;
unsigned last_max_width = gl->tex_w;
unsigned last_max_height = gl->tex_h;
GLint max_size = 0;
glGetIntegerv(GL_MAX_TEXTURE_SIZE, &max_size);
bool size_modified = false;
2012-08-10 04:50:41 +00:00
// Calculate viewports for FBOs.
for (int i = 0; i < gl->fbo_pass; i++)
{
switch (gl->fbo_scale[i].type_x)
{
case RARCH_SCALE_INPUT:
gl->fbo_rect[i].img_width = last_width * gl->fbo_scale[i].scale_x;
gl->fbo_rect[i].max_img_width = last_max_width * gl->fbo_scale[i].scale_x;
break;
case RARCH_SCALE_ABSOLUTE:
gl->fbo_rect[i].img_width = gl->fbo_rect[i].max_img_width = gl->fbo_scale[i].abs_x;
break;
case RARCH_SCALE_VIEWPORT:
gl->fbo_rect[i].img_width = gl->fbo_rect[i].max_img_width = gl->fbo_scale[i].scale_x * vp_width;
break;
default:
break;
}
switch (gl->fbo_scale[i].type_y)
{
case RARCH_SCALE_INPUT:
gl->fbo_rect[i].img_height = last_height * gl->fbo_scale[i].scale_y;
gl->fbo_rect[i].max_img_height = last_max_height * gl->fbo_scale[i].scale_y;
break;
case RARCH_SCALE_ABSOLUTE:
gl->fbo_rect[i].img_height = gl->fbo_rect[i].max_img_height = gl->fbo_scale[i].abs_y;
break;
case RARCH_SCALE_VIEWPORT:
gl->fbo_rect[i].img_height = gl->fbo_rect[i].max_img_height = gl->fbo_scale[i].scale_y * vp_height;
break;
default:
break;
}
2012-10-26 19:09:30 +00:00
if (gl->fbo_rect[i].img_width > (unsigned)max_size)
{
size_modified = true;
gl->fbo_rect[i].img_width = max_size;
}
2012-10-26 19:09:30 +00:00
if (gl->fbo_rect[i].img_height > (unsigned)max_size)
{
size_modified = true;
gl->fbo_rect[i].img_height = max_size;
}
2012-10-26 19:09:30 +00:00
if (gl->fbo_rect[i].max_img_width > (unsigned)max_size)
{
size_modified = true;
gl->fbo_rect[i].max_img_width = max_size;
}
2012-10-26 19:09:30 +00:00
if (gl->fbo_rect[i].max_img_height > (unsigned)max_size)
{
size_modified = true;
gl->fbo_rect[i].max_img_height = max_size;
}
if (size_modified)
RARCH_WARN("FBO textures exceeded maximum size of GPU (%ux%u). Resizing to fit.\n", max_size, max_size);
2012-08-10 04:50:41 +00:00
last_width = gl->fbo_rect[i].img_width;
last_height = gl->fbo_rect[i].img_height;
last_max_width = gl->fbo_rect[i].max_img_width;
last_max_height = gl->fbo_rect[i].max_img_height;
}
}
2012-01-31 23:14:04 +00:00
2013-01-05 08:06:17 +00:00
static void gl_create_fbo_textures(void *data)
2012-01-31 23:14:04 +00:00
{
2013-01-05 08:06:17 +00:00
gl_t *gl = (gl_t*)data;
2012-01-31 23:14:04 +00:00
glGenTextures(gl->fbo_pass, gl->fbo_texture);
2013-04-13 23:45:33 +00:00
GLuint base_filt = g_settings.video.smooth ? GL_LINEAR : GL_NEAREST;
2012-01-31 23:14:04 +00:00
for (int i = 0; i < gl->fbo_pass; i++)
{
glBindTexture(GL_TEXTURE_2D, gl->fbo_texture[i]);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, gl->border_type);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, gl->border_type);
2012-01-31 23:14:04 +00:00
GLuint filter_type = base_filt;
2012-05-27 16:40:07 +00:00
bool smooth = false;
if (gl_shader_filter_type(gl, i + 2, &smooth))
2012-01-31 23:14:04 +00:00
filter_type = smooth ? GL_LINEAR : GL_NEAREST;
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, filter_type);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, filter_type);
2013-03-25 15:42:41 +00:00
bool fp_fbo = gl->fbo_scale[i].valid && gl->fbo_scale[i].fp_fbo;
if (fp_fbo)
{
// GLES and GL are inconsistent in which arguments to pass.
#ifdef HAVE_OPENGLES2
bool has_fp_fbo = gl_query_extension("OES_texture_float_linear");
if (!has_fp_fbo)
RARCH_ERR("OES_texture_float_linear extension not found.\n");
RARCH_LOG("FBO pass #%d is floating-point.\n", i);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA,
gl->fbo_rect[i].width, gl->fbo_rect[i].height,
0, GL_RGBA, GL_FLOAT, NULL);
#else
2013-03-25 15:42:41 +00:00
bool has_fp_fbo = gl_query_extension("ARB_texture_float");
if (!has_fp_fbo)
RARCH_ERR("ARB_texture_float extension was not found.\n");
RARCH_LOG("FBO pass #%d is floating-point.\n", i);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA32F,
gl->fbo_rect[i].width, gl->fbo_rect[i].height,
0, GL_RGBA, GL_UNSIGNED_BYTE, NULL);
2013-04-07 02:17:44 +00:00
#endif
2013-03-25 15:42:41 +00:00
}
else
{
#ifdef HAVE_OPENGLES2
2013-03-25 15:42:41 +00:00
glTexImage2D(GL_TEXTURE_2D,
0, GL_RGBA,
gl->fbo_rect[i].width, gl->fbo_rect[i].height, 0,
GL_RGBA, GL_UNSIGNED_BYTE, NULL);
#else
// Avoid potential performance reductions on particular platforms.
glTexImage2D(GL_TEXTURE_2D,
0, RARCH_GL_INTERNAL_FORMAT32,
gl->fbo_rect[i].width, gl->fbo_rect[i].height, 0,
RARCH_GL_TEXTURE_TYPE32, RARCH_GL_FORMAT32, NULL);
#endif
2013-03-25 15:42:41 +00:00
}
2012-01-31 23:14:04 +00:00
}
glBindTexture(GL_TEXTURE_2D, 0);
}
2013-01-05 08:06:17 +00:00
static bool gl_create_fbo_targets(void *data)
2012-01-31 23:14:04 +00:00
{
2013-01-05 08:06:17 +00:00
gl_t *gl = (gl_t*)data;
2012-12-10 12:18:10 +00:00
glBindTexture(GL_TEXTURE_2D, 0);
2012-01-31 23:14:04 +00:00
pglGenFramebuffers(gl->fbo_pass, gl->fbo);
for (int i = 0; i < gl->fbo_pass; i++)
{
pglBindFramebuffer(GL_FRAMEBUFFER, gl->fbo[i]);
pglFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, gl->fbo_texture[i], 0);
GLenum status = pglCheckFramebufferStatus(GL_FRAMEBUFFER);
if (status != GL_FRAMEBUFFER_COMPLETE)
goto error;
}
return true;
error:
pglDeleteFramebuffers(gl->fbo_pass, gl->fbo);
2012-04-21 21:25:32 +00:00
RARCH_ERR("Failed to set up frame buffer objects. Multi-pass shading will not work.\n");
2012-01-31 23:14:04 +00:00
return false;
}
void gl_deinit_fbo(void *data)
2012-01-31 23:14:04 +00:00
{
gl_t *gl = (gl_t*)data;
2012-01-31 23:14:04 +00:00
if (gl->fbo_inited)
{
glDeleteTextures(gl->fbo_pass, gl->fbo_texture);
pglDeleteFramebuffers(gl->fbo_pass, gl->fbo);
memset(gl->fbo_texture, 0, sizeof(gl->fbo_texture));
memset(gl->fbo, 0, sizeof(gl->fbo));
gl->fbo_inited = false;
gl->fbo_pass = 0;
}
}
void gl_init_fbo(void *data, unsigned width, unsigned height)
2011-03-06 18:56:35 +00:00
{
gl_t *gl = (gl_t*)data;
if (gl_shader_num(gl) == 0)
2013-04-07 08:26:34 +00:00
return;
struct gfx_fbo_scale scale, scale_last;
gl_shader_scale(gl, 1, &scale);
gl_shader_scale(gl, gl_shader_num(gl), &scale_last);
/* we always want FBO to be at least initialized on startup for consoles */
if (gl_shader_num(gl) == 1 && !scale.valid)
2011-03-06 18:56:35 +00:00
return;
2012-09-24 23:26:22 +00:00
if (!load_fbo_proc(gl))
2011-03-06 23:03:10 +00:00
{
2012-04-21 21:25:32 +00:00
RARCH_ERR("Failed to locate FBO functions. Won't be able to use render-to-texture.\n");
2011-03-06 21:18:25 +00:00
return;
2011-03-06 23:03:10 +00:00
}
2011-03-06 21:18:25 +00:00
gl->fbo_pass = gl_shader_num(gl) - 1;
if (scale_last.valid)
2011-03-14 22:20:51 +00:00
gl->fbo_pass++;
2011-03-23 10:05:18 +00:00
if (!scale.valid)
2011-03-15 17:14:01 +00:00
{
scale.scale_x = 1.0f;
scale.scale_y = 1.0f;
2012-04-21 21:25:32 +00:00
scale.type_x = scale.type_y = RARCH_SCALE_INPUT;
2012-01-31 23:14:04 +00:00
scale.valid = true;
2011-03-15 17:14:01 +00:00
}
gl->fbo_scale[0] = scale;
2011-03-27 18:29:47 +00:00
2011-03-15 17:14:01 +00:00
for (int i = 1; i < gl->fbo_pass; i++)
2011-03-14 22:20:51 +00:00
{
gl_shader_scale(gl, i + 1, &gl->fbo_scale[i]);
2012-01-31 23:14:04 +00:00
if (!gl->fbo_scale[i].valid)
2011-03-14 22:20:51 +00:00
{
2012-01-31 23:14:04 +00:00
gl->fbo_scale[i].scale_x = gl->fbo_scale[i].scale_y = 1.0f;
2012-04-21 21:25:32 +00:00
gl->fbo_scale[i].type_x = gl->fbo_scale[i].type_y = RARCH_SCALE_INPUT;
2012-01-31 23:14:04 +00:00
gl->fbo_scale[i].valid = true;
2011-03-14 22:20:51 +00:00
}
}
2012-01-31 23:14:04 +00:00
gl_compute_fbo_geometry(gl, width, height, gl->win_width, gl->win_height);
2011-03-12 15:33:01 +00:00
for (int i = 0; i < gl->fbo_pass; i++)
2011-03-06 18:56:35 +00:00
{
2012-01-31 23:14:04 +00:00
gl->fbo_rect[i].width = next_pow2(gl->fbo_rect[i].img_width);
gl->fbo_rect[i].height = next_pow2(gl->fbo_rect[i].img_height);
2012-04-21 21:25:32 +00:00
RARCH_LOG("Creating FBO %d @ %ux%u\n", i, gl->fbo_rect[i].width, gl->fbo_rect[i].height);
2011-03-06 18:56:35 +00:00
}
2011-03-14 20:28:30 +00:00
2012-01-31 23:14:04 +00:00
gl_create_fbo_textures(gl);
if (!gl_create_fbo_targets(gl))
2011-03-06 18:56:35 +00:00
{
2012-01-31 23:14:04 +00:00
glDeleteTextures(gl->fbo_pass, gl->fbo_texture);
2012-11-18 14:04:42 +00:00
RARCH_ERR("Failed to create FBO targets. Will continue without FBO.\n");
2012-01-31 23:14:04 +00:00
return;
2011-03-06 18:56:35 +00:00
}
2011-03-12 15:33:01 +00:00
gl->fbo_inited = true;
}
2013-03-27 15:15:15 +00:00
#ifndef HAVE_RGL
// GLES and GL inconsistency.
#ifndef GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT
#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_EXT
#endif
#ifndef GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS
#define GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_EXT
#endif
#ifndef GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT
#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_EXT
#endif
#ifndef GL_FRAMEBUFFER_UNSUPPORTED
#define GL_FRAMEBUFFER_UNSUPPORTED GL_FRAMEBUFFER_UNSUPPORTED_EXT
#endif
2013-03-29 01:12:08 +00:00
bool gl_init_hw_render(gl_t *gl, unsigned width, unsigned height)
2013-03-27 15:15:15 +00:00
{
RARCH_LOG("[GL]: Initializing HW render (%u x %u).\n", width, height);
GLint max_fbo_size = 0;
GLint max_renderbuffer_size = 0;
glGetIntegerv(GL_MAX_TEXTURE_SIZE, &max_fbo_size);
glGetIntegerv(GL_MAX_RENDERBUFFER_SIZE, &max_renderbuffer_size);
RARCH_LOG("[GL]: Max texture size: %d px, renderbuffer size: %u px.\n", max_fbo_size, max_renderbuffer_size);
2013-03-27 15:15:15 +00:00
2013-03-29 01:12:08 +00:00
if (!load_fbo_proc(gl))
return false;
2013-03-27 15:15:15 +00:00
glBindTexture(GL_TEXTURE_2D, 0);
pglGenFramebuffers(TEXTURES, gl->hw_render_fbo);
bool depth = g_extern.system.hw_render_callback.depth;
2013-03-29 01:50:42 +00:00
if (depth)
{
pglGenRenderbuffers(TEXTURES, gl->hw_render_depth);
gl->hw_render_depth_init = true;
}
2013-03-27 15:15:15 +00:00
for (unsigned i = 0; i < TEXTURES; i++)
{
pglBindFramebuffer(GL_FRAMEBUFFER, gl->hw_render_fbo[i]);
pglFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, gl->texture[i], 0);
2013-03-29 01:50:42 +00:00
if (depth)
{
pglBindRenderbuffer(GL_RENDERBUFFER, gl->hw_render_depth[i]);
pglRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH_COMPONENT16,
width, height);
pglBindRenderbuffer(GL_RENDERBUFFER, 0);
2013-03-29 01:50:42 +00:00
pglFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT,
GL_RENDERBUFFER, gl->hw_render_depth[i]);
}
2013-03-27 15:15:15 +00:00
GLenum status = pglCheckFramebufferStatus(GL_FRAMEBUFFER);
if (status != GL_FRAMEBUFFER_COMPLETE)
2013-03-29 01:12:08 +00:00
{
2013-05-18 15:51:10 +00:00
RARCH_ERR("[GL]: Failed to create HW render FBO #%u.\n", i);
const char *err = NULL;
switch (status)
{
2013-05-18 15:51:10 +00:00
case GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT: err = "Incomplete Attachment"; break;
case GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS: err = "Incomplete Dimensions"; break;
case GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT: err = "Missing Attachment"; break;
case GL_FRAMEBUFFER_UNSUPPORTED: err = "Unsupported"; break;
default: err = "Unknown"; break;
}
RARCH_ERR("[GL]: Error: %s.\n", err);
2013-03-29 01:12:08 +00:00
return false;
}
2013-03-27 15:15:15 +00:00
}
gl_bind_backbuffer();
2013-03-27 15:15:15 +00:00
gl->hw_render_fbo_init = true;
2013-03-29 01:12:08 +00:00
return true;
2013-03-27 15:15:15 +00:00
}
2012-01-30 19:22:36 +00:00
#endif
#endif
void gl_set_projection(void *data, struct gl_ortho *ortho, bool allow_rotate)
{
gl_t *gl = (gl_t*)data;
// Calculate projection.
matrix_ortho(&gl->mvp_no_rot, ortho->left, ortho->right,
ortho->bottom, ortho->top, ortho->znear, ortho->zfar);
if (allow_rotate)
{
math_matrix rot;
matrix_rotate_z(&rot, M_PI * gl->rotation / 180.0f);
matrix_multiply(&gl->mvp, &rot, &gl->mvp_no_rot);
}
else
gl->mvp = gl->mvp_no_rot;
2012-04-01 17:20:37 +00:00
}
void gl_set_viewport(void *data, unsigned width, unsigned height, bool force_full, bool allow_rotate)
2012-04-01 17:20:37 +00:00
{
gl_t *gl = (gl_t*)data;
int x = 0, y = 0;
struct gl_ortho ortho = {0, 1, 0, 1, -1, 1};
float device_aspect = 0.0f;
if (gl->ctx_driver->translate_aspect)
device_aspect = context_translate_aspect_func(width, height);
else
device_aspect = (float)width / height;
2013-01-29 18:28:33 +00:00
if (g_settings.video.scale_integer && !force_full)
{
gfx_scale_integer(&gl->vp, width, height, g_extern.system.aspect_ratio, gl->keep_aspect);
2013-04-18 06:57:38 +00:00
width = gl->vp.width;
height = gl->vp.height;
2013-01-29 18:28:33 +00:00
}
else if (gl->keep_aspect && !force_full)
{
float desired_aspect = g_extern.system.aspect_ratio;
float delta;
2013-04-07 16:03:25 +00:00
#if defined(HAVE_RGUI) || defined(HAVE_RMENU)
if (g_settings.video.aspect_ratio_idx == ASPECT_RATIO_CUSTOM)
{
const struct rarch_viewport *custom =
&g_extern.console.screen.viewports.custom_vp;
// GL has bottom-left origin viewport.
x = custom->x;
y = gl->win_height - custom->y - custom->height;
width = custom->width;
height = custom->height;
}
else
#endif
{
2012-05-27 21:14:46 +00:00
if (fabs(device_aspect - desired_aspect) < 0.0001)
{
// If the aspect ratios of screen and desired aspect ratio are sufficiently equal (floating point stuff),
// assume they are actually equal.
}
else if (device_aspect > desired_aspect)
{
delta = (desired_aspect / device_aspect - 1.0) / 2.0 + 0.5;
x = (unsigned)(width * (0.5 - delta));
2012-05-27 21:14:46 +00:00
width = (unsigned)(2.0 * width * delta);
}
else
{
delta = (device_aspect / desired_aspect - 1.0) / 2.0 + 0.5;
y = (unsigned)(height * (0.5 - delta));
2012-05-27 21:14:46 +00:00
height = (unsigned)(2.0 * height * delta);
}
}
2013-01-29 18:28:33 +00:00
gl->vp.x = x;
gl->vp.y = y;
gl->vp.width = width;
gl->vp.height = height;
}
else
{
gl->vp.x = gl->vp.y = 0;
gl->vp.width = width;
gl->vp.height = height;
}
2013-05-22 14:02:21 +00:00
#if defined(RARCH_MOBILE)
2013-01-24 23:20:55 +00:00
// In portrait mode, we want viewport to gravitate to top of screen.
if (device_aspect < 1.0f)
2013-01-29 18:28:33 +00:00
gl->vp.y *= 2;
#endif
2013-01-29 18:28:33 +00:00
glViewport(gl->vp.x, gl->vp.y, gl->vp.width, gl->vp.height);
gl_set_projection(gl, &ortho, allow_rotate);
2011-03-27 18:29:47 +00:00
// Set last backbuffer viewport.
if (!force_full)
{
gl->vp_out_width = width;
2011-03-27 18:29:47 +00:00
gl->vp_out_height = height;
}
2012-12-27 23:14:19 +00:00
//RARCH_LOG("Setting viewport @ %ux%u\n", width, height);
}
2012-04-01 17:20:37 +00:00
static void gl_set_rotation(void *data, unsigned rotation)
{
gl_t *gl = (gl_t*)data;
2012-05-27 21:33:31 +00:00
struct gl_ortho ortho = {0, 1, 0, 1, -1, 1};
2012-04-01 17:20:37 +00:00
gl->rotation = 90 * rotation;
gl_set_projection(gl, &ortho, true);
2012-04-01 17:20:37 +00:00
}
2012-01-31 23:14:04 +00:00
#ifdef HAVE_FBO
2013-01-05 08:06:17 +00:00
static inline void gl_start_frame_fbo(void *data)
2012-01-31 23:14:04 +00:00
{
2013-01-05 08:06:17 +00:00
gl_t *gl = (gl_t*)data;
glBindTexture(GL_TEXTURE_2D, gl->texture[gl->tex_index]);
2012-01-31 23:14:04 +00:00
pglBindFramebuffer(GL_FRAMEBUFFER, gl->fbo[0]);
2012-05-27 10:26:43 +00:00
gl_set_viewport(gl, gl->fbo_rect[0].img_width, gl->fbo_rect[0].img_height, true, false);
2012-01-31 23:14:04 +00:00
// Need to preserve the "flipped" state when in FBO as well to have
// consistent texture coordinates.
// We will "flip" it in place on last pass.
gl->coords.vertex = vertexes;
2012-01-31 23:14:04 +00:00
}
2013-01-05 08:06:17 +00:00
static void gl_check_fbo_dimensions(void *data)
2012-01-31 23:14:04 +00:00
{
2013-01-05 08:06:17 +00:00
gl_t *gl = (gl_t*)data;
2012-01-31 23:14:04 +00:00
// Check if we have to recreate our FBO textures.
for (int i = 0; i < gl->fbo_pass; i++)
2011-03-06 18:56:35 +00:00
{
2012-01-31 23:14:04 +00:00
// Check proactively since we might suddently get sizes of tex_w width or tex_h height.
if (gl->fbo_rect[i].max_img_width > gl->fbo_rect[i].width ||
gl->fbo_rect[i].max_img_height > gl->fbo_rect[i].height)
2011-03-14 22:48:19 +00:00
{
2012-01-31 23:14:04 +00:00
unsigned img_width = gl->fbo_rect[i].max_img_width;
unsigned img_height = gl->fbo_rect[i].max_img_height;
unsigned max = img_width > img_height ? img_width : img_height;
unsigned pow2_size = next_pow2(max);
gl->fbo_rect[i].width = gl->fbo_rect[i].height = pow2_size;
pglBindFramebuffer(GL_FRAMEBUFFER, gl->fbo[i]);
glBindTexture(GL_TEXTURE_2D, gl->fbo_texture[i]);
2012-01-31 23:14:04 +00:00
glTexImage2D(GL_TEXTURE_2D,
0, RARCH_GL_INTERNAL_FORMAT32, gl->fbo_rect[i].width, gl->fbo_rect[i].height,
0, RARCH_GL_TEXTURE_TYPE32,
2012-05-26 14:29:02 +00:00
RARCH_GL_FORMAT32, NULL);
2012-01-31 23:14:04 +00:00
pglFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, gl->fbo_texture[i], 0);
GLenum status = pglCheckFramebufferStatus(GL_FRAMEBUFFER);
if (status != GL_FRAMEBUFFER_COMPLETE)
2012-04-21 21:25:32 +00:00
RARCH_WARN("Failed to reinit FBO texture.\n");
2011-03-14 22:48:19 +00:00
2012-04-21 21:25:32 +00:00
RARCH_LOG("Recreating FBO texture #%d: %ux%u\n", i, gl->fbo_rect[i].width, gl->fbo_rect[i].height);
2012-01-31 23:14:04 +00:00
}
2011-03-06 18:56:35 +00:00
}
2012-01-31 23:14:04 +00:00
}
2011-03-14 22:48:19 +00:00
2013-01-05 08:06:17 +00:00
static void gl_frame_fbo(void *data, const struct gl_tex_info *tex_info)
2012-01-31 23:14:04 +00:00
{
2013-01-05 08:06:17 +00:00
gl_t *gl = (gl_t*)data;
2012-01-31 23:14:04 +00:00
GLfloat fbo_tex_coords[8] = {0.0f};
// Render the rest of our passes.
gl->coords.tex_coord = fbo_tex_coords;
2012-01-31 23:14:04 +00:00
// It's kinda handy ... :)
const struct gl_fbo_rect *prev_rect;
const struct gl_fbo_rect *rect;
struct gl_tex_info *fbo_info;
struct gl_tex_info fbo_tex_info[MAX_SHADERS];
unsigned fbo_tex_info_cnt = 0;
// Calculate viewports, texture coordinates etc, and render all passes from FBOs, to another FBO.
for (int i = 1; i < gl->fbo_pass; i++)
2011-01-06 19:01:32 +00:00
{
2012-01-31 23:14:04 +00:00
prev_rect = &gl->fbo_rect[i - 1];
rect = &gl->fbo_rect[i];
fbo_info = &fbo_tex_info[i - 1];
2011-09-11 13:33:28 +00:00
2012-01-31 23:14:04 +00:00
GLfloat xamt = (GLfloat)prev_rect->img_width / prev_rect->width;
GLfloat yamt = (GLfloat)prev_rect->img_height / prev_rect->height;
set_texture_coords(fbo_tex_coords, xamt, yamt);
fbo_info->tex = gl->fbo_texture[i - 1];
fbo_info->input_size[0] = prev_rect->img_width;
fbo_info->input_size[1] = prev_rect->img_height;
fbo_info->tex_size[0] = prev_rect->width;
fbo_info->tex_size[1] = prev_rect->height;
memcpy(fbo_info->coord, fbo_tex_coords, sizeof(fbo_tex_coords));
pglBindFramebuffer(GL_FRAMEBUFFER, gl->fbo[i]);
if (gl->shader)
gl->shader->use(i + 1);
2012-01-31 23:14:04 +00:00
glBindTexture(GL_TEXTURE_2D, gl->fbo_texture[i - 1]);
glClear(GL_COLOR_BUFFER_BIT);
// Render to FBO with certain size.
2012-05-27 10:26:43 +00:00
gl_set_viewport(gl, rect->img_width, rect->img_height, true, false);
if (gl->shader)
gl->shader->set_params(prev_rect->img_width, prev_rect->img_height,
2012-01-31 23:14:04 +00:00
prev_rect->width, prev_rect->height,
gl->vp.width, gl->vp.height, g_extern.frame_count,
2012-01-31 23:14:04 +00:00
tex_info, gl->prev_info, fbo_tex_info, fbo_tex_info_cnt);
gl_shader_set_coords(gl, &gl->coords, &gl->mvp);
2012-09-13 18:47:49 +00:00
glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
2012-01-31 23:14:04 +00:00
fbo_tex_info_cnt++;
}
// Render our last FBO texture directly to screen.
prev_rect = &gl->fbo_rect[gl->fbo_pass - 1];
GLfloat xamt = (GLfloat)prev_rect->img_width / prev_rect->width;
GLfloat yamt = (GLfloat)prev_rect->img_height / prev_rect->height;
set_texture_coords(fbo_tex_coords, xamt, yamt);
// Render our FBO texture to back buffer.
gl_bind_backbuffer();
if (gl->shader)
gl->shader->use(gl->fbo_pass + 1);
2012-01-31 23:14:04 +00:00
glBindTexture(GL_TEXTURE_2D, gl->fbo_texture[gl->fbo_pass - 1]);
glClear(GL_COLOR_BUFFER_BIT);
2012-05-27 10:26:43 +00:00
gl_set_viewport(gl, gl->win_width, gl->win_height, false, true);
if (gl->shader)
gl->shader->set_params(prev_rect->img_width, prev_rect->img_height,
2012-01-31 23:14:04 +00:00
prev_rect->width, prev_rect->height,
gl->vp.width, gl->vp.height, g_extern.frame_count,
2012-01-31 23:14:04 +00:00
tex_info, gl->prev_info, fbo_tex_info, fbo_tex_info_cnt);
gl->coords.vertex = vertex_ptr;
gl_shader_set_coords(gl, &gl->coords, &gl->mvp);
2012-09-13 18:47:49 +00:00
glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
2012-01-31 23:14:04 +00:00
gl->coords.tex_coord = gl->tex_coords;
2012-01-31 23:14:04 +00:00
}
#endif
2011-03-06 18:56:35 +00:00
2013-01-05 08:06:17 +00:00
static void gl_update_resize(void *data)
2012-01-31 23:14:04 +00:00
{
2013-01-05 08:06:17 +00:00
gl_t *gl = (gl_t*)data;
2011-03-23 22:48:13 +00:00
#ifdef HAVE_FBO
2012-11-18 20:34:22 +00:00
if (!gl->fbo_inited)
2012-05-27 10:26:43 +00:00
gl_set_viewport(gl, gl->win_width, gl->win_height, false, true);
2012-01-31 23:14:04 +00:00
else
{
gl_check_fbo_dimensions(gl);
// Go back to what we're supposed to do, render to FBO #0 :D
gl_start_frame_fbo(gl);
2011-01-06 19:01:32 +00:00
}
2012-01-31 23:14:04 +00:00
#else
2012-05-27 10:26:43 +00:00
gl_set_viewport(gl, gl->win_width, gl->win_height, false, true);
2012-01-31 23:14:04 +00:00
#endif
}
2011-01-06 19:01:32 +00:00
2013-03-27 15:15:15 +00:00
static void gl_update_input_size(void *data, unsigned width, unsigned height, unsigned pitch, bool clear)
2012-01-31 23:14:04 +00:00
{
2013-01-05 08:06:17 +00:00
gl_t *gl = (gl_t*)data;
2012-01-31 23:14:04 +00:00
// Res change. Need to clear out texture.
if ((width != gl->last_width[gl->tex_index] || height != gl->last_height[gl->tex_index]) && gl->empty_buf)
2010-12-26 03:15:12 +00:00
{
gl->last_width[gl->tex_index] = width;
gl->last_height[gl->tex_index] = height;
2013-03-27 15:15:15 +00:00
if (clear)
{
#if defined(HAVE_PSGL)
2013-03-27 15:15:15 +00:00
glBufferSubData(GL_TEXTURE_REFERENCE_BUFFER_SCE,
gl->tex_w * gl->tex_h * gl->tex_index * gl->base_size,
gl->tex_w * gl->tex_h * gl->base_size,
gl->empty_buf);
#else
2013-03-27 15:15:15 +00:00
glPixelStorei(GL_UNPACK_ALIGNMENT, get_alignment(width * sizeof(uint32_t)));
2013-03-27 15:15:15 +00:00
glTexSubImage2D(GL_TEXTURE_2D,
0, 0, 0, gl->tex_w, gl->tex_h, gl->texture_type,
gl->texture_fmt, gl->empty_buf);
#endif
2013-03-27 15:15:15 +00:00
}
2010-12-26 03:15:12 +00:00
2011-06-05 00:21:35 +00:00
GLfloat xamt = (GLfloat)width / gl->tex_w;
GLfloat yamt = (GLfloat)height / gl->tex_h;
2011-03-16 11:28:02 +00:00
2011-06-05 00:21:35 +00:00
set_texture_coords(gl->tex_coords, xamt, yamt);
2010-12-26 03:15:12 +00:00
}
2011-11-12 11:28:07 +00:00
// We might have used different texture coordinates last frame. Edge case if resolution changes very rapidly.
2012-01-31 23:14:04 +00:00
else if (width != gl->last_width[(gl->tex_index - 1) & TEXTURES_MASK] ||
height != gl->last_height[(gl->tex_index - 1) & TEXTURES_MASK])
{
GLfloat xamt = (GLfloat)width / gl->tex_w;
GLfloat yamt = (GLfloat)height / gl->tex_h;
set_texture_coords(gl->tex_coords, xamt, yamt);
}
2012-01-31 23:14:04 +00:00
}
// It is *much* faster (order of mangnitude on my setup) to use a custom SIMD-optimized conversion routine than letting GL do it :(
#if !defined(HAVE_PSGL) && !defined(HAVE_OPENGLES2)
2013-01-05 08:06:17 +00:00
static inline void gl_convert_frame_rgb16_32(void *data, void *output, const void *input, int width, int height, int in_pitch)
{
2013-01-05 08:06:17 +00:00
gl_t *gl = (gl_t*)data;
if (width != gl->scaler.in_width || height != gl->scaler.in_height)
{
gl->scaler.in_width = width;
gl->scaler.in_height = height;
gl->scaler.out_width = width;
gl->scaler.out_height = height;
gl->scaler.in_fmt = SCALER_FMT_RGB565;
gl->scaler.out_fmt = SCALER_FMT_ARGB8888;
gl->scaler.scaler_type = SCALER_TYPE_POINT;
scaler_ctx_gen_filter(&gl->scaler);
}
gl->scaler.in_stride = in_pitch;
gl->scaler.out_stride = width * sizeof(uint32_t);
scaler_ctx_scale(&gl->scaler, output, input);
}
#endif
#ifdef HAVE_OPENGLES2
2013-01-05 08:06:17 +00:00
static inline void gl_convert_frame_argb8888_abgr8888(void *data, void *output, const void *input,
int width, int height, int in_pitch)
{
2013-01-05 08:06:17 +00:00
gl_t *gl = (gl_t*)data;
if (width != gl->scaler.in_width || height != gl->scaler.in_height)
{
gl->scaler.in_width = width;
gl->scaler.in_height = height;
gl->scaler.out_width = width;
gl->scaler.out_height = height;
gl->scaler.in_fmt = SCALER_FMT_ARGB8888;
gl->scaler.out_fmt = SCALER_FMT_ABGR8888;
gl->scaler.scaler_type = SCALER_TYPE_POINT;
scaler_ctx_gen_filter(&gl->scaler);
}
gl->scaler.in_stride = in_pitch;
gl->scaler.out_stride = width * sizeof(uint32_t);
scaler_ctx_scale(&gl->scaler, output, input);
}
#endif
2013-01-05 08:06:17 +00:00
static void gl_init_textures_data(void *data)
2012-11-18 13:21:47 +00:00
{
2013-01-05 08:06:17 +00:00
gl_t *gl = (gl_t*)data;
2012-11-18 13:21:47 +00:00
for (unsigned i = 0; i < TEXTURES; i++)
{
gl->last_width[i] = gl->tex_w;
gl->last_height[i] = gl->tex_h;
}
for (unsigned i = 0; i < TEXTURES; i++)
{
gl->prev_info[i].tex = gl->texture[0];
2012-11-18 13:21:47 +00:00
gl->prev_info[i].input_size[0] = gl->tex_w;
gl->prev_info[i].tex_size[0] = gl->tex_w;
gl->prev_info[i].input_size[1] = gl->tex_h;
gl->prev_info[i].tex_size[1] = gl->tex_h;
memcpy(gl->prev_info[i].coord, tex_coords, sizeof(tex_coords));
}
}
2013-01-05 08:06:17 +00:00
static void gl_init_textures(void *data, const video_info_t *video)
2012-05-26 14:01:59 +00:00
{
2013-01-05 08:06:17 +00:00
gl_t *gl = (gl_t*)data;
#if defined(HAVE_EGL) && defined(HAVE_OPENGLES2)
// Use regular textures if we use HW render.
gl->egl_images = !gl->hw_render_use && load_eglimage_proc(gl) && context_init_egl_image_buffer_func(video);
#else
(void)video;
#endif
#ifdef HAVE_PSGL
if (!gl->pbo)
glGenBuffers(1, &gl->pbo);
glBindBuffer(GL_TEXTURE_REFERENCE_BUFFER_SCE, gl->pbo);
glBufferData(GL_TEXTURE_REFERENCE_BUFFER_SCE,
gl->tex_w * gl->tex_h * gl->base_size * TEXTURES, NULL, GL_STREAM_DRAW);
#endif
GLenum internal_fmt = gl->internal_fmt;
#ifndef HAVE_PSGL
GLenum texture_type = gl->texture_type;
GLenum texture_fmt = gl->texture_fmt;
#endif
// GLES is picky about which format we use here.
// Without extensions, we can *only* render to 16-bit FBOs.
#ifdef HAVE_OPENGLES2
if (gl->hw_render_use && gl->base_size == sizeof(uint32_t))
{
bool support_argb = gl_query_extension("OES_rgb8_rgba8") || gl_query_extension("ARM_argb8");
if (support_argb)
{
internal_fmt = GL_RGBA;
texture_type = GL_RGBA;
texture_fmt = GL_UNSIGNED_BYTE;
}
else
{
RARCH_WARN("[GL]: 32-bit FBO not supported. Falling back to 16-bit.\n");
internal_fmt = GL_RGB;
texture_type = GL_RGB;
texture_fmt = GL_UNSIGNED_SHORT_5_6_5;
}
}
#endif
2012-05-26 14:01:59 +00:00
glGenTextures(TEXTURES, gl->texture);
for (unsigned i = 0; i < TEXTURES; i++)
{
glBindTexture(GL_TEXTURE_2D, gl->texture[i]);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, gl->border_type);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, gl->border_type);
2012-05-26 14:01:59 +00:00
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, gl->tex_filter);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, gl->tex_filter);
#ifdef HAVE_PSGL
2012-05-26 14:01:59 +00:00
glTextureReferenceSCE(GL_TEXTURE_2D, 1,
gl->tex_w, gl->tex_h, 0,
internal_fmt,
2012-05-26 14:01:59 +00:00
gl->tex_w * gl->base_size,
gl->tex_w * gl->tex_h * i * gl->base_size);
#else
if (!gl->egl_images)
{
glTexImage2D(GL_TEXTURE_2D,
0, internal_fmt, gl->tex_w, gl->tex_h, 0, texture_type,
texture_fmt, gl->empty_buf ? gl->empty_buf : NULL);
}
#endif
2012-05-26 14:01:59 +00:00
}
glBindTexture(GL_TEXTURE_2D, gl->texture[gl->tex_index]);
}
2013-01-05 08:06:17 +00:00
static inline void gl_copy_frame(void *data, const void *frame, unsigned width, unsigned height, unsigned pitch)
{
2013-01-05 08:06:17 +00:00
gl_t *gl = (gl_t*)data;
#if defined(HAVE_OPENGLES2)
#if defined(HAVE_EGL)
if (gl->egl_images)
2012-09-15 13:17:34 +00:00
{
EGLImageKHR img = 0;
bool new_egl = context_write_egl_image_func(frame, width, height, pitch, (gl->base_size == 4), gl->tex_index, &img);
2012-10-20 08:58:02 +00:00
if (img == EGL_NO_IMAGE_KHR)
{
2012-10-20 08:58:02 +00:00
RARCH_ERR("[GL]: Failed to create EGL image.\n");
return;
}
2012-10-20 08:58:02 +00:00
if (new_egl)
pglEGLImageTargetTexture2DOES(GL_TEXTURE_2D, (GLeglImageOES)img);
}
else
#endif
{
glPixelStorei(GL_UNPACK_ALIGNMENT, get_alignment(width * gl->base_size));
// Fallback for GLES devices without GL_BGRA_EXT.
if (gl->base_size == 4 && driver.gfx_use_rgba)
{
gl_convert_frame_argb8888_abgr8888(gl, gl->conv_buffer, frame, width, height, pitch);
glTexSubImage2D(GL_TEXTURE_2D,
2012-09-29 18:06:48 +00:00
0, 0, 0, width, height, gl->texture_type,
gl->texture_fmt, gl->conv_buffer);
2012-09-29 18:06:48 +00:00
}
else
2012-09-29 18:06:48 +00:00
{
// No GL_UNPACK_ROW_LENGTH ;(
unsigned pitch_width = pitch / gl->base_size;
if (width == pitch_width) // Happy path :D
{
glTexSubImage2D(GL_TEXTURE_2D,
0, 0, 0, width, height, gl->texture_type,
gl->texture_fmt, frame);
}
else // Slower path.
{
const unsigned line_bytes = width * gl->base_size;
uint8_t *dst = (uint8_t*)gl->conv_buffer; // This buffer is preallocated for this purpose.
const uint8_t *src = (const uint8_t*)frame;
for (unsigned h = 0; h < height; h++, src += pitch, dst += line_bytes)
memcpy(dst, src, line_bytes);
glTexSubImage2D(GL_TEXTURE_2D,
0, 0, 0, width, height, gl->texture_type,
gl->texture_fmt, gl->conv_buffer);
}
}
}
#elif defined(HAVE_PSGL)
size_t buffer_addr = gl->tex_w * gl->tex_h * gl->tex_index * gl->base_size;
size_t buffer_stride = gl->tex_w * gl->base_size;
const uint8_t *frame_copy = frame;
size_t frame_copy_size = width * gl->base_size;
uint8_t *buffer = (uint8_t*)glMapBuffer(GL_TEXTURE_REFERENCE_BUFFER_SCE, GL_READ_WRITE) + buffer_addr;
for (unsigned h = 0; h < height; h++, buffer += buffer_stride, frame_copy += pitch)
memcpy(buffer, frame_copy, frame_copy_size);
glUnmapBuffer(GL_TEXTURE_REFERENCE_BUFFER_SCE);
2012-09-29 18:06:48 +00:00
#else
glPixelStorei(GL_UNPACK_ALIGNMENT, get_alignment(pitch));
if (gl->base_size == 2)
{
// Always use 32-bit textures on desktop GL.
gl_convert_frame_rgb16_32(gl, gl->conv_buffer, frame, width, height, pitch);
glTexSubImage2D(GL_TEXTURE_2D,
0, 0, 0, width, height, gl->texture_type,
gl->texture_fmt, gl->conv_buffer);
}
else
{
glPixelStorei(GL_UNPACK_ROW_LENGTH, pitch / gl->base_size);
glTexSubImage2D(GL_TEXTURE_2D,
0, 0, 0, width, height, gl->texture_type,
gl->texture_fmt, frame);
glPixelStorei(GL_UNPACK_ROW_LENGTH, 0);
}
#endif
}
2013-01-05 08:06:17 +00:00
static inline void gl_set_prev_texture(void *data, const struct gl_tex_info *tex_info)
2012-01-31 23:14:04 +00:00
{
2013-01-05 08:06:17 +00:00
gl_t *gl = (gl_t*)data;
2012-01-31 23:14:04 +00:00
memmove(gl->prev_info + 1, gl->prev_info, sizeof(*tex_info) * (TEXTURES - 1));
memcpy(&gl->prev_info[0], tex_info, sizeof(*tex_info));
}
2011-12-24 12:46:12 +00:00
2013-01-05 08:06:17 +00:00
static inline void gl_set_shader_viewport(void *data, unsigned shader)
{
2013-01-05 08:06:17 +00:00
gl_t *gl = (gl_t*)data;
if (gl->shader)
gl->shader->use(shader);
gl_set_viewport(gl, gl->win_width, gl->win_height, false, true);
}
#if !defined(HAVE_OPENGLES) && defined(HAVE_FFMPEG)
2013-01-05 08:06:17 +00:00
static void gl_pbo_async_readback(void *data)
{
2013-01-05 08:06:17 +00:00
gl_t *gl = (gl_t*)data;
pglBindBuffer(GL_PIXEL_PACK_BUFFER, gl->pbo_readback[gl->pbo_readback_index++]);
gl->pbo_readback_index &= 3;
// If set, we 3 rendered frames already buffered up.
gl->pbo_readback_valid |= gl->pbo_readback_index == 0;
glPixelStorei(GL_PACK_ROW_LENGTH, 0);
glPixelStorei(GL_PACK_ALIGNMENT, get_alignment(gl->vp.width * sizeof(uint32_t)));
// Read asynchronously into PBO buffer.
RARCH_PERFORMANCE_INIT(async_readback);
RARCH_PERFORMANCE_START(async_readback);
glReadBuffer(GL_BACK);
glReadPixels(gl->vp.x, gl->vp.y,
gl->vp.width, gl->vp.height,
GL_BGRA, GL_UNSIGNED_INT_8_8_8_8_REV, NULL);
RARCH_PERFORMANCE_STOP(async_readback);
pglBindBuffer(GL_PIXEL_PACK_BUFFER, 0);
}
#endif
2013-04-07 16:03:25 +00:00
#if defined(HAVE_RGUI) || defined(HAVE_RMENU)
static inline void gl_draw_texture(void *data)
{
gl_t *gl = (gl_t*)data;
if (!gl->rgui_texture)
return;
const GLfloat color[] = {
1.0f, 1.0f, 1.0f, gl->rgui_texture_alpha,
1.0f, 1.0f, 1.0f, gl->rgui_texture_alpha,
1.0f, 1.0f, 1.0f, gl->rgui_texture_alpha,
1.0f, 1.0f, 1.0f, gl->rgui_texture_alpha,
};
gl->coords.tex_coord = tex_coords;
gl->coords.color = color;
glBindTexture(GL_TEXTURE_2D, gl->rgui_texture);
if (gl->shader)
gl->shader->use(GL_SHADER_STOCK_BLEND);
gl_shader_set_coords(gl, &gl->coords, &gl->mvp_no_rot);
glEnable(GL_BLEND);
if (gl->rgui_texture_full_screen)
{
glViewport(0, 0, gl->win_width, gl->win_height);
glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
glViewport(gl->vp.x, gl->vp.y, gl->vp.width, gl->vp.height);
}
else
glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
glDisable(GL_BLEND);
gl->coords.tex_coord = gl->tex_coords;
gl->coords.color = white_color;
}
#endif
2012-01-31 23:14:04 +00:00
static bool gl_frame(void *data, const void *frame, unsigned width, unsigned height, unsigned pitch, const char *msg)
{
RARCH_PERFORMANCE_INIT(frame_run);
RARCH_PERFORMANCE_START(frame_run);
2012-01-31 23:14:04 +00:00
gl_t *gl = (gl_t*)data;
uint64_t lifecycle_mode_state = g_extern.lifecycle_mode_state;
(void)lifecycle_mode_state;
2011-05-26 10:53:24 +00:00
if (gl->shader)
gl->shader->use(1);
2011-05-26 10:53:24 +00:00
#ifdef IOS // Apparently the viewport is lost each frame, thanks apple.
gl_set_viewport(gl, gl->win_width, gl->win_height, false, true);
#endif
2011-03-23 22:48:13 +00:00
#ifdef HAVE_FBO
2012-01-31 23:14:04 +00:00
// Render to texture in first pass.
2011-03-06 18:56:35 +00:00
if (gl->fbo_inited)
{
2012-01-31 23:14:04 +00:00
// Recompute FBO geometry.
// When width/height changes or window sizes change, we have to recalcuate geometry of our FBO.
2012-01-31 23:14:04 +00:00
gl_compute_fbo_geometry(gl, width, height, gl->vp_out_width, gl->vp_out_height);
gl_start_frame_fbo(gl);
}
#endif
2012-01-31 23:14:04 +00:00
if (gl->should_resize)
{
gl->should_resize = false;
context_set_resize_func(gl->win_width, gl->win_height);
2012-01-31 23:14:04 +00:00
// On resize, we might have to recreate our FBOs due to "Viewport" scale, and set a new viewport.
gl_update_resize(gl);
}
2011-03-12 15:33:01 +00:00
if (frame) // Can be NULL for frame dupe / NULL render.
{
2012-12-10 12:18:10 +00:00
gl->tex_index = (gl->tex_index + 1) & TEXTURES_MASK;
glBindTexture(GL_TEXTURE_2D, gl->texture[gl->tex_index]);
2013-03-27 15:15:15 +00:00
#ifdef HAVE_FBO
// Data is already on GPU :) Have to reset some state however incase core changed it.
if (gl->hw_render_fbo_init)
{
gl_update_input_size(gl, width, height, pitch, false);
2012-10-01 21:59:11 +00:00
2013-03-27 15:15:15 +00:00
if (!gl->fbo_inited)
2013-03-27 15:22:56 +00:00
{
gl_bind_backbuffer();
2013-03-27 15:22:56 +00:00
gl_set_viewport(gl, gl->win_width, gl->win_height, false, true);
}
2013-03-27 15:15:15 +00:00
}
else
#endif
{
gl_update_input_size(gl, width, height, pitch, true);
RARCH_PERFORMANCE_INIT(copy_frame);
RARCH_PERFORMANCE_START(copy_frame);
gl_copy_frame(gl, frame, width, height, pitch);
RARCH_PERFORMANCE_STOP(copy_frame);
}
}
else
glBindTexture(GL_TEXTURE_2D, gl->texture[gl->tex_index]);
2013-03-28 11:13:41 +00:00
// Have to reset rendering state which libretro core could easily have overridden.
#ifdef HAVE_FBO
if (gl->hw_render_fbo_init)
{
#ifndef HAVE_OPENGLES
glEnable(GL_TEXTURE_2D);
#endif
glDisable(GL_DEPTH_TEST);
2013-03-29 13:11:53 +00:00
glDisable(GL_STENCIL_TEST);
2013-03-28 11:13:41 +00:00
glDisable(GL_CULL_FACE);
glDisable(GL_DITHER);
2013-05-22 19:41:10 +00:00
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
2013-03-28 11:13:41 +00:00
glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
}
#endif
2012-12-10 12:18:10 +00:00
struct gl_tex_info tex_info = {0};
tex_info.tex = gl->texture[gl->tex_index];
tex_info.input_size[0] = width;
tex_info.input_size[1] = height;
tex_info.tex_size[0] = gl->tex_w;
tex_info.tex_size[1] = gl->tex_h;
memcpy(tex_info.coord, gl->tex_coords, sizeof(gl->tex_coords));
2012-01-31 23:14:04 +00:00
glClear(GL_COLOR_BUFFER_BIT);
if (gl->shader)
gl->shader->set_params(width, height,
2012-01-31 23:14:04 +00:00
gl->tex_w, gl->tex_h,
gl->vp.width, gl->vp.height,
g_extern.frame_count,
2012-01-31 23:14:04 +00:00
&tex_info, gl->prev_info, NULL, 0);
gl_shader_set_coords(gl, &gl->coords, &gl->mvp);
2012-09-13 18:47:49 +00:00
glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
2012-01-31 23:14:04 +00:00
#ifdef HAVE_FBO
if (gl->fbo_inited)
gl_frame_fbo(gl, &tex_info);
2011-03-23 22:48:13 +00:00
#endif
2012-12-10 12:18:10 +00:00
gl_set_prev_texture(gl, &tex_info);
2013-04-07 16:03:25 +00:00
#if defined(HAVE_RGUI) || defined(HAVE_RMENU)
if (gl->rgui_texture_enable)
gl_draw_texture(gl);
#endif
2012-12-14 23:07:31 +00:00
if (msg && gl->font_ctx)
gl->font_ctx->render_msg(gl, msg, NULL);
2011-01-22 23:27:20 +00:00
2012-12-23 17:36:58 +00:00
#ifdef HAVE_OVERLAY
if (gl->overlay_enable)
gl_render_overlay(gl);
2012-12-23 17:36:58 +00:00
#endif
context_update_window_title_func();
RARCH_PERFORMANCE_STOP(frame_run);
2013-03-28 11:13:41 +00:00
#ifdef HAVE_FBO
// Reset state which could easily mess up libretro core.
if (gl->hw_render_fbo_init)
{
if (gl->shader)
gl->shader->use(0);
2013-03-28 11:13:41 +00:00
glBindTexture(GL_TEXTURE_2D, 0);
#ifndef NO_GL_FF_VERTEX
2013-04-06 09:26:06 +00:00
gl_disable_client_arrays();
2013-03-28 11:13:41 +00:00
#endif
}
#endif
#if !defined(HAVE_OPENGLES) && defined(HAVE_FFMPEG)
if (gl->pbo_readback_enable)
gl_pbo_async_readback(gl);
#endif
context_swap_buffers_func();
g_extern.frame_count++;
2010-05-28 00:45:18 +00:00
2013-05-03 12:04:29 +00:00
#ifdef HAVE_GL_SYNC
if (g_settings.video.hard_sync && gl->have_sync)
2013-05-03 12:04:29 +00:00
{
RARCH_PERFORMANCE_INIT(gl_fence);
RARCH_PERFORMANCE_START(gl_fence);
glClear(GL_COLOR_BUFFER_BIT);
gl->fences[gl->fence_count++] = pglFenceSync(GL_SYNC_GPU_COMMANDS_COMPLETE, 0);
while (gl->fence_count > g_settings.video.hard_sync_frames)
{
pglClientWaitSync(gl->fences[0], GL_SYNC_FLUSH_COMMANDS_BIT, 1000000000);
pglDeleteSync(gl->fences[0]);
gl->fence_count--;
memmove(gl->fences, gl->fences + 1, gl->fence_count * sizeof(GLsync));
}
2013-05-03 12:04:29 +00:00
RARCH_PERFORMANCE_STOP(gl_fence);
}
#endif
2010-05-28 00:45:18 +00:00
return true;
}
static void gl_free(void *data)
{
#ifdef RARCH_CONSOLE
if (driver.video_data)
return;
#endif
2011-12-24 12:46:12 +00:00
gl_t *gl = (gl_t*)data;
#ifdef HAVE_GL_SYNC
if (gl->have_sync)
{
for (unsigned i = 0; i < gl->fence_count; i++)
{
pglClientWaitSync(gl->fences[i], GL_SYNC_FLUSH_COMMANDS_BIT, 1000000000);
pglDeleteSync(gl->fences[i]);
}
gl->fence_count = 0;
}
#endif
2012-12-14 23:07:31 +00:00
if (gl->font_ctx)
gl->font_ctx->deinit(gl);
gl_shader_deinit(gl);
#ifndef NO_GL_FF_VERTEX
gl_disable_client_arrays();
#endif
2011-11-12 11:28:07 +00:00
glDeleteTextures(TEXTURES, gl->texture);
2012-12-23 17:36:58 +00:00
2013-04-07 16:03:25 +00:00
#if defined(HAVE_RGUI) || defined(HAVE_RMENU)
if (gl->rgui_texture)
glDeleteTextures(1, &gl->rgui_texture);
#endif
2012-12-23 17:36:58 +00:00
#ifdef HAVE_OVERLAY
if (gl->tex_overlay)
glDeleteTextures(1, &gl->tex_overlay);
2012-12-23 17:36:58 +00:00
#endif
2011-03-23 22:48:13 +00:00
#if defined(HAVE_PSGL)
glBindBuffer(GL_TEXTURE_REFERENCE_BUFFER_SCE, 0);
glDeleteBuffers(1, &gl->pbo);
#endif
scaler_ctx_gen_reset(&gl->scaler);
#if !defined(HAVE_OPENGLES) && defined(HAVE_FFMPEG)
if (gl->pbo_readback_enable)
{
pglDeleteBuffers(4, gl->pbo_readback);
scaler_ctx_gen_reset(&gl->pbo_readback_scaler);
}
#endif
2011-03-23 22:48:13 +00:00
#ifdef HAVE_FBO
2012-01-31 23:14:04 +00:00
gl_deinit_fbo(gl);
2013-03-27 15:15:15 +00:00
#ifndef HAVE_RGL
2013-03-27 15:15:15 +00:00
if (gl->hw_render_fbo_init)
pglDeleteFramebuffers(TEXTURES, gl->hw_render_fbo);
if (gl->hw_render_depth_init)
2013-03-29 01:50:42 +00:00
pglDeleteRenderbuffers(TEXTURES, gl->hw_render_depth);
2013-03-27 15:15:15 +00:00
gl->hw_render_fbo_init = false;
#endif
2011-03-23 22:48:13 +00:00
#endif
2012-01-31 23:14:04 +00:00
context_destroy_func();
2011-03-13 19:52:06 +00:00
2012-09-15 13:17:34 +00:00
free(gl->empty_buf);
free(gl->conv_buffer);
2011-03-13 19:52:06 +00:00
free(gl);
2010-05-28 00:45:18 +00:00
}
2010-08-16 16:40:17 +00:00
static void gl_set_nonblock_state(void *data, bool state)
{
RARCH_LOG("GL VSync => %s\n", state ? "off" : "on");
gl_t *gl = (gl_t*)data;
(void)gl;
context_swap_interval_func(state ? 0 : 1);
2010-08-16 16:40:17 +00:00
}
2012-12-27 11:33:23 +00:00
static bool resolve_extensions(gl_t *gl)
{
#ifdef _WIN32
// Win32 GL lib doesn't have some elementary functions needed.
// Need to load dynamically :(
2012-09-24 23:26:22 +00:00
if (!load_gl_proc_win32(gl))
return false;
#endif
2013-05-03 12:04:29 +00:00
#ifdef HAVE_GL_SYNC
gl->have_sync = load_sync_proc(gl);
if (gl->have_sync && g_settings.video.hard_sync)
2013-05-03 12:04:29 +00:00
RARCH_LOG("[GL]: Using ARB_sync to reduce latency.\n");
#endif
#ifdef NO_GL_CLAMP_TO_BORDER
2012-09-15 13:17:34 +00:00
// NOTE: This will be a serious problem for some shaders.
gl->border_type = GL_CLAMP_TO_EDGE;
#else
gl->border_type = GL_CLAMP_TO_BORDER;
#endif
driver.gfx_use_rgba = false;
2012-09-30 08:33:15 +00:00
#ifdef HAVE_OPENGLES2
if (gl_query_extension("BGRA8888"))
RARCH_LOG("[GL]: BGRA8888 extension found for GLES.\n");
else
2012-09-29 18:06:48 +00:00
{
driver.gfx_use_rgba = true;
RARCH_WARN("[GL]: GLES implementation does not have BGRA8888 extension.\n"
"32-bit path will require conversion.\n");
2012-09-29 18:06:48 +00:00
}
#endif
2012-09-23 09:54:51 +00:00
#if 0
2012-09-29 18:06:48 +00:00
// Useful for debugging, but kinda obnoxious.
2012-09-15 13:17:34 +00:00
const char *ext = (const char*)glGetString(GL_EXTENSIONS);
if (ext)
RARCH_LOG("[GL] Supported extensions: %s\n", ext);
2012-09-23 09:54:51 +00:00
#endif
2012-09-15 13:17:34 +00:00
return true;
}
2013-01-05 08:06:17 +00:00
static inline void gl_set_texture_fmts(void *data, bool rgb32)
{
2013-01-05 08:06:17 +00:00
gl_t *gl = (gl_t*)data;
gl->internal_fmt = rgb32 ? RARCH_GL_INTERNAL_FORMAT32 : RARCH_GL_INTERNAL_FORMAT16;
gl->texture_type = rgb32 ? RARCH_GL_TEXTURE_TYPE32 : RARCH_GL_TEXTURE_TYPE16;
gl->texture_fmt = rgb32 ? RARCH_GL_FORMAT32 : RARCH_GL_FORMAT16;
gl->base_size = rgb32 ? sizeof(uint32_t) : sizeof(uint16_t);
if (driver.gfx_use_rgba && rgb32)
{
gl->internal_fmt = GL_RGBA;
gl->texture_type = GL_RGBA;
}
}
2013-01-05 08:06:17 +00:00
static inline void gl_reinit_textures(void *data, const video_info_t *video)
{
2013-01-05 08:06:17 +00:00
gl_t *gl = (gl_t*)data;
unsigned old_base_size = gl->base_size;
unsigned old_width = gl->tex_w;
unsigned old_height = gl->tex_h;
gl_set_texture_fmts(gl, video->rgb32);
gl->tex_w = gl->tex_h = RARCH_SCALE_BASE * video->input_scale;
2012-11-18 13:21:47 +00:00
gl->empty_buf = realloc(gl->empty_buf, sizeof(uint32_t) * gl->tex_w * gl->tex_h);
if (gl->empty_buf)
memset(gl->empty_buf, 0, sizeof(uint32_t) * gl->tex_w * gl->tex_h);
if (old_base_size != gl->base_size || old_width != gl->tex_w || old_height != gl->tex_h)
{
2012-11-18 13:21:47 +00:00
RARCH_LOG("Reinitializing textures (%u x %u @ %u bpp)\n", gl->tex_w, gl->tex_h, gl->base_size * CHAR_BIT);
2012-11-18 14:39:29 +00:00
#if defined(HAVE_PSGL)
glBindBuffer(GL_TEXTURE_REFERENCE_BUFFER_SCE, 0);
glDeleteBuffers(1, &gl->pbo);
gl->pbo = 0;
#endif
2012-11-18 13:21:47 +00:00
glBindTexture(GL_TEXTURE_2D, 0);
glDeleteTextures(TEXTURES, gl->texture);
2012-11-18 14:39:29 +00:00
gl_init_textures(gl, video);
2012-11-18 13:21:47 +00:00
gl_init_textures_data(gl);
#ifdef HAVE_FBO
2012-11-18 14:22:32 +00:00
if (gl->tex_w > old_width || gl->tex_h > old_height)
{
RARCH_LOG("Reiniting FBO.\n");
gl_deinit_fbo(gl);
gl_init_fbo(gl, gl->tex_w, gl->tex_h);
}
#endif
}
2012-11-18 13:21:47 +00:00
else
RARCH_LOG("Reinitializing textures skipped.\n");
if (!gl_check_error())
2012-11-18 14:22:32 +00:00
RARCH_ERR("GL error reported while reinitializing textures. This should not happen ...\n");
}
#if !defined(HAVE_OPENGLES) && defined(HAVE_FFMPEG)
2013-01-05 08:06:17 +00:00
static void gl_init_pbo_readback(void *data)
{
2013-01-05 08:06:17 +00:00
gl_t *gl = (gl_t*)data;
// Only bother with this if we're doing FFmpeg GPU recording.
gl->pbo_readback_enable = g_settings.video.gpu_record && g_extern.recording;
if (!gl->pbo_readback_enable)
return;
RARCH_LOG("Async PBO readback enabled.\n");
pglGenBuffers(4, gl->pbo_readback);
for (unsigned i = 0; i < 4; i++)
{
pglBindBuffer(GL_PIXEL_PACK_BUFFER, gl->pbo_readback[i]);
pglBufferData(GL_PIXEL_PACK_BUFFER, gl->vp.width * gl->vp.height * sizeof(uint32_t),
NULL, GL_STREAM_COPY);
}
pglBindBuffer(GL_PIXEL_PACK_BUFFER, 0);
struct scaler_ctx *scaler = &gl->pbo_readback_scaler;
scaler->in_width = gl->vp.width;
scaler->in_height = gl->vp.height;
scaler->out_width = gl->vp.width;
scaler->out_height = gl->vp.height;
scaler->in_stride = gl->vp.width * sizeof(uint32_t);
scaler->out_stride = gl->vp.width * 3;
scaler->in_fmt = SCALER_FMT_ARGB8888;
scaler->out_fmt = SCALER_FMT_BGR24;
2012-11-22 22:11:21 +00:00
scaler->scaler_type = SCALER_TYPE_POINT;
if (!scaler_ctx_gen_filter(scaler))
{
gl->pbo_readback_enable = false;
RARCH_ERR("Failed to init pixel conversion for PBO.\n");
pglDeleteBuffers(4, gl->pbo_readback);
}
}
#endif
2013-02-23 13:49:49 +00:00
static const gfx_ctx_driver_t *gl_get_context(void)
{
#ifdef HAVE_OPENGLES
enum gfx_ctx_api api = GFX_CTX_OPENGL_ES_API;
const char *api_name = "OpenGL ES";
#else
enum gfx_ctx_api api = GFX_CTX_OPENGL_API;
const char *api_name = "OpenGL";
#endif
if (*g_settings.video.gl_context)
{
const gfx_ctx_driver_t *ctx = gfx_ctx_find_driver(g_settings.video.gl_context);
if (ctx)
{
if (!ctx->bind_api(api))
{
RARCH_ERR("Failed to bind API %s to context %s.\n", api_name, g_settings.video.gl_context);
return NULL;
}
if (!ctx->init())
{
RARCH_ERR("Failed to init GL context: %s.\n", ctx->ident);
return NULL;
}
}
else
{
RARCH_ERR("Didn't find GL context: %s.\n", g_settings.video.gl_context);
return NULL;
}
return ctx;
}
else
return gfx_ctx_init_first(api);
}
2011-11-02 18:31:36 +00:00
static void *gl_init(const video_info_t *video, const input_driver_t **input, void **input_data)
2010-05-28 00:45:18 +00:00
{
#ifdef _WIN32
2011-08-07 19:15:50 +00:00
gfx_set_dwm();
#endif
#ifdef RARCH_CONSOLE
if (driver.video_data)
{
gl_t *gl = (gl_t*)driver.video_data;
// Reinitialize textures as we might have changed pixel formats.
gl_reinit_textures(gl, video);
return driver.video_data;
}
#endif
2012-05-27 13:04:43 +00:00
gl_t *gl = (gl_t*)calloc(1, sizeof(gl_t));
if (!gl)
return NULL;
2013-02-23 13:49:49 +00:00
gl->ctx_driver = gl_get_context();
if (!gl->ctx_driver)
2012-05-27 13:04:43 +00:00
{
free(gl);
return NULL;
2012-05-27 13:04:43 +00:00
}
RARCH_LOG("Found GL context: %s\n", gl->ctx_driver->ident);
2012-09-24 23:26:22 +00:00
context_get_video_size_func(&gl->full_x, &gl->full_y);
RARCH_LOG("Detecting screen resolution %ux%u.\n", gl->full_x, gl->full_y);
context_swap_interval_func(video->vsync ? 1 : 0);
unsigned win_width = video->width;
unsigned win_height = video->height;
if (video->fullscreen && (win_width == 0) && (win_height == 0))
{
win_width = gl->full_x;
win_height = gl->full_y;
}
if (!context_set_video_mode_func(win_width, win_height, video->fullscreen))
2012-05-27 13:04:43 +00:00
{
free(gl);
return NULL;
2012-05-27 13:04:43 +00:00
}
2011-01-11 21:33:28 +00:00
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
2011-03-12 14:30:57 +00:00
2012-12-27 11:33:23 +00:00
if (!resolve_extensions(gl))
2011-05-18 20:40:42 +00:00
{
context_destroy_func();
2012-05-27 13:04:43 +00:00
free(gl);
2011-05-18 20:40:42 +00:00
return NULL;
}
2011-01-11 21:33:28 +00:00
gl->vsync = video->vsync;
gl->fullscreen = video->fullscreen;
// Get real known video size, which might have been altered by context.
context_get_video_size_func(&gl->win_width, &gl->win_height);
2012-04-21 21:25:32 +00:00
RARCH_LOG("GL: Using resolution %ux%u\n", gl->win_width, gl->win_height);
if (gl->full_x || gl->full_y) // We got bogus from gfx_ctx_get_video_size. Replace.
{
gl->full_x = gl->win_width;
gl->full_y = gl->win_height;
}
#ifdef HAVE_GLSL
gl_glsl_set_get_proc_address(gl->ctx_driver->get_proc_address);
2012-09-24 23:26:22 +00:00
#endif
if (!gl_shader_init(gl))
2011-01-11 18:23:21 +00:00
{
RARCH_ERR("[GL]: Shader init failed.\n");
context_destroy_func();
2011-01-11 20:16:57 +00:00
free(gl);
2011-01-11 18:23:21 +00:00
return NULL;
}
RARCH_LOG("GL: Loaded %u program(s).\n", gl_shader_num(gl));
2011-03-12 14:30:57 +00:00
2012-11-18 14:22:32 +00:00
gl->tex_w = RARCH_SCALE_BASE * video->input_scale;
gl->tex_h = RARCH_SCALE_BASE * video->input_scale;
2011-03-30 12:57:45 +00:00
gl->keep_aspect = video->force_aspect;
2011-03-16 11:47:31 +00:00
// Apparently need to set viewport for passes when we aren't using FBOs.
gl_set_shader_viewport(gl, 0);
gl_set_shader_viewport(gl, 1);
2011-01-06 19:01:32 +00:00
bool force_smooth = false;
if (gl_shader_filter_type(gl, 1, &force_smooth))
2011-03-14 20:28:30 +00:00
gl->tex_filter = force_smooth ? GL_LINEAR : GL_NEAREST;
2010-05-29 12:45:40 +00:00
else
2011-03-14 20:28:30 +00:00
gl->tex_filter = video->smooth ? GL_LINEAR : GL_NEAREST;
2010-05-28 00:54:20 +00:00
#ifdef HAVE_FBO
#ifdef HAVE_OPENGLES2
gl->hw_render_use = g_extern.system.hw_render_callback.context_type == RETRO_HW_CONTEXT_OPENGLES2;
#else
gl->hw_render_use = g_extern.system.hw_render_callback.context_type == RETRO_HW_CONTEXT_OPENGL;
#endif
#endif
gl_set_texture_fmts(gl, video->rgb32);
2011-03-07 18:12:14 +00:00
2012-09-15 13:17:34 +00:00
#ifndef HAVE_OPENGLES
2010-05-28 00:45:18 +00:00
glEnable(GL_TEXTURE_2D);
2012-09-15 13:17:34 +00:00
#endif
2010-11-08 22:38:32 +00:00
glDisable(GL_DEPTH_TEST);
2013-03-28 00:19:48 +00:00
glDisable(GL_CULL_FACE);
2011-03-12 18:28:56 +00:00
glDisable(GL_DITHER);
2010-05-28 00:45:18 +00:00
2010-12-26 03:15:12 +00:00
memcpy(gl->tex_coords, tex_coords, sizeof(tex_coords));
gl->coords.vertex = vertex_ptr;
gl->coords.tex_coord = gl->tex_coords;
gl->coords.color = white_color;
gl->coords.lut_tex_coord = tex_coords;
gl_shader_set_coords(gl, &gl->coords, &gl->mvp);
2011-05-18 18:38:04 +00:00
// Empty buffer that we use to clear out the texture with on res change.
2012-09-29 18:06:48 +00:00
gl->empty_buf = calloc(sizeof(uint32_t), gl->tex_w * gl->tex_h);
2012-09-15 13:17:34 +00:00
#if !defined(HAVE_PSGL)
2012-09-29 18:06:48 +00:00
gl->conv_buffer = calloc(sizeof(uint32_t), gl->tex_w * gl->tex_h);
2012-09-15 13:17:34 +00:00
if (!gl->conv_buffer)
{
context_destroy_func();
2012-09-15 13:17:34 +00:00
free(gl);
return NULL;
}
#endif
2012-10-20 10:22:10 +00:00
gl_init_textures(gl, video);
2012-11-18 13:21:47 +00:00
gl_init_textures_data(gl);
2010-05-28 00:45:18 +00:00
2013-03-27 15:15:15 +00:00
#ifdef HAVE_FBO
// Set up render to texture.
gl_init_fbo(gl, gl->tex_w, gl->tex_h);
2013-03-30 14:40:53 +00:00
#ifndef HAVE_RGL
if (gl->hw_render_use && !gl_init_hw_render(gl, gl->tex_w, gl->tex_h))
2013-03-29 01:12:08 +00:00
{
context_destroy_func();
free(gl);
return NULL;
}
#endif
2013-03-27 15:15:15 +00:00
#endif
if (input && input_data)
context_input_driver_func(input, input_data);
2012-12-14 23:07:31 +00:00
#if !defined(HAVE_RMENU)
2012-12-14 23:17:43 +00:00
// Comes too early for console - moved to gl_start
if (g_settings.video.font_enable)
gl->font_ctx = gl_font_init_first(gl, g_settings.video.font_path, g_settings.video.font_size);
2012-12-14 23:17:43 +00:00
#endif
#if !defined(HAVE_OPENGLES) && defined(HAVE_FFMPEG)
gl_init_pbo_readback(gl);
#endif
2011-01-11 21:33:28 +00:00
if (!gl_check_error())
{
context_destroy_func();
2011-01-11 21:33:28 +00:00
free(gl);
return NULL;
}
2010-08-16 16:40:17 +00:00
return gl;
2010-05-28 00:45:18 +00:00
}
2011-01-06 19:01:32 +00:00
static bool gl_alive(void *data)
{
2011-12-24 12:46:12 +00:00
gl_t *gl = (gl_t*)data;
2012-05-30 15:02:38 +00:00
bool quit, resize;
context_check_window_func(&quit,
2012-05-30 15:02:38 +00:00
&resize, &gl->win_width, &gl->win_height,
g_extern.frame_count);
2012-05-30 15:02:38 +00:00
if (quit)
gl->quitting = true;
else if (resize)
gl->should_resize = true;
2011-01-06 19:01:32 +00:00
return !gl->quitting;
}
2011-02-05 20:45:44 +00:00
static bool gl_focus(void *data)
{
gl_t *gl = (gl_t*)data;
(void)gl;
return context_has_focus_func();
2011-02-05 20:45:44 +00:00
}
static void gl_update_tex_filter_frame(gl_t *gl)
{
bool smooth = false;
if (!gl_shader_filter_type(gl, 1, &smooth))
smooth = g_settings.video.smooth;
GLuint new_filt = smooth ? GL_LINEAR : GL_NEAREST;
if (new_filt == gl->tex_filter)
return;
gl->tex_filter = new_filt;
for (unsigned i = 0; i < TEXTURES; i++)
{
if (gl->texture[i])
{
glBindTexture(GL_TEXTURE_2D, gl->texture[i]);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, gl->tex_filter);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, gl->tex_filter);
}
}
glBindTexture(GL_TEXTURE_2D, gl->texture[gl->tex_index]);
}
#if defined(HAVE_GLSL) || defined(HAVE_CG)
static bool gl_set_shader(void *data, enum rarch_shader_type type, const char *path)
2011-03-29 16:28:31 +00:00
{
2011-12-24 12:46:12 +00:00
gl_t *gl = (gl_t*)data;
2011-06-07 13:58:30 +00:00
if (type == RARCH_SHADER_NONE)
return false;
gl_shader_deinit(gl);
2011-06-11 20:02:05 +00:00
switch (type)
{
#ifdef HAVE_GLSL
case RARCH_SHADER_GLSL:
gl->shader = &gl_glsl_backend;
break;
#endif
#ifdef HAVE_CG
case RARCH_SHADER_CG:
gl->shader = &gl_cg_backend;
break;
#endif
default:
gl->shader = NULL;
break;
}
if (!gl->shader)
{
RARCH_ERR("[GL]: Cannot find shader core for path: %s.\n", path);
return false;
}
#ifdef HAVE_FBO
gl_deinit_fbo(gl);
glBindTexture(GL_TEXTURE_2D, gl->texture[gl->tex_index]);
#endif
if (!gl->shader->init(path))
{
RARCH_WARN("[GL]: Failed to set multipass shader. Falling back to stock.\n");
bool ret = gl->shader->init(NULL);
if (!ret)
gl->shader = NULL;
return false;
}
gl_update_tex_filter_frame(gl);
2012-01-30 19:22:36 +00:00
#ifdef HAVE_FBO
// Set up render to texture again.
gl_init_fbo(gl, gl->tex_w, gl->tex_h);
2012-01-30 19:22:36 +00:00
#endif
// Apparently need to set viewport for passes when we aren't using FBOs.
gl_set_shader_viewport(gl, 0);
gl_set_shader_viewport(gl, 1);
return true;
2011-03-29 16:28:31 +00:00
}
#endif
2011-03-29 16:28:31 +00:00
#ifndef NO_GL_READ_VIEWPORT
static void gl_viewport_info(void *data, struct rarch_viewport *vp)
{
gl_t *gl = (gl_t*)data;
*vp = gl->vp;
2013-01-11 15:23:04 +00:00
vp->full_width = gl->win_width;
vp->full_height = gl->win_height;
2013-01-24 06:29:26 +00:00
// Adjust as GL viewport is bottom-up.
unsigned top_y = vp->y + vp->height;
unsigned top_dist = gl->win_height - top_y;
vp->y = top_dist;
}
static bool gl_read_viewport(void *data, uint8_t *buffer)
{
gl_t *gl = (gl_t*)data;
2012-06-10 09:10:14 +00:00
2012-11-20 17:05:33 +00:00
RARCH_PERFORMANCE_INIT(read_viewport);
RARCH_PERFORMANCE_START(read_viewport);
#ifdef HAVE_OPENGLES
glPixelStorei(GL_PACK_ALIGNMENT, get_alignment(gl->vp.width * 3));
// GLES doesn't support glReadBuffer ... Take a chance that it'll work out right.
glReadPixels(gl->vp.x, gl->vp.y,
gl->vp.width, gl->vp.height,
GL_RGB, GL_UNSIGNED_BYTE, buffer);
2012-10-23 06:37:51 +00:00
uint8_t *pixels = (uint8_t*)buffer;
unsigned num_pixels = gl->vp.width * gl->vp.height;
2012-10-23 06:37:51 +00:00
// Convert RGB to BGR. Formats are byte ordered, so just swap 1st and 3rd byte.
for (unsigned i = 0; i <= num_pixels; pixels += 3, i++)
{
2012-10-23 06:37:51 +00:00
uint8_t tmp = pixels[2];
pixels[2] = pixels[0];
pixels[0] = tmp;
}
#else
#ifdef HAVE_FFMPEG
if (gl->pbo_readback_enable)
{
if (!gl->pbo_readback_valid) // We haven't buffered up enough frames yet, come back later.
return false;
pglBindBuffer(GL_PIXEL_PACK_BUFFER, gl->pbo_readback[gl->pbo_readback_index]);
const void *ptr = pglMapBuffer(GL_PIXEL_PACK_BUFFER, GL_READ_ONLY);
if (!ptr)
{
RARCH_ERR("Failed to map pixel unpack buffer.\n");
return false;
}
scaler_ctx_scale(&gl->pbo_readback_scaler, buffer, ptr);
pglUnmapBuffer(GL_PIXEL_PACK_BUFFER);
pglBindBuffer(GL_PIXEL_PACK_BUFFER, 0);
}
else // Use slow synchronous readbacks. Use this with plain screenshots as we don't really care about performance in this case.
#endif
{
glPixelStorei(GL_PACK_ROW_LENGTH, gl->vp.width);
glPixelStorei(GL_PACK_ALIGNMENT, get_alignment(gl->vp.width * 3));
glReadBuffer(GL_FRONT);
glReadPixels(gl->vp.x, gl->vp.y,
gl->vp.width, gl->vp.height,
GL_BGR, GL_UNSIGNED_BYTE, buffer);
}
#endif
2012-11-20 17:05:33 +00:00
RARCH_PERFORMANCE_STOP(read_viewport);
return true;
}
2012-06-08 22:24:43 +00:00
#endif
#if defined(HAVE_RGUI) || defined(HAVE_RMENU)
static void gl_get_poke_interface(void *data, const video_poke_interface_t **iface);
2013-03-10 00:58:31 +00:00
static void gl_start(void)
{
video_info_t video_info = {0};
// Might have to supply correct values here.
video_info.vsync = g_settings.video.vsync;
video_info.force_aspect = false;
video_info.smooth = g_settings.video.smooth;
video_info.input_scale = 2;
video_info.fullscreen = true;
2012-11-18 20:50:27 +00:00
if (g_settings.video.aspect_ratio_idx == ASPECT_RATIO_CUSTOM)
{
video_info.width = g_extern.console.screen.viewports.custom_vp.width;
video_info.height = g_extern.console.screen.viewports.custom_vp.height;
}
2012-11-18 20:50:27 +00:00
driver.video_data = gl_init(&video_info, NULL, NULL);
2012-09-25 01:49:20 +00:00
gl_t *gl = (gl_t*)driver.video_data;
2013-03-10 00:58:31 +00:00
gl_get_poke_interface(gl, &driver.video_poke);
2012-09-25 01:49:20 +00:00
2012-12-14 23:17:43 +00:00
// Comes too early for console - moved to gl_start
gl->font_ctx = gl_font_init_first(gl, g_settings.video.font_path, g_settings.video.font_size);
}
static void gl_restart(void)
{
2013-04-04 12:36:24 +00:00
gl_t *gl = (gl_t*)driver.video_data;
2012-05-27 21:14:46 +00:00
if (!gl)
return;
void *data = driver.video_data;
driver.video_data = NULL;
gl_free(data);
#ifdef HAVE_CG
gl_cg_invalidate_context();
#endif
gl_start();
}
#endif
2012-12-23 17:36:58 +00:00
#ifdef HAVE_OVERLAY
static bool gl_overlay_load(void *data, const uint32_t *image, unsigned width, unsigned height)
{
gl_t *gl = (gl_t*)data;
if (!gl->tex_overlay)
glGenTextures(1, &gl->tex_overlay);
glBindTexture(GL_TEXTURE_2D, gl->tex_overlay);
2013-03-09 17:37:50 +00:00
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, gl->border_type);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, gl->border_type);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
2013-04-10 02:39:27 +00:00
#ifndef HAVE_PSGL
glPixelStorei(GL_UNPACK_ALIGNMENT, get_alignment(width * sizeof(uint32_t)));
2013-04-10 02:39:27 +00:00
#endif
glTexImage2D(GL_TEXTURE_2D, 0, driver.gfx_use_rgba ? GL_RGBA : RARCH_GL_INTERNAL_FORMAT32,
width, height, 0, driver.gfx_use_rgba ? GL_RGBA : RARCH_GL_TEXTURE_TYPE32,
RARCH_GL_FORMAT32, image);
gl_overlay_tex_geom(gl, 0, 0, 1, 1); // Default. Stretch to whole screen.
gl_overlay_vertex_geom(gl, 0, 0, 1, 1);
2013-01-29 20:51:15 +00:00
return true;
}
static void gl_overlay_tex_geom(void *data,
GLfloat x, GLfloat y,
GLfloat w, GLfloat h)
{
gl_t *gl = (gl_t*)data;
gl->overlay_tex_coord[0] = x; gl->overlay_tex_coord[1] = y;
gl->overlay_tex_coord[2] = x + w; gl->overlay_tex_coord[3] = y;
gl->overlay_tex_coord[4] = x; gl->overlay_tex_coord[5] = y + h;
gl->overlay_tex_coord[6] = x + w; gl->overlay_tex_coord[7] = y + h;
}
static void gl_overlay_vertex_geom(void *data,
float x, float y,
float w, float h)
{
gl_t *gl = (gl_t*)data;
// Flipped, so we preserve top-down semantics.
y = 1.0f - y;
h = -h;
gl->overlay_vertex_coord[0] = x; gl->overlay_vertex_coord[1] = y;
gl->overlay_vertex_coord[2] = x + w; gl->overlay_vertex_coord[3] = y;
gl->overlay_vertex_coord[4] = x; gl->overlay_vertex_coord[5] = y + h;
gl->overlay_vertex_coord[6] = x + w; gl->overlay_vertex_coord[7] = y + h;
}
static void gl_overlay_enable(void *data, bool state)
{
gl_t *gl = (gl_t*)data;
gl->overlay_enable = state;
2013-03-29 12:46:11 +00:00
if (gl->ctx_driver->show_mouse && gl->fullscreen)
gl->ctx_driver->show_mouse(state);
}
2013-01-11 15:23:04 +00:00
static void gl_overlay_full_screen(void *data, bool enable)
{
gl_t *gl = (gl_t*)data;
gl->overlay_full_screen = enable;
}
2013-01-29 20:51:15 +00:00
static void gl_overlay_set_alpha(void *data, float mod)
{
gl_t *gl = (gl_t*)data;
gl->overlay_alpha_mod = mod;
}
2013-01-05 08:06:17 +00:00
static void gl_render_overlay(void *data)
{
2013-01-05 08:06:17 +00:00
gl_t *gl = (gl_t*)data;
glBindTexture(GL_TEXTURE_2D, gl->tex_overlay);
2013-01-29 20:51:15 +00:00
const GLfloat white_color_mod[16] = {
1.0f, 1.0f, 1.0f, gl->overlay_alpha_mod,
1.0f, 1.0f, 1.0f, gl->overlay_alpha_mod,
1.0f, 1.0f, 1.0f, gl->overlay_alpha_mod,
1.0f, 1.0f, 1.0f, gl->overlay_alpha_mod,
};
if (gl->shader)
gl->shader->use(GL_SHADER_STOCK_BLEND);
glEnable(GL_BLEND);
gl->coords.vertex = gl->overlay_vertex_coord;
gl->coords.tex_coord = gl->overlay_tex_coord;
2013-01-29 20:51:15 +00:00
gl->coords.color = white_color_mod;
gl_shader_set_coords(gl, &gl->coords, &gl->mvp_no_rot);
2013-01-11 15:23:04 +00:00
if (gl->overlay_full_screen)
{
glViewport(0, 0, gl->win_width, gl->win_height);
glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
glViewport(gl->vp.x, gl->vp.y, gl->vp.width, gl->vp.height);
}
else
glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
glDisable(GL_BLEND);
gl->coords.vertex = vertex_ptr;
gl->coords.tex_coord = gl->tex_coords;
2013-01-29 20:51:15 +00:00
gl->coords.color = white_color;
}
static const video_overlay_interface_t gl_overlay_interface = {
gl_overlay_enable,
gl_overlay_load,
gl_overlay_tex_geom,
gl_overlay_vertex_geom,
2013-01-11 15:23:04 +00:00
gl_overlay_full_screen,
2013-01-29 20:51:15 +00:00
gl_overlay_set_alpha,
};
static void gl_get_overlay_interface(void *data, const video_overlay_interface_t **iface)
{
(void)data;
*iface = &gl_overlay_interface;
}
2012-12-23 17:36:58 +00:00
#endif
#ifdef HAVE_FBO
2013-03-27 15:15:15 +00:00
static uintptr_t gl_get_current_framebuffer(void *data)
{
gl_t *gl = (gl_t*)data;
return gl->hw_render_fbo[(gl->tex_index + 1) & TEXTURES_MASK];
}
static retro_proc_address_t gl_get_proc_address(void *data, const char *sym)
{
gl_t *gl = (gl_t*)data;
return gl->ctx_driver->get_proc_address(sym);
}
#endif
2013-03-10 19:12:50 +00:00
static void gl_set_aspect_ratio(void *data, unsigned aspect_ratio_idx)
2013-03-10 00:16:56 +00:00
{
gl_t *gl = (gl_t*)data;
switch (aspect_ratio_idx)
{
case ASPECT_RATIO_SQUARE:
gfx_set_square_pixel_viewport(g_extern.system.av_info.geometry.base_width, g_extern.system.av_info.geometry.base_height);
break;
2013-03-10 00:16:56 +00:00
case ASPECT_RATIO_CORE:
gfx_set_core_viewport();
break;
case ASPECT_RATIO_CONFIG:
gfx_set_config_viewport();
break;
2013-03-10 00:16:56 +00:00
default:
break;
}
g_extern.system.aspect_ratio = aspectratio_lut[aspect_ratio_idx].value;
gl->keep_aspect = true;
2013-03-10 00:16:56 +00:00
gl->should_resize = true;
}
2013-04-07 16:03:25 +00:00
#if defined(HAVE_RGUI) || defined(HAVE_RMENU)
static void gl_set_texture_frame(void *data,
const void *frame, bool rgb32, unsigned width, unsigned height,
float alpha)
{
gl_t *gl = (gl_t*)data;
if (!gl->rgui_texture)
{
glGenTextures(1, &gl->rgui_texture);
glBindTexture(GL_TEXTURE_2D, gl->rgui_texture);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, gl->border_type);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, gl->border_type);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
}
else
glBindTexture(GL_TEXTURE_2D, gl->rgui_texture);
gl->rgui_texture_alpha = alpha;
2013-04-07 16:03:25 +00:00
#ifndef HAVE_PSGL
unsigned base_size = rgb32 ? sizeof(uint32_t) : sizeof(uint16_t);
glPixelStorei(GL_UNPACK_ALIGNMENT, get_alignment(width * base_size));
2013-04-07 16:03:25 +00:00
#endif
if (rgb32)
{
glTexImage2D(GL_TEXTURE_2D,
0, driver.gfx_use_rgba ? GL_RGBA : RARCH_GL_INTERNAL_FORMAT32,
width, height,
0, driver.gfx_use_rgba ? GL_RGBA : RARCH_GL_TEXTURE_TYPE32,
RARCH_GL_FORMAT32, frame);
}
else
{
glTexImage2D(GL_TEXTURE_2D,
0, GL_RGBA, width, height, 0, GL_RGBA,
GL_UNSIGNED_SHORT_4_4_4_4, frame);
}
glBindTexture(GL_TEXTURE_2D, gl->texture[gl->tex_index]);
}
static void gl_set_texture_enable(void *data, bool state, bool full_screen)
{
gl_t *gl = (gl_t*)data;
gl->rgui_texture_enable = state;
gl->rgui_texture_full_screen = full_screen;
}
#endif
2013-03-10 18:39:37 +00:00
static void gl_apply_state_changes(void *data)
{
gl_t *gl = (gl_t*)data;
gl->should_resize = true;
}
2013-03-11 20:42:02 +00:00
static void gl_set_osd_msg(void *data, const char *msg, void *userdata)
{
gl_t *gl = (gl_t*)data;
font_params_t *params = (font_params_t*)userdata;
if (gl->font_ctx)
gl->font_ctx->render_msg(gl, msg, params);
}
2013-03-29 17:53:07 +00:00
static void gl_show_mouse(void *data, bool state)
{
gl_t *gl = (gl_t*)data;
if (gl->ctx_driver->show_mouse)
gl->ctx_driver->show_mouse(state);
}
2013-03-10 00:16:56 +00:00
static const video_poke_interface_t gl_poke_interface = {
NULL,
#ifdef HAVE_FBO
2013-03-27 15:15:15 +00:00
gl_get_current_framebuffer,
gl_get_proc_address,
#endif
2013-03-10 00:16:56 +00:00
gl_set_aspect_ratio,
2013-03-10 18:39:37 +00:00
gl_apply_state_changes,
2013-04-07 16:03:25 +00:00
#if defined(HAVE_RGUI) || defined(HAVE_RMENU)
gl_set_texture_frame,
gl_set_texture_enable,
#endif
2013-03-11 20:42:02 +00:00
gl_set_osd_msg,
2013-03-29 17:53:07 +00:00
gl_show_mouse,
2013-03-10 00:16:56 +00:00
};
static void gl_get_poke_interface(void *data, const video_poke_interface_t **iface)
{
(void)data;
*iface = &gl_poke_interface;
}
2010-05-28 00:45:18 +00:00
const video_driver_t video_gl = {
2012-05-27 20:50:03 +00:00
gl_init,
gl_frame,
gl_set_nonblock_state,
gl_alive,
gl_focus,
2012-05-27 21:16:22 +00:00
#if defined(HAVE_GLSL) || defined(HAVE_CG)
gl_set_shader,
2011-12-24 12:46:12 +00:00
#else
2012-05-27 20:50:03 +00:00
NULL,
#endif
2012-05-27 21:16:22 +00:00
2012-05-27 20:50:03 +00:00
gl_free,
"gl",
2012-05-27 21:16:22 +00:00
#if defined(HAVE_RGUI) || defined(HAVE_RMENU)
2012-05-27 20:50:03 +00:00
gl_start,
gl_restart,
#endif
2012-05-27 21:16:22 +00:00
gl_set_rotation,
2012-06-08 22:24:43 +00:00
#ifndef NO_GL_READ_VIEWPORT
gl_viewport_info,
gl_read_viewport,
2012-06-08 22:24:43 +00:00
#else
NULL,
NULL,
#endif
2012-12-23 17:36:58 +00:00
#ifdef HAVE_OVERLAY
gl_get_overlay_interface,
2012-12-23 17:36:58 +00:00
#endif
2013-03-10 00:16:56 +00:00
gl_get_poke_interface,
2010-05-28 00:45:18 +00:00
};