2012-11-14 21:51:08 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2015-01-07 17:06:50 +00:00
|
|
|
* Copyright (C) 2011-2015 - 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
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
2015-01-12 20:41:27 +00:00
|
|
|
#include "../config.h"
|
2013-04-12 22:01:28 +00:00
|
|
|
#endif
|
|
|
|
|
2015-01-12 20:53:04 +00:00
|
|
|
#include "video_context_driver.h"
|
2014-10-26 01:32:10 +00:00
|
|
|
#include <gfx/math/matrix_4x4.h>
|
2012-11-14 21:51:08 +00:00
|
|
|
|
2014-10-02 09:27:11 +00:00
|
|
|
typedef struct shader_backend
|
2012-11-14 21:51:08 +00:00
|
|
|
{
|
2014-03-07 04:31:24 +00:00
|
|
|
bool (*init)(void *data, const char *path);
|
2012-11-14 21:51:08 +00:00
|
|
|
void (*deinit)(void);
|
2014-03-07 04:51:56 +00:00
|
|
|
void (*set_params)(void *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
|
|
|
|
2014-03-07 04:51:56 +00:00
|
|
|
void (*use)(void *data, unsigned index);
|
2012-11-14 21:51:08 +00:00
|
|
|
unsigned (*num_shaders)(void);
|
|
|
|
bool (*filter_type)(unsigned index, bool *smooth);
|
2013-08-15 22:30:54 +00:00
|
|
|
enum gfx_wrap_type (*wrap_type)(unsigned index);
|
2013-04-06 09:30:56 +00:00
|
|
|
void (*shader_scale)(unsigned index, struct gfx_fbo_scale *scale);
|
2014-10-02 09:11:34 +00:00
|
|
|
bool (*set_coords)(const void *data);
|
2014-10-26 01:32:10 +00:00
|
|
|
bool (*set_mvp)(void *data, const math_matrix_4x4 *mat);
|
2013-07-06 20:10:09 +00:00
|
|
|
unsigned (*get_prev_textures)(void);
|
2015-08-30 16:37:41 +00:00
|
|
|
bool (*get_feedback_pass)(unsigned *pass);
|
2014-05-11 11:13:38 +00:00
|
|
|
bool (*mipmap_input)(unsigned index);
|
2013-01-08 02:46:18 +00:00
|
|
|
|
2015-01-19 20:24:08 +00:00
|
|
|
struct video_shader *(*get_current_shader)(void);
|
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
|
|
|
|
|
|
|
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
|
|
|
|
2014-10-02 09:27:11 +00:00
|
|
|
#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
|
|
|
|
|
|
|
|
#if defined(HAVE_CG) || defined(HAVE_HLSL) || defined(HAVE_GLSL)
|
2014-10-02 11:42:40 +00:00
|
|
|
|
2014-10-02 09:27:11 +00:00
|
|
|
#ifndef HAVE_SHADER_MANAGER
|
|
|
|
#define HAVE_SHADER_MANAGER
|
|
|
|
#endif
|
|
|
|
|
2015-01-12 22:42:50 +00:00
|
|
|
#include "video_shader_parse.h"
|
2014-10-02 09:27:11 +00:00
|
|
|
|
|
|
|
#define GL_SHADER_STOCK_BLEND (GFX_MAX_SHADERS - 1)
|
|
|
|
|
2012-11-14 21:51:08 +00:00
|
|
|
#endif
|
|
|
|
|
2015-10-07 16:18:49 +00:00
|
|
|
void video_shader_scale(unsigned idx,
|
|
|
|
const shader_backend_t *shader, struct gfx_fbo_scale *scale);
|
|
|
|
|
2015-01-11 19:20:34 +00:00
|
|
|
/**
|
|
|
|
* shader_ctx_find_driver:
|
|
|
|
* @ident : Identifier of shader context driver to find.
|
|
|
|
*
|
|
|
|
* Finds shader context driver and initializes.
|
|
|
|
*
|
|
|
|
* Returns: shader context driver if found, otherwise NULL.
|
|
|
|
**/
|
2014-10-02 11:42:40 +00:00
|
|
|
const shader_backend_t *shader_ctx_find_driver(const char *ident);
|
|
|
|
|
2015-01-11 19:20:34 +00:00
|
|
|
/**
|
|
|
|
* shader_ctx_init_first:
|
|
|
|
*
|
|
|
|
* Finds first suitable shader context driver and initializes.
|
|
|
|
*
|
|
|
|
* Returns: shader context driver if found, otherwise NULL.
|
|
|
|
**/
|
2014-10-02 11:42:40 +00:00
|
|
|
const shader_backend_t *shader_ctx_init_first(void);
|
|
|
|
|
2015-02-14 04:24:20 +00:00
|
|
|
struct video_shader *video_shader_driver_get_current_shader(void);
|
|
|
|
|
2014-05-09 03:56:55 +00:00
|
|
|
#endif
|