2024-11-28 19:21:18 +09:00
|
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
|
|
#ifndef LABWC_SCALED_IMG_BUFFER_H
|
|
|
|
|
|
#define LABWC_SCALED_IMG_BUFFER_H
|
|
|
|
|
|
|
|
|
|
|
|
struct wlr_scene_tree;
|
|
|
|
|
|
struct wlr_scene_node;
|
|
|
|
|
|
struct wlr_scene_buffer;
|
|
|
|
|
|
struct lab_img;
|
|
|
|
|
|
|
|
|
|
|
|
struct scaled_img_buffer {
|
2025-09-02 17:47:01 +09:00
|
|
|
|
struct scaled_buffer *scaled_buffer;
|
2024-11-28 19:21:18 +09:00
|
|
|
|
struct wlr_scene_buffer *scene_buffer;
|
|
|
|
|
|
struct lab_img *img;
|
|
|
|
|
|
int width;
|
|
|
|
|
|
int height;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-01-05 17:28:06 +01:00
|
|
|
|
/*
|
|
|
|
|
|
* | |
|
|
|
|
|
|
* .------------------. .------------.
|
|
|
|
|
|
* scaled_img_buffer | new_output_scale | | set_buffer |
|
|
|
|
|
|
* architecture ´------------------` ´------------`
|
|
|
|
|
|
* | ^
|
|
|
|
|
|
* .--------------------------------|----------------|-------------.
|
|
|
|
|
|
* | v | |
|
|
|
|
|
|
* | .-------------------. .-------------------------. |
|
|
|
|
|
|
* | | scaled_img_buffer |----| wlr_buffer LRU cache(2) |<----, |
|
|
|
|
|
|
* | ´-------------------` ´-------------------------` | |
|
|
|
|
|
|
* | | | | |
|
|
|
|
|
|
* | | .--------------------------. | |
|
|
|
|
|
|
* | | | wlr_buffer LRU cache of | | |
|
|
|
|
|
|
* .-------. | | | other scaled_img_buffers | | |
|
|
|
|
|
|
* | theme | | | | with lab_img_equal() | | |
|
|
|
|
|
|
* ´-------` | | ´--------------------------` | |
|
|
|
|
|
|
* | | | / | | |
|
|
|
|
|
|
* | | | not found found | |
|
|
|
|
|
|
* .---------. | .---------. .----------. .------------. | |
|
|
|
|
|
|
* | lab_img |-img_copy-->| lab_img |-----| render() |--->| wlr_buffer |-----` |
|
|
|
|
|
|
* ´---------` | ´---------` ´----------` ´------------` |
|
|
|
|
|
|
* \ | / |
|
|
|
|
|
|
* \ ´----------/----------------------------------------------------`
|
|
|
|
|
|
* \ /
|
|
|
|
|
|
* .----------------. lab_img provides:
|
|
|
|
|
|
* | lab_img_data | - render function
|
|
|
|
|
|
* | refcount=2 | - list of modification functions
|
|
|
|
|
|
* | `-----------------. to apply on top of lib_img_data
|
|
|
|
|
|
* | | when rendering
|
|
|
|
|
|
* | provides (depending on backend): | - lab_img_equal() comparing the
|
|
|
|
|
|
* | - librsvg handle | lab_img_data reference and
|
|
|
|
|
|
* | - cairo surface | modification function pointers
|
|
|
|
|
|
* ´----------------------------------` of two given lab_img instances
|
|
|
|
|
|
*
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
2024-11-28 19:21:18 +09:00
|
|
|
|
/*
|
|
|
|
|
|
* Create an auto scaling image buffer, providing a wlr_scene_buffer node for
|
2025-09-02 17:47:01 +09:00
|
|
|
|
* display. It gets destroyed automatically when the backing scaled_buffer
|
2024-11-28 19:21:18 +09:00
|
|
|
|
* is being destroyed which in turn happens automatically when the backing
|
|
|
|
|
|
* wlr_scene_buffer (or one of its parents) is being destroyed.
|
2025-01-04 00:05:12 +09:00
|
|
|
|
*
|
|
|
|
|
|
* This function clones the lab_img passed as the image source, so callers are
|
|
|
|
|
|
* free to destroy it.
|
2024-11-28 19:21:18 +09:00
|
|
|
|
*/
|
|
|
|
|
|
struct scaled_img_buffer *scaled_img_buffer_create(struct wlr_scene_tree *parent,
|
2025-01-09 17:20:08 +09:00
|
|
|
|
struct lab_img *img, int width, int height);
|
2024-11-28 19:21:18 +09:00
|
|
|
|
|
|
|
|
|
|
#endif /* LABWC_SCALED_IMG_BUFFER_H */
|