nuclear@16: /* nuclear@16: Printblobs - halftoning display hack nuclear@16: Copyright (C) 2013 John Tsiombikas nuclear@16: nuclear@16: This program is free software: you can redistribute it and/or modify nuclear@16: it under the terms of the GNU General Public License as published by nuclear@16: the Free Software Foundation, either version 3 of the License, or nuclear@16: (at your option) any later version. nuclear@16: nuclear@16: This program is distributed in the hope that it will be useful, nuclear@16: but WITHOUT ANY WARRANTY; without even the implied warranty of nuclear@16: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the nuclear@16: GNU General Public License for more details. nuclear@16: nuclear@16: You should have received a copy of the GNU General Public License nuclear@16: along with this program. If not, see . nuclear@16: */ nuclear@16: #ifndef SDR_H_ nuclear@16: #define SDR_H_ nuclear@16: nuclear@16: #ifdef __cplusplus nuclear@16: extern "C" { nuclear@16: #endif /* __cplusplus */ nuclear@16: nuclear@16: /* ---- shaders ---- */ nuclear@16: unsigned int create_vertex_shader(const char *src); nuclear@16: unsigned int create_pixel_shader(const char *src); nuclear@16: unsigned int create_tessctl_shader(const char *src); nuclear@16: unsigned int create_tesseval_shader(const char *src); nuclear@16: unsigned int create_geometry_shader(const char *src); nuclear@16: unsigned int create_shader(const char *src, unsigned int sdr_type); nuclear@16: void free_shader(unsigned int sdr); nuclear@16: nuclear@16: unsigned int load_vertex_shader(const char *fname); nuclear@16: unsigned int load_pixel_shader(const char *fname); nuclear@16: unsigned int load_tessctl_shader(const char *fname); nuclear@16: unsigned int load_tesseval_shader(const char *fname); nuclear@16: unsigned int load_geometry_shader(const char *fname); nuclear@16: unsigned int load_shader(const char *src, unsigned int sdr_type); nuclear@16: nuclear@16: unsigned int get_vertex_shader(const char *fname); nuclear@16: unsigned int get_pixel_shader(const char *fname); nuclear@16: unsigned int get_tessctl_shader(const char *fname); nuclear@16: unsigned int get_tesseval_shader(const char *fname); nuclear@16: unsigned int get_geometry_shader(const char *fname); nuclear@16: unsigned int get_shader(const char *fname, unsigned int sdr_type); nuclear@16: nuclear@16: int add_shader(const char *fname, unsigned int sdr); nuclear@16: int remove_shader(const char *fname); nuclear@16: nuclear@16: /* ---- gpu programs ---- */ nuclear@16: unsigned int create_program(void); nuclear@16: unsigned int create_program_link(unsigned int sdr0, ...); nuclear@16: unsigned int create_program_load(const char *vfile, const char *pfile); nuclear@16: void free_program(unsigned int sdr); nuclear@16: nuclear@16: void attach_shader(unsigned int prog, unsigned int sdr); nuclear@16: int link_program(unsigned int prog); nuclear@16: int bind_program(unsigned int prog); nuclear@16: nuclear@16: int set_uniform_int(unsigned int prog, const char *name, int val); nuclear@16: int set_uniform_float(unsigned int prog, const char *name, float val); nuclear@16: int set_uniform_float2(unsigned int prog, const char *name, float x, float y); nuclear@16: int set_uniform_float3(unsigned int prog, const char *name, float x, float y, float z); nuclear@16: int set_uniform_float4(unsigned int prog, const char *name, float x, float y, float z, float w); nuclear@16: int set_uniform_matrix4(unsigned int prog, const char *name, float *mat); nuclear@16: int set_uniform_matrix4_transposed(unsigned int prog, const char *name, float *mat); nuclear@16: nuclear@16: int get_attrib_loc(unsigned int prog, const char *name); nuclear@16: void set_attrib_float3(int attr_loc, float x, float y, float z); nuclear@16: nuclear@16: #ifdef __cplusplus nuclear@16: } nuclear@16: #endif /* __cplusplus */ nuclear@16: nuclear@16: #endif /* SDR_H_ */