From 5379b4214696e64902c5e10b3d4ef3d503fddcc4 Mon Sep 17 00:00:00 2001 From: sanine-a Date: Thu, 21 May 2020 10:23:34 -0500 Subject: refactor: rename honey_shader_set_matrix_4vf to honey_shader_set_mat4 --- include/shader.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include') 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. */ -- cgit v1.2.1