diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-03-09 16:38:15 +1100 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-03-09 16:38:15 +1100 |
commit | a42c7d493a4b064b858dcd36623e13bc7099df9e (patch) | |
tree | e67849301a71a1fb2b0bb4f414a759acf562f59b /src/renderer/render.h | |
parent | 428e68c9464de6c2d340d67c7fb6a3ac688bb74a (diff) |
chore: format
Diffstat (limited to 'src/renderer/render.h')
-rw-r--r-- | src/renderer/render.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/renderer/render.h b/src/renderer/render.h index 65ace4e..35c2d91 100644 --- a/src/renderer/render.h +++ b/src/renderer/render.h @@ -27,10 +27,10 @@ void texture_data_upload(texture* tex); // #backend // --- Uniforms /** @brief upload a vec3 of f32 to a uniform */ -void uniform_vec3f(u32 program_id, const char *uniform_name, vec3 *value); +void uniform_vec3f(u32 program_id, const char* uniform_name, vec3* value); /** @brief upload a single f32 to a uniform */ -void uniform_f32(u32 program_id, const char *uniform_name, f32 value); +void uniform_f32(u32 program_id, const char* uniform_name, f32 value); /** @brief upload a integer to a uniform */ -void uniform_i32(u32 program_id, const char *uniform_name, i32 value); +void uniform_i32(u32 program_id, const char* uniform_name, i32 value); /** @brief upload a mat4 of f32 to a uniform */ -void uniform_mat4f(u32 program_id, const char *uniform_name, mat4 *value);
\ No newline at end of file +void uniform_mat4f(u32 program_id, const char* uniform_name, mat4* value);
\ No newline at end of file |