RetroArch/gfx/gl_common.h

407 lines
11 KiB
C
Raw Normal View History

2012-04-21 21:13:50 +00:00
/* RetroArch - A frontend for libretro.
2014-01-01 00:50:59 +00:00
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
*
2012-04-21 21:13:50 +00:00
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* 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;
* 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.
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __GL_COMMON_H
#define __GL_COMMON_H
2011-11-30 17:31:09 +00:00
#include "../general.h"
2012-05-27 00:04:50 +00:00
#include "fonts/fonts.h"
#include "math/matrix.h"
2012-09-24 23:26:22 +00:00
#include "gfx_context.h"
#include "scaler/scaler.h"
#include "fonts/gl_font.h"
2014-10-02 11:21:45 +00:00
#include "shader/shader_context.h"
2011-05-18 20:11:34 +00:00
#ifdef HAVE_CONFIG_H
2011-11-30 17:31:09 +00:00
#include "../config.h"
2011-05-18 20:11:34 +00:00
#endif
#include <string.h>
#ifdef HAVE_EGL
#include <EGL/egl.h>
#include <EGL/eglext.h>
#endif
#include "glsym/glsym.h"
2014-04-19 14:59:26 +00:00
#define context_bind_hw_render(gl, enable) if (gl->shared_context_use && gl->ctx_driver->bind_hw_render) gl->ctx_driver->bind_hw_render(gl, enable)
#if (!defined(HAVE_OPENGLES) || defined(HAVE_OPENGLES3))
#define HAVE_GL_ASYNC_READBACK
#endif
#if defined(HAVE_PSGL)
#define RARCH_GL_FRAMEBUFFER GL_FRAMEBUFFER_OES
#define RARCH_GL_FRAMEBUFFER_COMPLETE GL_FRAMEBUFFER_COMPLETE_OES
#define RARCH_GL_COLOR_ATTACHMENT0 GL_COLOR_ATTACHMENT0_EXT
2014-05-22 18:30:21 +00:00
#elif defined(OSX_PPC)
#define RARCH_GL_FRAMEBUFFER GL_FRAMEBUFFER_EXT
#define RARCH_GL_FRAMEBUFFER_COMPLETE GL_FRAMEBUFFER_COMPLETE_EXT
#define RARCH_GL_COLOR_ATTACHMENT0 GL_COLOR_ATTACHMENT0_EXT
#else
#define RARCH_GL_FRAMEBUFFER GL_FRAMEBUFFER
#define RARCH_GL_FRAMEBUFFER_COMPLETE GL_FRAMEBUFFER_COMPLETE
#define RARCH_GL_COLOR_ATTACHMENT0 GL_COLOR_ATTACHMENT0
#endif
#if defined(HAVE_OPENGLES2)
#define RARCH_GL_RENDERBUFFER GL_RENDERBUFFER
#define RARCH_GL_DEPTH24_STENCIL8 GL_DEPTH24_STENCIL8_OES
#define RARCH_GL_DEPTH_ATTACHMENT GL_DEPTH_ATTACHMENT
#define RARCH_GL_STENCIL_ATTACHMENT GL_STENCIL_ATTACHMENT
#elif defined(OSX_PPC)
#define RARCH_GL_RENDERBUFFER GL_RENDERBUFFER_EXT
#define RARCH_GL_DEPTH24_STENCIL8 GL_DEPTH24_STENCIL8_EXT
#define RARCH_GL_DEPTH_ATTACHMENT GL_DEPTH_ATTACHMENT_EXT
#define RARCH_GL_STENCIL_ATTACHMENT GL_STENCIL_ATTACHMENT_EXT
2014-05-27 20:15:25 +00:00
#elif defined(HAVE_PSGL) && !defined(HAVE_GCMGL)
#define RARCH_GL_RENDERBUFFER GL_RENDERBUFFER_OES
#define RARCH_GL_DEPTH24_STENCIL8 GL_DEPTH24_STENCIL8_SCE
#define RARCH_GL_DEPTH_ATTACHMENT GL_DEPTH_ATTACHMENT_OES
#define RARCH_GL_STENCIL_ATTACHMENT GL_STENCIL_ATTACHMENT_OES
#else
#define RARCH_GL_RENDERBUFFER GL_RENDERBUFFER
#define RARCH_GL_DEPTH24_STENCIL8 GL_DEPTH24_STENCIL8
#define RARCH_GL_DEPTH_ATTACHMENT GL_DEPTH_ATTACHMENT
#define RARCH_GL_STENCIL_ATTACHMENT GL_STENCIL_ATTACHMENT
#endif
#ifdef OSX_PPC
#define RARCH_GL_MAX_RENDERBUFFER_SIZE GL_MAX_RENDERBUFFER_SIZE_EXT
2014-05-27 20:15:25 +00:00
#elif defined(HAVE_PSGL) && !defined(HAVE_GCMGL)
#define RARCH_GL_MAX_RENDERBUFFER_SIZE GL_MAX_RENDERBUFFER_SIZE_OES
#else
#define RARCH_GL_MAX_RENDERBUFFER_SIZE GL_MAX_RENDERBUFFER_SIZE
#endif
#if defined(HAVE_PSGL)
2014-05-27 20:15:25 +00:00
#define glGenerateMipmap glGenerateMipmapOES
#endif
2014-05-27 20:27:16 +00:00
#ifdef HAVE_FBO
#if defined(__APPLE__) || defined(HAVE_PSGL)
#define GL_RGBA32F GL_RGBA32F_ARB
#endif
#endif
static inline bool gl_check_error(void)
{
int error = glGetError();
switch (error)
{
case GL_INVALID_ENUM:
2012-04-21 21:25:32 +00:00
RARCH_ERR("GL: Invalid enum.\n");
break;
case GL_INVALID_VALUE:
RARCH_ERR("GL: Invalid value.\n");
break;
case GL_INVALID_OPERATION:
2012-04-21 21:25:32 +00:00
RARCH_ERR("GL: Invalid operation.\n");
break;
case GL_OUT_OF_MEMORY:
RARCH_ERR("GL: Out of memory.\n");
break;
case GL_NO_ERROR:
return true;
}
2014-10-01 22:49:38 +00:00
RARCH_ERR("Non specified GL error.\n");
return false;
}
struct gl_fbo_rect
{
2011-03-14 22:48:19 +00:00
unsigned img_width;
unsigned img_height;
2011-03-27 19:21:46 +00:00
unsigned max_img_width;
unsigned max_img_height;
unsigned width;
unsigned height;
};
2012-05-27 21:14:46 +00:00
struct gl_ortho
{
2012-05-27 21:14:46 +00:00
GLfloat left;
GLfloat right;
GLfloat bottom;
GLfloat top;
2012-05-27 21:33:31 +00:00
GLfloat znear;
GLfloat zfar;
2012-05-27 21:14:46 +00:00
};
struct gl_tex_info
{
GLuint tex;
GLfloat input_size[2];
GLfloat tex_size[2];
GLfloat coord[8];
};
struct gl_coords
{
const GLfloat *vertex;
const GLfloat *color;
const GLfloat *tex_coord;
const GLfloat *lut_tex_coord;
unsigned vertices;
};
2012-05-26 13:21:51 +00:00
#define MAX_SHADERS 16
#define MAX_TEXTURES 8
2012-05-26 13:21:51 +00:00
typedef struct gl
{
const gfx_ctx_driver_t *ctx_driver;
const shader_backend_t *shader;
2012-05-26 13:21:51 +00:00
bool vsync;
GLuint texture[MAX_TEXTURES];
2014-09-12 00:51:23 +00:00
unsigned tex_index; /* For use with PREV. */
unsigned textures;
2014-10-01 18:37:52 +00:00
struct gl_tex_info tex_info;
struct gl_tex_info prev_info[MAX_TEXTURES];
2014-05-11 11:13:38 +00:00
GLuint tex_mag_filter;
GLuint tex_min_filter;
bool tex_mipmap;
2012-05-26 13:21:51 +00:00
void *empty_buf;
2012-09-15 13:17:34 +00:00
void *conv_buffer;
struct scaler_ctx scaler;
2012-05-26 13:21:51 +00:00
unsigned frame_count;
#ifdef HAVE_FBO
2014-09-12 00:51:23 +00:00
/* Render-to-texture, multipass shaders. */
2012-05-26 13:21:51 +00:00
GLuint fbo[MAX_SHADERS];
GLuint fbo_texture[MAX_SHADERS];
struct gl_fbo_rect fbo_rect[MAX_SHADERS];
struct gfx_fbo_scale fbo_scale[MAX_SHADERS];
2012-05-26 13:21:51 +00:00
int fbo_pass;
bool fbo_inited;
2013-03-27 15:15:15 +00:00
GLuint hw_render_fbo[MAX_TEXTURES];
GLuint hw_render_depth[MAX_TEXTURES];
2013-03-27 15:15:15 +00:00
bool hw_render_fbo_init;
2013-03-29 01:50:42 +00:00
bool hw_render_depth_init;
bool has_fp_fbo;
2014-05-11 11:13:38 +00:00
bool has_srgb_fbo;
bool has_srgb_fbo_gles3;
2012-05-26 13:21:51 +00:00
#endif
bool hw_render_use;
2014-04-19 14:59:26 +00:00
bool shared_context_use;
2012-05-26 13:21:51 +00:00
bool should_resize;
bool quitting;
bool fullscreen;
bool keep_aspect;
unsigned rotation;
unsigned full_x, full_y;
unsigned win_width;
unsigned win_height;
struct rarch_viewport vp;
unsigned vp_out_width;
unsigned vp_out_height;
unsigned last_width[MAX_TEXTURES];
unsigned last_height[MAX_TEXTURES];
2012-05-26 13:21:51 +00:00
unsigned tex_w, tex_h;
math_matrix mvp, mvp_no_rot;
2012-05-26 13:21:51 +00:00
struct gl_coords coords;
const GLfloat *vertex_ptr;
const GLfloat *white_color_ptr;
GLuint pbo;
GLenum internal_fmt;
2014-09-12 00:51:23 +00:00
GLenum texture_type; /* RGB565 or ARGB */
2012-05-26 13:21:51 +00:00
GLenum texture_fmt;
GLenum wrap_mode;
2014-09-12 00:51:23 +00:00
unsigned base_size; /* 2 or 4 */
#ifdef HAVE_OPENGLES
bool support_unpack_row_length;
#else
bool have_es2_compat;
#endif
2012-05-26 13:21:51 +00:00
2014-09-12 00:51:23 +00:00
/* Fonts */
const gl_font_renderer_t *font_driver;
void *font_handle;
2012-09-24 23:26:22 +00:00
bool egl_images;
video_info_t video_info;
2012-12-23 17:36:58 +00:00
#ifdef HAVE_OVERLAY
unsigned overlays;
bool overlay_enable;
2013-01-11 15:23:04 +00:00
bool overlay_full_screen;
GLuint *overlay_tex;
GLfloat *overlay_vertex_coord;
GLfloat *overlay_tex_coord;
GLfloat *overlay_color_coord;
2012-12-23 17:36:58 +00:00
#endif
#ifdef HAVE_GL_ASYNC_READBACK
2014-09-12 00:51:23 +00:00
/* PBOs used for asynchronous viewport readbacks. */
GLuint pbo_readback[4];
bool pbo_readback_valid[4];
bool pbo_readback_enable;
unsigned pbo_readback_index;
struct scaler_ctx pbo_readback_scaler;
#endif
void *readback_buffer_screenshot;
#if defined(HAVE_MENU)
GLuint menu_texture;
bool menu_texture_enable;
bool menu_texture_full_screen;
GLfloat menu_texture_alpha;
#endif
2013-05-03 12:04:29 +00:00
#ifdef HAVE_GL_SYNC
#define MAX_FENCES 4
bool have_sync;
GLsync fences[MAX_FENCES];
unsigned fence_count;
2013-05-03 12:04:29 +00:00
#endif
bool core_context;
GLuint vao;
2012-05-26 13:21:51 +00:00
} gl_t;
#if defined(HAVE_PSGL)
#define RARCH_GL_INTERNAL_FORMAT32 GL_ARGB_SCE
2014-09-12 00:51:23 +00:00
#define RARCH_GL_INTERNAL_FORMAT16 GL_RGB5 /* TODO: Verify if this is really 565 or just 555. */
#define RARCH_GL_TEXTURE_TYPE32 GL_BGRA
#define RARCH_GL_TEXTURE_TYPE16 GL_BGRA
#define RARCH_GL_FORMAT32 GL_UNSIGNED_INT_8_8_8_8_REV
#define RARCH_GL_FORMAT16 GL_RGB5
#elif defined(HAVE_OPENGLES)
2014-09-12 00:51:23 +00:00
/* Imgtec/SGX headers have this missing. */
#ifndef GL_BGRA_EXT
#define GL_BGRA_EXT 0x80E1
#endif
#ifdef IOS
2014-09-12 00:51:23 +00:00
/* Stupid Apple. */
#define RARCH_GL_INTERNAL_FORMAT32 GL_RGBA
#else
#define RARCH_GL_INTERNAL_FORMAT32 GL_BGRA_EXT
#endif
#define RARCH_GL_INTERNAL_FORMAT16 GL_RGB
#define RARCH_GL_TEXTURE_TYPE32 GL_BGRA_EXT
#define RARCH_GL_TEXTURE_TYPE16 GL_RGB
2012-09-15 13:17:34 +00:00
#define RARCH_GL_FORMAT32 GL_UNSIGNED_BYTE
#define RARCH_GL_FORMAT16 GL_UNSIGNED_SHORT_5_6_5
#else
2014-09-12 00:51:23 +00:00
/* On desktop, we always use 32-bit. */
#define RARCH_GL_INTERNAL_FORMAT32 GL_RGBA8
#define RARCH_GL_INTERNAL_FORMAT16 GL_RGBA8
#define RARCH_GL_TEXTURE_TYPE32 GL_BGRA
#define RARCH_GL_TEXTURE_TYPE16 GL_BGRA
2012-05-26 14:29:02 +00:00
#define RARCH_GL_FORMAT32 GL_UNSIGNED_INT_8_8_8_8_REV
#define RARCH_GL_FORMAT16 GL_UNSIGNED_INT_8_8_8_8_REV
2014-09-12 00:51:23 +00:00
/* GL_RGB565 internal format isn't in desktop GL
* until 4.1 core (ARB_ES2_compatibility).
* Check for this. */
#ifndef GL_RGB565
#define GL_RGB565 0x8D62
#endif
#define RARCH_GL_INTERNAL_FORMAT16_565 GL_RGB565
#define RARCH_GL_TEXTURE_TYPE16_565 GL_RGB
#define RARCH_GL_FORMAT16_565 GL_UNSIGNED_SHORT_5_6_5
#endif
2012-05-26 14:29:02 +00:00
2014-09-12 00:51:23 +00:00
/* Platform specific workarounds/hacks. */
#if defined(__CELLOS_LV2__)
2014-01-05 17:48:09 +00:00
#define NO_GL_READ_PIXELS
2013-11-02 02:03:28 +00:00
2014-09-12 00:51:23 +00:00
/* Performance hacks. */
2014-02-25 21:01:46 +00:00
#ifdef HAVE_GCMGL
2014-09-12 00:51:23 +00:00
2013-11-02 02:03:28 +00:00
extern GLvoid* glMapBufferTextureReferenceRA( GLenum target, GLenum access );
2014-09-12 00:51:23 +00:00
2013-11-02 02:03:28 +00:00
extern GLboolean glUnmapBufferTextureReferenceRA( GLenum target );
2014-09-12 00:51:23 +00:00
extern void glBufferSubDataTextureReferenceRA( GLenum target,
GLintptr offset, GLsizeiptr size, const GLvoid *data );
2013-11-02 02:03:28 +00:00
#define glMapBuffer(target, access) glMapBufferTextureReferenceRA(target, access)
#define glUnmapBuffer(target) glUnmapBufferTextureReferenceRA(target)
#define glBufferSubData(target, offset, size, data) glBufferSubDataTextureReferenceRA(target, offset, size, data)
2013-11-02 02:03:28 +00:00
#endif
2012-09-15 13:17:34 +00:00
#endif
#if defined(HAVE_OPENGL_MODERN) || defined(HAVE_OPENGLES2) || defined(HAVE_PSGL)
#ifndef NO_GL_FF_VERTEX
2012-09-15 13:17:34 +00:00
#define NO_GL_FF_VERTEX
#endif
#endif
2012-09-15 13:17:34 +00:00
#if defined(HAVE_OPENGL_MODERN) || defined(HAVE_OPENGLES2) || defined(HAVE_PSGL)
#ifndef NO_GL_FF_MATRIX
2012-09-15 13:17:34 +00:00
#define NO_GL_FF_MATRIX
#endif
#endif
2012-09-15 13:17:34 +00:00
2014-09-12 00:51:23 +00:00
#if defined(HAVE_OPENGLES2) /* TODO: Figure out exactly what. */
2012-09-15 13:17:34 +00:00
#define NO_GL_CLAMP_TO_BORDER
#endif
#if defined(HAVE_OPENGLES)
#ifndef GL_UNPACK_ROW_LENGTH
#define GL_UNPACK_ROW_LENGTH 0x0CF2
#endif
2014-05-11 11:13:38 +00:00
#ifndef GL_SRGB_ALPHA_EXT
#define GL_SRGB_ALPHA_EXT 0x8C42
#endif
2012-09-15 13:17:34 +00:00
#endif
/* Fall back to FF-style if needed and possible. */
#define gl_ff_vertex(coords) \
glClientActiveTexture(GL_TEXTURE1); \
glTexCoordPointer(2, GL_FLOAT, 0, coords->lut_tex_coord); \
glEnableClientState(GL_TEXTURE_COORD_ARRAY); \
glClientActiveTexture(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)
/* Fall back to FF-style if needed and possible. */
#define gl_ff_matrix(mat) \
glMatrixMode(GL_PROJECTION); \
glLoadMatrixf(mat->data); \
glMatrixMode(GL_MODELVIEW); \
glLoadIdentity()
2014-09-12 00:51:23 +00:00
void gl_set_viewport(gl_t *gl, unsigned width, unsigned height,
bool force_full, bool allow_rotate);
2014-10-02 11:32:42 +00:00
void gl_load_texture_data(GLuint obj, const struct texture_image *img,
GLenum wrap, bool linear, bool mipmap);
bool gl_load_luts(const struct gfx_shader *generic_shader,
GLuint *lut_textures);
2014-10-02 11:32:42 +00:00
#endif