diff options
author | Mattias Andrée <maandree@kth.se> | 2023-01-21 19:30:25 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2023-01-21 19:32:34 +0100 |
commit | 4114f87af993991c7aab55ff86be3003d43244f3 (patch) | |
tree | b5841672b4a48c02a9015ddc273f7b64ad9bec3a /libglitter.h | |
parent | Add integer versions of libglitter_compose_* (diff) | |
download | libglitter-4114f87af993991c7aab55ff86be3003d43244f3.tar.gz libglitter-4114f87af993991c7aab55ff86be3003d43244f3.tar.bz2 libglitter-4114f87af993991c7aab55ff86be3003d43244f3.tar.xz |
Add render context
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libglitter.h')
-rw-r--r-- | libglitter.h | 139 |
1 files changed, 78 insertions, 61 deletions
diff --git a/libglitter.h b/libglitter.h index ca358aa..68a7b0e 100644 --- a/libglitter.h +++ b/libglitter.h @@ -7,6 +7,62 @@ /** + * Rendering context for an input raster's specifications + * + * Render context's are thread-safe, however updating them are not + */ +typedef struct libglitter_render_context LIBGLITTER_RENDER_CONTEXT; + + +/** + * Create a render context for an input raster's specifications + * + * Render context's are thread-safe + * + * @param noutputs The number of output buffers + * @param rowsize The number of cells per row in the input raster + * @param widthmul The horizontal number of cells per pixel in the input raster + * @param heightmul The vertical number of cells per pixel in the input raster + * @param cellmap Subpixel map of size `heightmul * widthmul` that maps a + * cell for a pixel in the input raster to an output raster + * (the output raster's index); this is row-major map, and + * each valid value must appear at least once + * @param ncellvalues For each `i` in [0, `noutputs`), `ncellvalues[i]` + * shall be the number of times the value `i` occurs + * in `cellmap` + * @return A render context that can be deallocate using + * `libglitter_free_render_context` or updated with + * `libglitter_update_render_context`; `NULL` on failure + * + * @throws ENOMEM Couldn't not allocate enough memory + * + * If `noutputs` is 3 and either `widthmul` or `heightmul` is 3 and + * the other one is 1, `ncellvalues` will not be used as it is preknown + * that all its values are 1 + */ +LIBGLITTER_RENDER_CONTEXT *libglitter_create_render_context(size_t, size_t, size_t, size_t, + const uint8_t *, const uint8_t *); + +/** + * Update a render context (created by `libglitter_create_render_context`) + * for a new input raster buffer + * + * Updating a render context is not thread-safe + * + * @param this The render context to refresh + * @param rowsize The number of cells per row in the input raster + */ +void libglitter_update_render_context(LIBGLITTER_RENDER_CONTEXT *, size_t); + +/** + * Deallocates a render context (created by `libglitter_create_render_context`) + * + * @param this The render context to deallocate + */ +void libglitter_free_render_context(LIBGLITTER_RENDER_CONTEXT *); + + +/** * Create one raster per monitor colour from a raster of * subpixels (which may be further divided in the raster) * @@ -14,51 +70,32 @@ * model's transfer function: it does not directly give * you appropriate sRGB values * - * @param outputs Array of output rasters, on for each subpixel colour; - * each raster must be initialised to have the value 0 - * in each cell. The function may change the offset for - * each raster, as such, the given pointer shall not be - * used anywhere else during the execution of the function - * and the inner pointers shall be considered undefined - * after the execution of the function - * @param noutputs The number of output buffers + * @param outputs Array of output rasters, on for each subpixel colour. + * The function may change the offset for each raster, + * as such, the given pointer shall not be used anywhere + * else during the execution of the function and the + * inner pointers shall be considered undefined after + * the execution of the function * @param input Input raster; cells are adjacent * @param output_rowsize The number of cells in a row in each output raster * @param output_cellsize The number of values stored in each output raster, * between each cell, plus 1 (that is, the number of * values per cell) - * @param input_rowsize The number of cells in a row in `input` * @param width The horizontal number of pixels in the rasters * @param height The vertical number of pixels in the rasters - * @param widthmul The horizontal number of cells per pixel in `input` - * @param heightmul The vertical number of cells per pixel in `input` - * @param cellmap Subpixel map of size `heightmul * widthmul` that - * maps a cell for a pixel in `input` to an output - * raster (the value of the cell is the output's index - * in `outputs`); this is row-major map, and each valid - * value must appear at least once - * @param ncellweights For each `i` in [0, `noutputs`), `ncellweights[i]` - * shall have the value `1. / x`, where `x` is the - * number of times the value `i` occurs in `cellmap` - * - * The initialisation requirement on the buffers in `outputs` - * does not apply if `noutputs` is 3 and either `widthmul` or - * `heightmul` is 3 and the other one is 1; additionally, in - * this case `ncellweights` will not be used as it is preknown - * that all its values are 1 + * @param render_ctx Rendering context created for the input raster's + * specification */ -void libglitter_compose_double(double **, size_t, const double *restrict, - size_t, size_t, size_t, size_t, size_t, size_t, size_t, - const uint8_t *restrict, const double *restrict); +void libglitter_compose_double(double **, const double *restrict, size_t, size_t, + size_t, size_t, const LIBGLITTER_RENDER_CONTEXT *); /** * This value is identical to `libglitter_compose_double`, * apart from it parameter types, see `libglitter_compose_double` * for details about this function */ -void libglitter_compose_float(float **, size_t, const float *restrict, - size_t, size_t, size_t, size_t, size_t, size_t, size_t, - const uint8_t *restrict, const float *restrict); +void libglitter_compose_float(float **, const float *restrict, size_t, size_t, + size_t, size_t, const LIBGLITTER_RENDER_CONTEXT *); /** * Create one raster per monitor colour from a raster of @@ -74,62 +111,42 @@ void libglitter_compose_float(float **, size_t, const float *restrict, * else during the execution of the function and the * inner pointers shall be considered undefined after * the execution of the function - * @param noutputs The number of output buffers * @param input Input raster; cells are adjacent * @param output_rowsize The number of cells in a row in each output raster * @param output_cellsize The number of values stored in each output raster, * between each cell, plus 1 (that is, the number of * values per cell) - * @param input_rowsize The number of cells in a row in `input` * @param width The horizontal number of pixels in the rasters * @param height The vertical number of pixels in the rasters - * @param widthmul The horizontal number of cells per pixel in `input` - * @param heightmul The vertical number of cells per pixel in `input` - * @param cellmap Subpixel map of size `heightmul * widthmul` that - * maps a cell for a pixel in `input` to an output - * raster (the value of the cell is the output's index - * in `outputs`); this is row-major map, and each valid - * value must appear at least once - * @param ncellvalues For each `i` in [0, `noutputs`), `ncellvalues[i]` - * shall be the number of times the value `i` occurs - * in `cellmap` - * - * If `noutputs` is 3 and either `widthmul` or `heightmul` is 3 and - * the other one is 1, `ncellvalues` will not be used as it is preknown - * that all its values are 1 + * @param render_ctx Rendering context created for the input raster's + * specification */ -void libglitter_compose_uint64(uint64_t **, size_t, const uint64_t *restrict, - size_t, size_t, size_t, size_t, size_t, size_t, size_t, - const uint8_t *restrict, const uint8_t *restrict); +void libglitter_compose_uint64(uint64_t **, const uint64_t *restrict, size_t, size_t, + size_t, size_t, const LIBGLITTER_RENDER_CONTEXT *); /** * This value is identical to `libglitter_compose_uint64`, * apart from it parameter types, see `libglitter_compose_uint64` * for details about this function */ -void libglitter_compose_uint32(uint32_t **, size_t, const uint32_t *restrict, - size_t, size_t, size_t, size_t, size_t, size_t, size_t, - const uint8_t *restrict, const uint8_t *restrict); +void libglitter_compose_uint32(uint32_t **, const uint32_t *restrict, size_t, size_t, + size_t, size_t, const LIBGLITTER_RENDER_CONTEXT *); /** * This value is identical to `libglitter_compose_uint64`, * apart from it parameter types, see `libglitter_compose_uint64` * for details about this function */ -void libglitter_compose_uint16(uint16_t **, size_t, const uint16_t *restrict, - size_t, size_t, size_t, size_t, size_t, size_t, size_t, - const uint8_t *restrict, const uint8_t *restrict); +void libglitter_compose_uint16(uint16_t **, const uint16_t *restrict, size_t, size_t, + size_t, size_t, const LIBGLITTER_RENDER_CONTEXT *); /** * This value is identical to `libglitter_compose_uint64`, * apart from it parameter types, see `libglitter_compose_uint64` * for details about this function */ -void libglitter_compose_uint8(uint8_t **, size_t, const uint8_t *restrict, - size_t, size_t, size_t, size_t, size_t, size_t, size_t, - const uint8_t *restrict, const uint8_t *restrict); - -/* TODO add colour space conversion and saturation */ +void libglitter_compose_uint8(uint8_t **, const uint8_t *restrict, size_t, size_t, + size_t, size_t, const LIBGLITTER_RENDER_CONTEXT *); #endif |