summaryrefslogtreecommitdiff
path: root/src/shader.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shader.h')
-rw-r--r--src/shader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader.h b/src/shader.h
index 9799e40..b52189a 100644
--- a/src/shader.h
+++ b/src/shader.h
@@ -24,7 +24,7 @@ shader_t * shader_pair_new(const char *vs_src, const char *fs_src, unsigned n_un
shader_t * shader_pair_new_files(const char *vs_path, const char *fs_path, unsigned n_uniforms, const char **uniforms, unsigned n_attributes, const char **attributes);
void shader_ref(shader_t *shader);
shader_t * shader_free(shader_t *shader);
-void shader_use(shader_t *shader, unsigned *res_n_uniforms, int **res_uniforms, unsigned *res_n_attributes, int **res_attributes);
+void shader_use(shader_t *shader, unsigned *res_n_uniforms, int **res_uniform_locations, unsigned *res_n_attributes, int **res_attribute_locations);
int shader_reload_files(shader_t *shader);
#endif
© All Rights Reserved