2012-04-21 21:13:50 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2012-01-08 00:08:18 +00:00
|
|
|
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
|
2011-01-11 21:13:55 +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
|
2011-01-11 21:13:55 +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;
|
2011-01-11 21:13:55 +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.
|
2011-01-11 21:13:55 +00:00
|
|
|
* 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"
|
2012-08-09 20:33:32 +00:00
|
|
|
#include "math/matrix.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
|
2011-01-11 21:13:55 +00:00
|
|
|
|
2011-12-07 00:13:06 +00:00
|
|
|
#if defined(__APPLE__)
|
2011-03-14 21:09:35 +00:00
|
|
|
#include <OpenGL/gl.h>
|
|
|
|
#include <OpenGL/glext.h>
|
2012-07-01 20:44:33 +00:00
|
|
|
#elif defined(__CELLOS_LV2__) && !defined(__PSL1GHT__)
|
2011-11-30 17:32:45 +00:00
|
|
|
#include <PSGL/psgl.h>
|
|
|
|
#include <PSGL/psglu.h>
|
|
|
|
#include <GLES/glext.h>
|
2012-07-01 20:44:33 +00:00
|
|
|
#elif defined(__CELLOS_LV2__) && defined(__PSL1GHT__)
|
|
|
|
#include <EGL/egl.h>
|
|
|
|
#include <GL3/gl3.h>
|
|
|
|
#include <GL3/gl3ext.h>
|
|
|
|
#define GL_QUADS 0x0007
|
2011-11-30 17:32:45 +00:00
|
|
|
#else
|
2011-03-14 21:09:35 +00:00
|
|
|
#define GL_GLEXT_PROTOTYPES
|
|
|
|
#include <GL/gl.h>
|
|
|
|
#include <GL/glext.h>
|
|
|
|
#endif
|
|
|
|
|
2011-01-11 21:13:55 +00:00
|
|
|
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");
|
2011-01-11 21:13:55 +00:00
|
|
|
break;
|
|
|
|
case GL_INVALID_VALUE:
|
2012-04-21 21:25:32 +00:00
|
|
|
RARCH_ERR("GL: Invalid value. (You're not alone.)\n");
|
2011-01-11 21:13:55 +00:00
|
|
|
break;
|
|
|
|
case GL_INVALID_OPERATION:
|
2012-04-21 21:25:32 +00:00
|
|
|
RARCH_ERR("GL: Invalid operation.\n");
|
2011-01-11 21:13:55 +00:00
|
|
|
break;
|
|
|
|
case GL_OUT_OF_MEMORY:
|
2012-04-21 21:25:32 +00:00
|
|
|
RARCH_ERR("GL: Out of memory. Harhar.\n");
|
2011-01-11 21:13:55 +00:00
|
|
|
break;
|
|
|
|
case GL_NO_ERROR:
|
|
|
|
return true;
|
|
|
|
default:
|
2012-04-21 21:25:32 +00:00
|
|
|
RARCH_ERR("Non specified error :v\n");
|
2011-01-11 21:13:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-05-26 13:21:51 +00:00
|
|
|
static inline unsigned get_alignment(unsigned pitch)
|
|
|
|
{
|
|
|
|
if (pitch & 1)
|
|
|
|
return 1;
|
|
|
|
if (pitch & 2)
|
|
|
|
return 2;
|
|
|
|
if (pitch & 4)
|
|
|
|
return 4;
|
|
|
|
return 8;
|
|
|
|
}
|
|
|
|
|
2011-03-14 21:09:35 +00:00
|
|
|
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;
|
2011-03-14 21:09:35 +00:00
|
|
|
unsigned width;
|
|
|
|
unsigned height;
|
2011-03-14 21:51:03 +00:00
|
|
|
};
|
2011-03-14 21:09:35 +00:00
|
|
|
|
2011-03-27 18:29:47 +00:00
|
|
|
enum gl_scale_type
|
|
|
|
{
|
2012-04-21 21:25:32 +00:00
|
|
|
RARCH_SCALE_ABSOLUTE,
|
|
|
|
RARCH_SCALE_INPUT,
|
|
|
|
RARCH_SCALE_VIEWPORT
|
2011-03-27 18:29:47 +00:00
|
|
|
};
|
|
|
|
|
2011-03-14 21:51:03 +00:00
|
|
|
struct gl_fbo_scale
|
|
|
|
{
|
2011-03-27 18:29:47 +00:00
|
|
|
enum gl_scale_type type_x;
|
|
|
|
enum gl_scale_type type_y;
|
2011-03-14 21:51:03 +00:00
|
|
|
float scale_x;
|
|
|
|
float scale_y;
|
2011-03-27 18:29:47 +00:00
|
|
|
unsigned abs_x;
|
|
|
|
unsigned abs_y;
|
2011-03-14 21:51:03 +00:00
|
|
|
bool valid;
|
2011-03-14 21:09:35 +00:00
|
|
|
};
|
|
|
|
|
2012-05-27 21:14:46 +00:00
|
|
|
struct gl_ortho
|
2012-05-27 20:39:29 +00:00
|
|
|
{
|
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
|
|
|
};
|
2012-05-27 20:39:29 +00:00
|
|
|
|
2011-05-23 15:41:52 +00:00
|
|
|
struct gl_tex_info
|
|
|
|
{
|
|
|
|
GLuint tex;
|
2011-07-03 13:39:35 +00:00
|
|
|
GLfloat input_size[2];
|
|
|
|
GLfloat tex_size[2];
|
|
|
|
GLfloat coord[8];
|
2011-05-23 15:41:52 +00:00
|
|
|
};
|
|
|
|
|
2012-05-26 13:21:51 +00:00
|
|
|
#define MAX_SHADERS 16
|
|
|
|
|
|
|
|
#if defined(HAVE_XML) || defined(HAVE_CG)
|
|
|
|
#define TEXTURES 8
|
|
|
|
#else
|
|
|
|
#define TEXTURES 1
|
|
|
|
#endif
|
|
|
|
#define TEXTURES_MASK (TEXTURES - 1)
|
|
|
|
|
|
|
|
typedef struct gl
|
|
|
|
{
|
2012-05-27 14:23:01 +00:00
|
|
|
#ifdef RARCH_CONSOLE
|
|
|
|
bool block_swap;
|
2012-05-27 15:02:19 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_CG_MENU
|
|
|
|
bool menu_render;
|
|
|
|
GLuint menu_texture_id;
|
2012-05-27 14:23:01 +00:00
|
|
|
#endif
|
2012-05-26 13:21:51 +00:00
|
|
|
bool vsync;
|
|
|
|
GLuint texture[TEXTURES];
|
|
|
|
unsigned tex_index; // For use with PREV.
|
|
|
|
struct gl_tex_info prev_info[TEXTURES];
|
|
|
|
GLuint tex_filter;
|
|
|
|
|
|
|
|
void *empty_buf;
|
|
|
|
|
|
|
|
unsigned frame_count;
|
|
|
|
|
|
|
|
#ifdef HAVE_FBO
|
|
|
|
// Render-to-texture, multipass shaders
|
|
|
|
GLuint fbo[MAX_SHADERS];
|
|
|
|
GLuint fbo_texture[MAX_SHADERS];
|
|
|
|
struct gl_fbo_rect fbo_rect[MAX_SHADERS];
|
|
|
|
struct gl_fbo_scale fbo_scale[MAX_SHADERS];
|
|
|
|
bool render_to_tex;
|
|
|
|
int fbo_pass;
|
|
|
|
bool fbo_inited;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
bool should_resize;
|
|
|
|
bool quitting;
|
|
|
|
bool fullscreen;
|
|
|
|
bool keep_aspect;
|
|
|
|
unsigned rotation;
|
|
|
|
|
|
|
|
unsigned full_x, full_y;
|
|
|
|
|
|
|
|
unsigned win_width;
|
|
|
|
unsigned win_height;
|
|
|
|
unsigned vp_width, vp_out_width;
|
|
|
|
unsigned vp_height, vp_out_height;
|
|
|
|
unsigned last_width[TEXTURES];
|
|
|
|
unsigned last_height[TEXTURES];
|
|
|
|
unsigned tex_w, tex_h;
|
|
|
|
GLfloat tex_coords[8];
|
2012-08-09 20:33:32 +00:00
|
|
|
math_matrix mvp;
|
2012-05-26 13:21:51 +00:00
|
|
|
|
2012-05-26 13:45:00 +00:00
|
|
|
#ifdef __CELLOS_LV2__
|
|
|
|
GLuint pbo;
|
|
|
|
#endif
|
2012-05-26 13:21:51 +00:00
|
|
|
GLenum texture_type; // XBGR1555 or ARGB
|
|
|
|
GLenum texture_fmt;
|
|
|
|
unsigned base_size; // 2 or 4
|
|
|
|
|
|
|
|
#ifdef HAVE_FREETYPE
|
|
|
|
font_renderer_t *font;
|
|
|
|
GLuint font_tex;
|
|
|
|
int font_tex_w, font_tex_h;
|
|
|
|
void *font_tex_empty_buf;
|
|
|
|
char font_last_msg[256];
|
|
|
|
int font_last_width, font_last_height;
|
|
|
|
GLfloat font_color[16];
|
|
|
|
GLfloat font_color_dark[16];
|
|
|
|
#endif
|
|
|
|
} gl_t;
|
|
|
|
|
2011-05-18 20:11:34 +00:00
|
|
|
// Windows ... <_<
|
2011-05-22 16:48:43 +00:00
|
|
|
#if (defined(HAVE_XML) || defined(HAVE_CG)) && defined(_WIN32)
|
2011-05-18 20:40:42 +00:00
|
|
|
extern PFNGLCLIENTACTIVETEXTUREPROC pglClientActiveTexture;
|
|
|
|
extern PFNGLACTIVETEXTUREPROC pglActiveTexture;
|
2011-05-18 20:11:34 +00:00
|
|
|
#else
|
|
|
|
#define pglClientActiveTexture glClientActiveTexture
|
|
|
|
#define pglActiveTexture glActiveTexture
|
|
|
|
#endif
|
|
|
|
|
2012-07-01 20:44:33 +00:00
|
|
|
#if defined(__CELLOS_LV2__) && !defined(__PSL1GHT__)
|
2012-05-27 16:46:20 +00:00
|
|
|
#define RARCH_GL_INTERNAL_FORMAT GL_ARGB_SCE
|
|
|
|
#define RARCH_GL_TEXTURE_TYPE GL_ARGB_SCE
|
|
|
|
#define RARCH_GL_FORMAT32 GL_UNSIGNED_INT_8_8_8_8
|
|
|
|
#define RARCH_GL_FORMAT16 GL_RGB5_A1
|
|
|
|
#else
|
2012-05-26 14:29:02 +00:00
|
|
|
#define RARCH_GL_INTERNAL_FORMAT GL_RGBA
|
|
|
|
#define RARCH_GL_TEXTURE_TYPE GL_BGRA
|
|
|
|
#define RARCH_GL_FORMAT32 GL_UNSIGNED_INT_8_8_8_8_REV
|
|
|
|
#define RARCH_GL_FORMAT16 GL_UNSIGNED_SHORT_1_5_5_5_REV
|
2012-05-27 16:46:20 +00:00
|
|
|
#endif
|
2012-05-26 14:29:02 +00:00
|
|
|
|
2012-05-27 10:38:07 +00:00
|
|
|
void gl_shader_use(unsigned index);
|
2012-05-27 21:14:46 +00:00
|
|
|
void gl_set_projection(gl_t *gl, struct gl_ortho *ortho, bool allow_rotate);
|
2012-05-27 10:26:43 +00:00
|
|
|
void gl_set_viewport(gl_t *gl, unsigned width, unsigned height, bool force_full, bool allow_rotate);
|
|
|
|
|
2012-06-08 20:39:18 +00:00
|
|
|
void gl_init_fbo(gl_t *gl, unsigned width, unsigned height);
|
2012-06-05 16:11:42 +00:00
|
|
|
void gl_deinit_fbo(gl_t *gl);
|
|
|
|
|
2011-01-11 21:13:55 +00:00
|
|
|
#endif
|