2012-11-14 21:51:08 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2016-01-10 03:41:52 +00:00
|
|
|
* Copyright (C) 2011-2016 - Daniel De Matteis
|
2012-11-14 21:51:08 +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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2015-01-12 20:41:27 +00:00
|
|
|
#ifndef VIDEO_SHADER_DRIVER_H__
|
|
|
|
#define VIDEO_SHADER_DRIVER_H__
|
2012-11-14 21:51:08 +00:00
|
|
|
|
2014-10-21 03:05:52 +00:00
|
|
|
#include <boolean.h>
|
2013-04-12 22:01:28 +00:00
|
|
|
|
2015-11-30 21:29:16 +00:00
|
|
|
#include <gfx/math/matrix_4x4.h>
|
|
|
|
|
2013-04-12 22:01:28 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2015-01-12 20:41:27 +00:00
|
|
|
#include "../config.h"
|
2013-04-12 22:01:28 +00:00
|
|
|
#endif
|
|
|
|
|
2016-02-14 18:01:37 +00:00
|
|
|
#if defined(HAVE_CG) || defined(HAVE_HLSL) || defined(HAVE_GLSL)
|
|
|
|
#ifndef HAVE_SHADER_MANAGER
|
|
|
|
#define HAVE_SHADER_MANAGER
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "video_shader_parse.h"
|
|
|
|
|
|
|
|
#define GL_SHADER_STOCK_BLEND (GFX_MAX_SHADERS - 1)
|
2016-04-12 15:56:34 +00:00
|
|
|
#define GL_SHADER_STOCK_XMB (GFX_MAX_SHADERS - 2)
|
2016-02-14 18:01:37 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(_XBOX360)
|
|
|
|
#define DEFAULT_SHADER_TYPE RARCH_SHADER_HLSL
|
|
|
|
#elif defined(__PSL1GHT__)
|
|
|
|
#define DEFAULT_SHADER_TYPE RARCH_SHADER_GLSL
|
|
|
|
#elif defined(__CELLOS_LV2__)
|
|
|
|
#define DEFAULT_SHADER_TYPE RARCH_SHADER_CG
|
|
|
|
#elif defined(HAVE_OPENGLES2)
|
|
|
|
#define DEFAULT_SHADER_TYPE RARCH_SHADER_GLSL
|
|
|
|
#else
|
|
|
|
#define DEFAULT_SHADER_TYPE RARCH_SHADER_NONE
|
|
|
|
#endif
|
|
|
|
|
2015-01-12 20:53:04 +00:00
|
|
|
#include "video_context_driver.h"
|
2012-11-14 21:51:08 +00:00
|
|
|
|
2015-10-25 19:40:36 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-02-14 17:12:42 +00:00
|
|
|
enum video_shader_driver_ctl_state
|
|
|
|
{
|
2016-02-14 17:14:51 +00:00
|
|
|
SHADER_CTL_NONE = 0,
|
2016-02-14 17:22:38 +00:00
|
|
|
SHADER_CTL_DEINIT,
|
2016-02-14 17:41:45 +00:00
|
|
|
SHADER_CTL_INIT,
|
2016-02-14 17:17:43 +00:00
|
|
|
/* Finds first suitable shader context driver. */
|
|
|
|
SHADER_CTL_INIT_FIRST,
|
2016-02-14 17:19:48 +00:00
|
|
|
SHADER_CTL_SET_PARAMS,
|
2016-02-14 17:48:17 +00:00
|
|
|
SHADER_CTL_GET_FEEDBACK_PASS,
|
2016-02-14 17:59:42 +00:00
|
|
|
SHADER_CTL_MIPMAP_INPUT,
|
2016-02-14 18:21:54 +00:00
|
|
|
SHADER_CTL_SET_COORDS,
|
2016-02-14 18:30:48 +00:00
|
|
|
SHADER_CTL_SCALE,
|
2016-02-14 18:43:47 +00:00
|
|
|
SHADER_CTL_INFO,
|
2016-02-14 18:51:32 +00:00
|
|
|
SHADER_CTL_SET_MVP,
|
2016-02-14 19:01:39 +00:00
|
|
|
SHADER_CTL_FILTER_TYPE,
|
2016-02-14 20:41:16 +00:00
|
|
|
SHADER_CTL_USE,
|
2016-02-14 20:55:19 +00:00
|
|
|
SHADER_CTL_WRAP_TYPE,
|
2016-02-14 21:13:21 +00:00
|
|
|
SHADER_CTL_GET_CURRENT_SHADER,
|
2016-02-14 21:17:00 +00:00
|
|
|
SHADER_CTL_DIRECT_GET_CURRENT_SHADER,
|
2016-02-14 21:22:40 +00:00
|
|
|
SHADER_CTL_GET_IDENT,
|
|
|
|
SHADER_CTL_GET_PREV_TEXTURES
|
2016-02-14 17:12:42 +00:00
|
|
|
};
|
|
|
|
|
2016-04-13 00:31:49 +00:00
|
|
|
enum shader_uniform_type
|
|
|
|
{
|
|
|
|
UNIFORM_1F = 0,
|
2016-04-13 00:54:01 +00:00
|
|
|
UNIFORM_2F,
|
|
|
|
UNIFORM_3F,
|
|
|
|
UNIFORM_4F,
|
|
|
|
UNIFORM_1FV,
|
|
|
|
UNIFORM_2FV,
|
|
|
|
UNIFORM_3FV,
|
|
|
|
UNIFORM_4FV,
|
2016-04-13 00:31:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct uniform_info
|
|
|
|
{
|
|
|
|
enum shader_uniform_type type;
|
2016-04-13 02:21:17 +00:00
|
|
|
bool enabled;
|
2016-04-13 00:31:49 +00:00
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
2016-04-13 00:54:01 +00:00
|
|
|
intptr_t v0;
|
|
|
|
intptr_t v1;
|
|
|
|
intptr_t v2;
|
|
|
|
intptr_t v3;
|
|
|
|
} integer;
|
|
|
|
|
|
|
|
intptr_t *integerv;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
uintptr_t v0;
|
|
|
|
uintptr_t v1;
|
|
|
|
uintptr_t v2;
|
|
|
|
uintptr_t v3;
|
|
|
|
} unsigned_integer;
|
|
|
|
|
|
|
|
uintptr_t *unsigned_integerv;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
float v0;
|
|
|
|
float v1;
|
|
|
|
float v2;
|
|
|
|
float v3;
|
2016-04-13 00:31:49 +00:00
|
|
|
} f;
|
2016-04-13 00:54:01 +00:00
|
|
|
|
|
|
|
float *floatv;
|
2016-04-13 00:31:49 +00:00
|
|
|
} result;
|
|
|
|
};
|
|
|
|
|
2014-10-02 09:27:11 +00:00
|
|
|
typedef struct shader_backend
|
2012-11-14 21:51:08 +00:00
|
|
|
{
|
2015-12-05 06:33:21 +00:00
|
|
|
void *(*init)(void *data, const char *path);
|
|
|
|
void (*deinit)(void *data);
|
|
|
|
void (*set_params)(void *data, void *shader_data,
|
|
|
|
unsigned width, unsigned height,
|
2012-11-14 21:51:08 +00:00
|
|
|
unsigned tex_width, unsigned tex_height,
|
|
|
|
unsigned out_width, unsigned out_height,
|
|
|
|
unsigned frame_counter,
|
2014-10-02 09:11:34 +00:00
|
|
|
const void *info,
|
|
|
|
const void *prev_info,
|
2015-08-30 16:37:41 +00:00
|
|
|
const void *feedback_info,
|
2014-10-02 09:11:34 +00:00
|
|
|
const void *fbo_info, unsigned fbo_info_cnt);
|
2012-11-14 21:51:08 +00:00
|
|
|
|
2015-12-05 06:33:21 +00:00
|
|
|
void (*use)(void *data, void *shader_data, unsigned index);
|
|
|
|
unsigned (*num_shaders)(void *data);
|
|
|
|
bool (*filter_type)(void *data, unsigned index, bool *smooth);
|
|
|
|
enum gfx_wrap_type (*wrap_type)(void *data, unsigned index);
|
2016-02-07 23:31:11 +00:00
|
|
|
void (*shader_scale)(void *data,
|
|
|
|
unsigned index, struct gfx_fbo_scale *scale);
|
|
|
|
bool (*set_coords)(void *handle_data,
|
|
|
|
void *shader_data, const void *data);
|
|
|
|
bool (*set_mvp)(void *data, void *shader_data,
|
|
|
|
const math_matrix_4x4 *mat);
|
2015-12-05 06:33:21 +00:00
|
|
|
unsigned (*get_prev_textures)(void *data);
|
|
|
|
bool (*get_feedback_pass)(void *data, unsigned *pass);
|
|
|
|
bool (*mipmap_input)(void *data, unsigned index);
|
2013-01-08 02:46:18 +00:00
|
|
|
|
2015-12-05 06:33:21 +00:00
|
|
|
struct video_shader *(*get_current_shader)(void *data);
|
2014-05-23 10:23:08 +00:00
|
|
|
|
2013-01-08 02:46:18 +00:00
|
|
|
enum rarch_shader_type type;
|
2014-10-02 11:42:40 +00:00
|
|
|
|
|
|
|
/* Human readable string. */
|
|
|
|
const char *ident;
|
2014-10-02 09:27:11 +00:00
|
|
|
} shader_backend_t;
|
2014-10-02 09:11:34 +00:00
|
|
|
|
2016-02-14 17:41:45 +00:00
|
|
|
typedef struct video_shader_ctx_init
|
|
|
|
{
|
|
|
|
const shader_backend_t *shader;
|
|
|
|
void *data;
|
|
|
|
const char *path;
|
|
|
|
} video_shader_ctx_init_t;
|
|
|
|
|
2016-02-14 17:09:12 +00:00
|
|
|
typedef struct video_shader_ctx_params
|
|
|
|
{
|
|
|
|
void *data;
|
|
|
|
unsigned width;
|
|
|
|
unsigned height;
|
|
|
|
unsigned tex_width;
|
|
|
|
unsigned tex_height;
|
|
|
|
unsigned out_width;
|
|
|
|
unsigned out_height;
|
|
|
|
unsigned frame_counter;
|
|
|
|
const void *info;
|
|
|
|
const void *prev_info;
|
|
|
|
const void *feedback_info;
|
|
|
|
const void *fbo_info;
|
|
|
|
unsigned fbo_info_cnt;
|
|
|
|
} video_shader_ctx_params_t;
|
|
|
|
|
2016-02-14 17:59:42 +00:00
|
|
|
typedef struct video_shader_ctx_coords
|
|
|
|
{
|
|
|
|
void *handle_data;
|
|
|
|
const void *data;
|
|
|
|
} video_shader_ctx_coords_t;
|
|
|
|
|
2016-02-14 18:21:54 +00:00
|
|
|
typedef struct video_shader_ctx_scale
|
|
|
|
{
|
|
|
|
unsigned idx;
|
|
|
|
struct gfx_fbo_scale *scale;
|
|
|
|
} video_shader_ctx_scale_t;
|
|
|
|
|
2016-02-14 18:30:48 +00:00
|
|
|
typedef struct video_shader_ctx_info
|
|
|
|
{
|
|
|
|
unsigned num;
|
2016-02-14 19:01:39 +00:00
|
|
|
unsigned idx;
|
|
|
|
void *data;
|
2016-02-14 18:30:48 +00:00
|
|
|
} video_shader_ctx_info_t;
|
|
|
|
|
2016-02-14 18:43:47 +00:00
|
|
|
typedef struct video_shader_ctx_mvp
|
|
|
|
{
|
|
|
|
void *data;
|
|
|
|
const math_matrix_4x4 *matrix;
|
|
|
|
} video_shader_ctx_mvp_t;
|
|
|
|
|
2016-02-14 18:51:32 +00:00
|
|
|
typedef struct video_shader_ctx_filter
|
|
|
|
{
|
|
|
|
unsigned index;
|
|
|
|
bool *smooth;
|
|
|
|
} video_shader_ctx_filter_t;
|
|
|
|
|
2016-02-14 20:41:16 +00:00
|
|
|
typedef struct video_shader_ctx_wrap
|
|
|
|
{
|
|
|
|
unsigned idx;
|
|
|
|
enum gfx_wrap_type type;
|
|
|
|
} video_shader_ctx_wrap_t;
|
|
|
|
|
2016-02-14 20:55:19 +00:00
|
|
|
typedef struct video_shader_ctx
|
|
|
|
{
|
|
|
|
struct video_shader *data;
|
|
|
|
} video_shader_ctx_t;
|
|
|
|
|
2016-02-14 21:17:00 +00:00
|
|
|
typedef struct video_shader_ctx_ident
|
|
|
|
{
|
|
|
|
const char *ident;
|
|
|
|
} video_shader_ctx_ident_t;
|
|
|
|
|
2016-02-14 21:22:40 +00:00
|
|
|
typedef struct video_shader_ctx_texture
|
|
|
|
{
|
|
|
|
unsigned id;
|
|
|
|
} video_shader_ctx_texture_t;
|
|
|
|
|
2014-10-02 09:11:34 +00:00
|
|
|
extern const shader_backend_t gl_glsl_backend;
|
|
|
|
extern const shader_backend_t hlsl_backend;
|
|
|
|
extern const shader_backend_t gl_cg_backend;
|
|
|
|
extern const shader_backend_t shader_null_backend;
|
2012-11-14 21:51:08 +00:00
|
|
|
|
2016-02-14 17:12:42 +00:00
|
|
|
bool video_shader_driver_ctl(enum video_shader_driver_ctl_state state, void *data);
|
|
|
|
|
2015-10-25 19:40:36 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-05-09 03:56:55 +00:00
|
|
|
#endif
|