mirror of
https://github.com/labwc/labwc.git
synced 2026-02-11 04:27:51 -05:00
scaled-scene-buffer: restructure source files
Some checks failed
labwc.github.io / notify (push) Has been cancelled
Some checks failed
labwc.github.io / notify (push) Has been cancelled
- Rename `scaled_scene_buffer` to `scaled_buffer`. This makes it clear
that `scaled_{font,img,icon}_buffers` are implementations of it.
- Move the files from `src/common` to `src/scaled-buffer` as
`scaled_icon_buffer` heavily depends on `server` and `view` etc.
This commit is contained in:
parent
02be24bf59
commit
074b27fd47
22 changed files with 128 additions and 125 deletions
266
src/scaled-buffer/scaled-buffer.c
Normal file
266
src/scaled-buffer/scaled-buffer.c
Normal file
|
|
@ -0,0 +1,266 @@
|
|||
// SPDX-License-Identifier: GPL-2.0-only
|
||||
#define _POSIX_C_SOURCE 200809L
|
||||
#include "scaled-buffer/scaled-buffer.h"
|
||||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
#include <wayland-server-core.h>
|
||||
#include <wlr/types/wlr_buffer.h>
|
||||
#include <wlr/types/wlr_output.h>
|
||||
#include <wlr/types/wlr_scene.h>
|
||||
#include <wlr/util/log.h>
|
||||
#include "buffer.h"
|
||||
#include "common/list.h"
|
||||
#include "common/macros.h"
|
||||
#include "common/mem.h"
|
||||
#include "node.h"
|
||||
|
||||
/*
|
||||
* This holds all the scaled_buffers from all the implementers.
|
||||
* This is used to share visually duplicated buffers found via impl->equal().
|
||||
*/
|
||||
static struct wl_list all_scaled_buffers = WL_LIST_INIT(&all_scaled_buffers);
|
||||
|
||||
/* Internal API */
|
||||
static void
|
||||
_cache_entry_destroy(struct scaled_buffer_cache_entry *cache_entry, bool drop_buffer)
|
||||
{
|
||||
wl_list_remove(&cache_entry->link);
|
||||
if (cache_entry->buffer) {
|
||||
/* Allow the buffer to get dropped if there are no further consumers */
|
||||
if (drop_buffer && !cache_entry->buffer->dropped) {
|
||||
wlr_buffer_drop(cache_entry->buffer);
|
||||
}
|
||||
wlr_buffer_unlock(cache_entry->buffer);
|
||||
}
|
||||
free(cache_entry);
|
||||
}
|
||||
|
||||
static struct scaled_buffer_cache_entry *
|
||||
find_cache_for_scale(struct scaled_buffer *scene_buffer, double scale)
|
||||
{
|
||||
struct scaled_buffer_cache_entry *cache_entry;
|
||||
wl_list_for_each(cache_entry, &scene_buffer->cache, link) {
|
||||
if (cache_entry->scale == scale) {
|
||||
return cache_entry;
|
||||
}
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static void
|
||||
_update_buffer(struct scaled_buffer *self, double scale)
|
||||
{
|
||||
self->active_scale = scale;
|
||||
|
||||
/* Search for cached buffer of specified scale */
|
||||
struct scaled_buffer_cache_entry *cache_entry =
|
||||
find_cache_for_scale(self, scale);
|
||||
if (cache_entry) {
|
||||
/* LRU cache, recently used in front */
|
||||
wl_list_remove(&cache_entry->link);
|
||||
wl_list_insert(&self->cache, &cache_entry->link);
|
||||
wlr_scene_buffer_set_buffer(self->scene_buffer, cache_entry->buffer);
|
||||
/*
|
||||
* If found in our local cache,
|
||||
* - self->width and self->height are already set
|
||||
* - wlr_scene_buffer_set_dest_size() has already been called
|
||||
*/
|
||||
return;
|
||||
}
|
||||
|
||||
struct wlr_buffer *wlr_buffer = NULL;
|
||||
|
||||
if (self->impl->equal) {
|
||||
/* Search from other cached scaled-buffers */
|
||||
struct scaled_buffer *scene_buffer;
|
||||
wl_list_for_each(scene_buffer, &all_scaled_buffers, link) {
|
||||
if (scene_buffer == self) {
|
||||
continue;
|
||||
}
|
||||
if (self->impl != scene_buffer->impl) {
|
||||
continue;
|
||||
}
|
||||
if (!self->impl->equal(self, scene_buffer)) {
|
||||
continue;
|
||||
}
|
||||
cache_entry = find_cache_for_scale(scene_buffer, scale);
|
||||
if (!cache_entry) {
|
||||
continue;
|
||||
}
|
||||
|
||||
/* Ensure self->width and self->height are set correctly */
|
||||
self->width = scene_buffer->width;
|
||||
self->height = scene_buffer->height;
|
||||
wlr_buffer = cache_entry->buffer;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (!wlr_buffer) {
|
||||
/*
|
||||
* Create new buffer, will get destroyed along the backing
|
||||
* wlr_buffer
|
||||
*/
|
||||
struct lab_data_buffer *buffer =
|
||||
self->impl->create_buffer(self, scale);
|
||||
if (buffer) {
|
||||
self->width = buffer->logical_width;
|
||||
self->height = buffer->logical_height;
|
||||
wlr_buffer = &buffer->base;
|
||||
} else {
|
||||
self->width = 0;
|
||||
self->height = 0;
|
||||
}
|
||||
}
|
||||
if (wlr_buffer) {
|
||||
/* Ensure the buffer doesn't get deleted behind our back */
|
||||
wlr_buffer_lock(wlr_buffer);
|
||||
}
|
||||
|
||||
/* Create or reuse cache entry */
|
||||
if (wl_list_length(&self->cache) < LAB_SCALED_BUFFER_MAX_CACHE) {
|
||||
cache_entry = znew(*cache_entry);
|
||||
} else {
|
||||
cache_entry = wl_container_of(self->cache.prev, cache_entry, link);
|
||||
if (cache_entry->buffer) {
|
||||
/* Allow the old buffer to get dropped if there are no further consumers */
|
||||
if (self->drop_buffer && !cache_entry->buffer->dropped) {
|
||||
wlr_buffer_drop(cache_entry->buffer);
|
||||
}
|
||||
wlr_buffer_unlock(cache_entry->buffer);
|
||||
}
|
||||
wl_list_remove(&cache_entry->link);
|
||||
}
|
||||
|
||||
/* Update the cache entry */
|
||||
cache_entry->scale = scale;
|
||||
cache_entry->buffer = wlr_buffer;
|
||||
wl_list_insert(&self->cache, &cache_entry->link);
|
||||
|
||||
/* And finally update the wlr_scene_buffer itself */
|
||||
wlr_scene_buffer_set_buffer(self->scene_buffer, cache_entry->buffer);
|
||||
wlr_scene_buffer_set_dest_size(self->scene_buffer, self->width, self->height);
|
||||
}
|
||||
|
||||
/* Internal event handlers */
|
||||
static void
|
||||
_handle_node_destroy(struct wl_listener *listener, void *data)
|
||||
{
|
||||
struct scaled_buffer_cache_entry *cache_entry, *cache_entry_tmp;
|
||||
struct scaled_buffer *self = wl_container_of(listener, self, destroy);
|
||||
|
||||
wl_list_remove(&self->destroy.link);
|
||||
wl_list_remove(&self->outputs_update.link);
|
||||
|
||||
wl_list_for_each_safe(cache_entry, cache_entry_tmp, &self->cache, link) {
|
||||
_cache_entry_destroy(cache_entry, self->drop_buffer);
|
||||
}
|
||||
assert(wl_list_empty(&self->cache));
|
||||
|
||||
if (self->impl->destroy) {
|
||||
self->impl->destroy(self);
|
||||
}
|
||||
wl_list_remove(&self->link);
|
||||
free(self);
|
||||
}
|
||||
|
||||
static void
|
||||
_handle_outputs_update(struct wl_listener *listener, void *data)
|
||||
{
|
||||
struct scaled_buffer *self =
|
||||
wl_container_of(listener, self, outputs_update);
|
||||
|
||||
double max_scale = 0;
|
||||
struct wlr_scene_outputs_update_event *event = data;
|
||||
for (size_t i = 0; i < event->size; i++) {
|
||||
max_scale = MAX(max_scale, event->active[i]->output->scale);
|
||||
}
|
||||
if (max_scale && self->active_scale != max_scale) {
|
||||
_update_buffer(self, max_scale);
|
||||
}
|
||||
}
|
||||
|
||||
/* Public API */
|
||||
struct scaled_buffer *
|
||||
scaled_buffer_create(struct wlr_scene_tree *parent,
|
||||
const struct scaled_buffer_impl *impl,
|
||||
bool drop_buffer)
|
||||
{
|
||||
assert(parent);
|
||||
assert(impl);
|
||||
assert(impl->create_buffer);
|
||||
|
||||
struct scaled_buffer *self = znew(*self);
|
||||
self->scene_buffer = wlr_scene_buffer_create(parent, NULL);
|
||||
if (!self->scene_buffer) {
|
||||
wlr_log(WLR_ERROR, "Failed to create scene buffer");
|
||||
free(self);
|
||||
return NULL;
|
||||
}
|
||||
node_descriptor_create(&self->scene_buffer->node,
|
||||
LAB_NODE_DESC_SCALED_BUFFER, self);
|
||||
|
||||
self->impl = impl;
|
||||
/*
|
||||
* Set active scale to zero so that we always render a new buffer when
|
||||
* entering the first output
|
||||
*/
|
||||
self->active_scale = 0;
|
||||
self->drop_buffer = drop_buffer;
|
||||
wl_list_init(&self->cache);
|
||||
|
||||
wl_list_insert(&all_scaled_buffers, &self->link);
|
||||
|
||||
/* Listen to outputs_update so we get notified about scale changes */
|
||||
self->outputs_update.notify = _handle_outputs_update;
|
||||
wl_signal_add(&self->scene_buffer->events.outputs_update, &self->outputs_update);
|
||||
|
||||
/* Let it destroy automatically when the scene node destroys */
|
||||
self->destroy.notify = _handle_node_destroy;
|
||||
wl_signal_add(&self->scene_buffer->node.events.destroy, &self->destroy);
|
||||
|
||||
return self;
|
||||
}
|
||||
|
||||
void
|
||||
scaled_buffer_request_update(struct scaled_buffer *self,
|
||||
int width, int height)
|
||||
{
|
||||
assert(self);
|
||||
assert(width >= 0);
|
||||
assert(height >= 0);
|
||||
|
||||
struct scaled_buffer_cache_entry *cache_entry, *cache_entry_tmp;
|
||||
wl_list_for_each_safe(cache_entry, cache_entry_tmp, &self->cache, link) {
|
||||
_cache_entry_destroy(cache_entry, self->drop_buffer);
|
||||
}
|
||||
assert(wl_list_empty(&self->cache));
|
||||
|
||||
/*
|
||||
* Tell wlroots about the buffer size so we can receive output_enter
|
||||
* events even when the actual backing buffer is not set yet.
|
||||
* The buffer size set here is updated when the backing buffer is
|
||||
* created in _update_buffer().
|
||||
*/
|
||||
wlr_scene_buffer_set_dest_size(self->scene_buffer, width, height);
|
||||
self->width = width;
|
||||
self->height = height;
|
||||
|
||||
/*
|
||||
* Skip re-rendering if the buffer is not shown yet
|
||||
* TODO: don't re-render also when the buffer is temporarily invisible
|
||||
*/
|
||||
if (self->active_scale > 0) {
|
||||
_update_buffer(self, self->active_scale);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
scaled_buffer_invalidate_sharing(void)
|
||||
{
|
||||
struct scaled_buffer *scene_buffer, *tmp;
|
||||
wl_list_for_each_safe(scene_buffer, tmp, &all_scaled_buffers, link) {
|
||||
wl_list_remove(&scene_buffer->link);
|
||||
wl_list_init(&scene_buffer->link);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue