RetroArch/gfx/shader_cg.h

80 lines
2.3 KiB
C
Raw Normal View History

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
*
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/>.
*/
2012-04-21 21:25:32 +00:00
#ifndef __RARCH_CG_H
#define __RARCH_CG_H
2011-12-24 12:46:12 +00:00
#include "../boolean.h"
#include "gl_common.h"
#include <stdint.h>
bool gl_cg_init(const char *path);
2012-02-20 15:22:58 +00:00
bool gl_cg_reinit(const char *path);
void gl_cg_deinit(void);
void gl_cg_set_proj_matrix(void);
void gl_cg_set_params(unsigned width, unsigned height,
unsigned tex_width, unsigned tex_height,
unsigned out_width, unsigned out_height,
unsigned frame_count,
const struct gl_tex_info *info,
const struct gl_tex_info *prev_info,
const struct gl_tex_info *fbo_info,
unsigned fbo_info_cnt);
2011-03-06 18:56:35 +00:00
void gl_cg_use(unsigned index);
2011-03-12 14:30:57 +00:00
unsigned gl_cg_num(void);
2011-03-14 20:28:30 +00:00
bool gl_cg_filter_type(unsigned index, bool *smooth);
void gl_cg_shader_scale(unsigned index, struct gl_fbo_scale *scale);
2011-03-14 20:28:30 +00:00
// Used on PS3, but not really platform specific.
2012-04-21 21:25:32 +00:00
#define RARCH_CG_MAX_SHADERS 16
#define RARCH_CG_MENU_SHADER_INDEX (RARCH_CG_MAX_SHADERS - 1)
2012-01-25 21:55:34 +00:00
void gl_cg_set_menu_shader(const char *path);
void gl_cg_set_compiler_args(const char **argv);
bool gl_cg_load_shader(unsigned index, const char *path);
2012-02-08 16:23:44 +00:00
struct gl_cg_cgp_info
{
const char *shader[2];
bool filter_linear[2];
bool render_to_texture;
float fbo_scale;
2012-02-20 14:45:38 +00:00
const char *lut_texture_path;
const char *lut_texture_id;
bool lut_texture_absolute;
2012-02-08 16:23:44 +00:00
};
bool gl_cg_save_cgp(const char *path, const struct gl_cg_cgp_info *info);
2012-02-22 19:45:58 +00:00
void gl_cg_invalidate_context(void); // Call when resetting GL context on PS3.
2012-02-08 16:23:44 +00:00
2012-02-22 22:35:01 +00:00
struct gl_cg_lut_info
{
char id[64];
GLuint tex;
};
unsigned gl_cg_get_lut_info(struct gl_cg_lut_info *info, unsigned elems);
#endif