mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2025-12-20 02:20:13 +01:00
Future development will need to evaluate pipelines with curves and matrices. Such pipelines naturally operate on vec3, as matrices cannot be operated one channel at a time. Make weston_color_curve_sample() operate on arrays of vec3. Its currently only caller, weston_color_curve_to_3x1D_LUT(), is modified to employ a temporary array for the API impedance mismatch. This workaround will be removed later as weston_color_curve_to_3x1D_LUT() itself will be converted to operate on vec3 arrays. weston_v3f_array_to_planar() documentation was generated with AI. weston_color_curve_sample() is restructured a little bit, attempting to make it simpler to read. color-operations.h gets the #includes needed to make it self-standing. Assisted-by: Github Copilot (Claude Sonnet 3.5) Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.com>
41 lines
1.5 KiB
C
41 lines
1.5 KiB
C
/*
|
|
* Copyright 2025 Collabora, Ltd.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
* a copy of this software and associated documentation files (the
|
|
* "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
* the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice (including the
|
|
* next paragraph) shall be included in all copies or substantial
|
|
* portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
#ifndef WESTON_COLOR_OPERATIONS_H
|
|
#define WESTON_COLOR_OPERATIONS_H
|
|
|
|
#include <libweston/libweston.h>
|
|
#include <libweston/linalg-3.h>
|
|
|
|
#include "color.h"
|
|
|
|
void
|
|
weston_color_curve_sample(struct weston_compositor *compositor,
|
|
struct weston_color_curve *curve,
|
|
const struct weston_vec3f *in,
|
|
struct weston_vec3f *out,
|
|
size_t len);
|
|
|
|
#endif /* WESTON_COLOR_OPERATIONS_H */
|