diff options
author | sanine-a <sanine.not@pm.me> | 2020-05-21 10:23:34 -0500 |
---|---|---|
committer | sanine-a <sanine.not@pm.me> | 2020-05-21 10:23:34 -0500 |
commit | 5379b4214696e64902c5e10b3d4ef3d503fddcc4 (patch) | |
tree | 589270053f276534b2f1f12bf20e62de209af7f0 /include | |
parent | 8b7e8a1a3e77b4e3b56ea9025af8b254faa16c13 (diff) |
refactor: rename honey_shader_set_matrix_4vf to honey_shader_set_mat4
Diffstat (limited to 'include')
-rw-r--r-- | include/shader.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/shader.h b/include/shader.h index bfdb090..610322e 100644 --- a/include/shader.h +++ b/include/shader.h @@ -50,9 +50,9 @@ void honey_shader_set_int(honey_shader shader, * @param[in] int_name The name of the matrix uniform * @param[in] number The value of the matrix uniform */ -void honey_shader_set_matrix_4fv(honey_shader shader, - char* matrix_name, - float* matrix); +void honey_shader_set_mat4(honey_shader shader, + char* matrix_name, + float* matrix); /** @brief Use a shader. */ |