From 38764943e5fc61c424c018068dc7f6790dddf147 Mon Sep 17 00:00:00 2001 From: Paul Oliver Date: Thu, 29 Feb 2024 02:29:14 +0100 Subject: Format repass. --- include/render.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'include/render.h') diff --git a/include/render.h b/include/render.h index b48fb8f..9a659c4 100644 --- a/include/render.h +++ b/include/render.h @@ -10,7 +10,8 @@ #ifndef SALIS_RENDER_H #define SALIS_RENDER_H -/** Render a 1D image of a given block of memory. This is useful, as rendering +/** +* Render a 1D image of a given block of memory. This is useful, as rendering * directly in python would be too slow. We use openmp for multi-threaded image * generation. * @@ -19,7 +20,8 @@ * @param buff_size Amount of pixels (cells) to be generated * @param buffer Pre-allocated buffer to store the rendered pixels into */ -SALIS_API void sal_ren_get_image(uint32 origin, uint32 cell_size, - uint32 buff_size, uint8_p buffer); +SALIS_API void sal_ren_get_image( + uint32 origin, uint32 cell_size, uint32 buff_size, uint8_p buffer +); #endif -- cgit v1.2.1