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>
|
2016-06-03 03:43:49 +00:00
|
|
|
#include <retro_common_api.h>
|
2013-04-12 22:01:28 +00:00
|
|
|
|
2015-11-30 21:29:16 +00:00
|
|
|
#include <gfx/math/matrix_4x4.h>
|
|
|
|
|
2016-04-17 05:12:48 +00:00
|
|
|
#include "video_coord_array.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"
|
|
|
|
|
2016-04-15 23:50:20 +00:00
|
|
|
#define VIDEO_SHADER_STOCK_BLEND (GFX_MAX_SHADERS - 1)
|
|
|
|
#define VIDEO_SHADER_MENU (GFX_MAX_SHADERS - 2)
|
2016-04-24 20:03:39 +00:00
|
|
|
#define VIDEO_SHADER_MENU_SEC (GFX_MAX_SHADERS - 3)
|
2016-11-17 20:08:50 +00:00
|
|
|
#define VIDEO_SHADER_MENU_3 (GFX_MAX_SHADERS - 4)
|
2016-02-14 18:01:37 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(_XBOX360)
|
|
|
|
#define DEFAULT_SHADER_TYPE RARCH_SHADER_HLSL
|
2016-04-17 04:17:23 +00:00
|
|
|
#elif defined(__PSL1GHT__) || defined(HAVE_OPENGLES2) || defined(HAVE_GLSL)
|
2016-02-14 18:01:37 +00:00
|
|
|
#define DEFAULT_SHADER_TYPE RARCH_SHADER_GLSL
|
2016-04-16 05:24:22 +00:00
|
|
|
#elif defined(__CELLOS_LV2__) || defined(HAVE_CG)
|
|
|
|
#define DEFAULT_SHADER_TYPE RARCH_SHADER_CG
|
2016-02-14 18:01:37 +00:00
|
|
|
#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
|
|
|
|
2016-06-03 03:43:49 +00:00
|
|
|
RETRO_BEGIN_DECLS
|
2015-10-25 19:40:36 +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 16:24:31 +00:00
|
|
|
UNIFORM_1I
|
2016-04-13 00:31:49 +00:00
|
|
|
};
|
|
|
|
|
2016-04-16 18:06:18 +00:00
|
|
|
enum shader_program_type
|
|
|
|
{
|
|
|
|
SHADER_PROGRAM_VERTEX = 0,
|
|
|
|
SHADER_PROGRAM_FRAGMENT,
|
|
|
|
SHADER_PROGRAM_COMBINED
|
|
|
|
};
|
|
|
|
|
2016-04-13 18:06:43 +00:00
|
|
|
struct shader_program_info
|
|
|
|
{
|
2016-04-16 02:56:15 +00:00
|
|
|
void *data;
|
2016-04-13 18:06:43 +00:00
|
|
|
const char *vertex;
|
|
|
|
const char *fragment;
|
|
|
|
const char *combined;
|
2016-04-16 02:56:15 +00:00
|
|
|
unsigned idx;
|
2016-04-13 18:06:43 +00:00
|
|
|
bool is_file;
|
|
|
|
};
|
|
|
|
|
2016-04-13 00:31:49 +00:00
|
|
|
struct uniform_info
|
|
|
|
{
|
2016-04-17 14:07:11 +00:00
|
|
|
unsigned type; /* shader uniform type */
|
2016-04-13 02:21:17 +00:00
|
|
|
bool enabled;
|
2016-04-13 00:31:49 +00:00
|
|
|
|
2016-04-13 02:44:08 +00:00
|
|
|
int32_t location;
|
|
|
|
int32_t count;
|
|
|
|
|
2016-04-16 17:29:45 +00:00
|
|
|
struct
|
|
|
|
{
|
2016-04-16 18:06:18 +00:00
|
|
|
enum shader_program_type type;
|
2016-04-16 17:29:45 +00:00
|
|
|
const char *ident;
|
|
|
|
uint32_t idx;
|
2016-04-17 04:11:48 +00:00
|
|
|
bool add_prefix;
|
2016-04-16 17:29:45 +00:00
|
|
|
bool enable;
|
|
|
|
} lookup;
|
|
|
|
|
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);
|
2016-09-07 12:12:40 +00:00
|
|
|
|
|
|
|
/* Set shader parameters. */
|
2015-12-05 06:33:21 +00:00
|
|
|
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);
|
2016-09-07 12:12:40 +00:00
|
|
|
|
2016-05-15 15:26:23 +00:00
|
|
|
void (*set_uniform_parameter)(void *data, struct uniform_info *param,
|
|
|
|
void *uniform_data);
|
2016-09-07 12:12:40 +00:00
|
|
|
|
|
|
|
/* Compile a shader program. */
|
2016-04-16 02:56:15 +00:00
|
|
|
bool (*compile_program)(void *data, unsigned idx,
|
|
|
|
void *program_data, struct shader_program_info *program_info);
|
2012-11-14 21:51:08 +00:00
|
|
|
|
2016-09-07 12:12:40 +00:00
|
|
|
/* Use a shader program specified by variable 'index'. */
|
2016-04-15 03:08:03 +00:00
|
|
|
void (*use)(void *data, void *shader_data, unsigned index, bool set_active);
|
2016-09-07 12:12:40 +00:00
|
|
|
|
|
|
|
/* Returns the number of currently loaded shaders. */
|
2015-12-05 06:33:21 +00:00
|
|
|
unsigned (*num_shaders)(void *data);
|
2016-09-07 12:12:40 +00:00
|
|
|
|
2015-12-05 06:33:21 +00:00
|
|
|
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,
|
2016-05-10 00:32:49 +00:00
|
|
|
void *shader_data, const struct video_coords *coords);
|
2016-02-07 23:31:11 +00:00
|
|
|
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
|
|
|
|
{
|
2016-04-16 03:14:39 +00:00
|
|
|
enum rarch_shader_type shader_type;
|
2016-02-14 17:41:45 +00:00
|
|
|
const shader_backend_t *shader;
|
2016-04-16 03:14:39 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
bool core_context_enabled;
|
|
|
|
} gl;
|
2016-02-14 17:41:45 +00:00
|
|
|
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
|
|
|
|
{
|
2016-04-15 05:37:06 +00:00
|
|
|
bool set_active;
|
2016-02-14 18:30:48 +00:00
|
|
|
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;
|
|
|
|
|
2016-05-08 19:11:27 +00:00
|
|
|
bool video_shader_driver_get_prev_textures(video_shader_ctx_texture_t *texture);
|
|
|
|
|
|
|
|
bool video_shader_driver_get_ident(video_shader_ctx_ident_t *ident);
|
|
|
|
|
|
|
|
bool video_shader_driver_get_current_shader(video_shader_ctx_t *shader);
|
|
|
|
|
|
|
|
bool video_shader_driver_direct_get_current_shader(video_shader_ctx_t *shader);
|
|
|
|
|
|
|
|
bool video_shader_driver_deinit(void);
|
|
|
|
|
2016-11-20 16:28:51 +00:00
|
|
|
#define video_shader_driver_set_parameter(param) \
|
|
|
|
if (current_shader && current_shader->set_uniform_parameter) \
|
|
|
|
current_shader->set_uniform_parameter(shader_data, ¶m, NULL)
|
2016-05-08 19:11:27 +00:00
|
|
|
|
2016-11-20 15:40:08 +00:00
|
|
|
#define video_shader_driver_set_parameters(params) \
|
|
|
|
if (current_shader && current_shader->set_params) \
|
|
|
|
current_shader->set_params(params.data, shader_data, params.width, params.height, params.tex_width, params.tex_height, params.out_width, params.out_height, params.frame_counter, params.info, params.prev_info, params.feedback_info, params.fbo_info, params.fbo_info_cnt)
|
2016-05-08 19:11:27 +00:00
|
|
|
|
|
|
|
bool video_shader_driver_init_first(void);
|
|
|
|
|
|
|
|
bool video_shader_driver_init(video_shader_ctx_init_t *init);
|
|
|
|
|
|
|
|
bool video_shader_driver_get_feedback_pass(unsigned *data);
|
|
|
|
|
|
|
|
bool video_shader_driver_mipmap_input(unsigned *index);
|
|
|
|
|
2016-11-20 15:48:54 +00:00
|
|
|
#define video_shader_driver_set_coords(coords) \
|
|
|
|
if (current_shader && current_shader->set_coords) \
|
|
|
|
current_shader->set_coords(coords.handle_data, shader_data, (const struct video_coords*)coords.data)
|
2016-05-08 19:11:27 +00:00
|
|
|
|
|
|
|
bool video_shader_driver_scale(video_shader_ctx_scale_t *scaler);
|
|
|
|
|
|
|
|
bool video_shader_driver_info(video_shader_ctx_info_t *shader_info);
|
|
|
|
|
2016-11-20 15:45:06 +00:00
|
|
|
#define video_shader_driver_set_mvp(mvp) \
|
|
|
|
if (mvp.matrix && current_shader && current_shader->set_mvp) \
|
|
|
|
current_shader->set_mvp(mvp.data, shader_data, mvp.matrix) \
|
2016-05-08 19:11:27 +00:00
|
|
|
|
|
|
|
bool video_shader_driver_filter_type(video_shader_ctx_filter_t *filter);
|
|
|
|
|
|
|
|
bool video_shader_driver_compile_program(struct shader_program_info *program_info);
|
|
|
|
|
2016-11-20 15:31:45 +00:00
|
|
|
#define video_shader_driver_use(shader_info) \
|
|
|
|
if (current_shader) \
|
|
|
|
current_shader->use(shader_info.data, shader_data, shader_info.idx, shader_info.set_active)
|
2016-05-08 19:11:27 +00:00
|
|
|
|
|
|
|
bool video_shader_driver_wrap_type(video_shader_ctx_wrap_t *wrap);
|
|
|
|
|
2016-11-20 15:31:45 +00:00
|
|
|
extern const shader_backend_t *current_shader;
|
|
|
|
extern void *shader_data;
|
|
|
|
|
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-06-03 03:43:49 +00:00
|
|
|
RETRO_END_DECLS
|
2015-10-25 19:40:36 +00:00
|
|
|
|
2014-05-09 03:56:55 +00:00
|
|
|
#endif
|