mirror of
				https://github.com/labwc/labwc.git
				synced 2025-11-03 09:01:51 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			137 lines
		
	
	
	
		
			4.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			137 lines
		
	
	
	
		
			4.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0-only
 | 
						|
/*
 | 
						|
 * Based on wlroots/types/wlr_buffer.c
 | 
						|
 *
 | 
						|
 * Copyright (c) 2017, 2018 Drew DeVault
 | 
						|
 * Copyright (c) 2018-2021 Simon Ser, Simon Zeni
 | 
						|
 | 
						|
 * 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 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.
 | 
						|
 */
 | 
						|
 | 
						|
#include <assert.h>
 | 
						|
#include <stdlib.h>
 | 
						|
#include <drm_fourcc.h>
 | 
						|
#include <wlr/interfaces/wlr_buffer.h>
 | 
						|
#include "buffer.h"
 | 
						|
#include "common/mem.h"
 | 
						|
 | 
						|
static const struct wlr_buffer_impl data_buffer_impl;
 | 
						|
 | 
						|
static struct lab_data_buffer *
 | 
						|
data_buffer_from_buffer(struct wlr_buffer *buffer)
 | 
						|
{
 | 
						|
	assert(buffer->impl == &data_buffer_impl);
 | 
						|
	return (struct lab_data_buffer *)buffer;
 | 
						|
}
 | 
						|
 | 
						|
static void
 | 
						|
data_buffer_destroy(struct wlr_buffer *wlr_buffer)
 | 
						|
{
 | 
						|
	struct lab_data_buffer *buffer = data_buffer_from_buffer(wlr_buffer);
 | 
						|
	if (!buffer->free_on_destroy) {
 | 
						|
		free(buffer);
 | 
						|
		return;
 | 
						|
	}
 | 
						|
	if (buffer->cairo) {
 | 
						|
		cairo_surface_t *surf = cairo_get_target(buffer->cairo);
 | 
						|
		cairo_destroy(buffer->cairo);
 | 
						|
		cairo_surface_destroy(surf);
 | 
						|
	} else if (buffer->data) {
 | 
						|
		free(buffer->data);
 | 
						|
		buffer->data = NULL;
 | 
						|
	}
 | 
						|
	free(buffer);
 | 
						|
}
 | 
						|
 | 
						|
static bool
 | 
						|
data_buffer_begin_data_ptr_access(struct wlr_buffer *wlr_buffer, uint32_t flags,
 | 
						|
		void **data, uint32_t *format, size_t *stride)
 | 
						|
{
 | 
						|
	struct lab_data_buffer *buffer =
 | 
						|
		wl_container_of(wlr_buffer, buffer, base);
 | 
						|
	assert(buffer->data);
 | 
						|
	*data = (void *)buffer->data;
 | 
						|
	*format = buffer->format;
 | 
						|
	*stride = buffer->stride;
 | 
						|
	return true;
 | 
						|
}
 | 
						|
 | 
						|
static void
 | 
						|
data_buffer_end_data_ptr_access(struct wlr_buffer *wlr_buffer)
 | 
						|
{
 | 
						|
	/* noop */
 | 
						|
}
 | 
						|
 | 
						|
static const struct wlr_buffer_impl data_buffer_impl = {
 | 
						|
	.destroy = data_buffer_destroy,
 | 
						|
	.begin_data_ptr_access = data_buffer_begin_data_ptr_access,
 | 
						|
	.end_data_ptr_access = data_buffer_end_data_ptr_access,
 | 
						|
};
 | 
						|
 | 
						|
struct lab_data_buffer *
 | 
						|
buffer_create_cairo(uint32_t width, uint32_t height, float scale,
 | 
						|
	bool free_on_destroy)
 | 
						|
{
 | 
						|
	struct lab_data_buffer *buffer = znew(*buffer);
 | 
						|
	buffer->unscaled_width = width;
 | 
						|
	buffer->unscaled_height = height;
 | 
						|
	width *= scale;
 | 
						|
	height *= scale;
 | 
						|
 | 
						|
	/* Allocate the buffer with the scaled size */
 | 
						|
	wlr_buffer_init(&buffer->base, &data_buffer_impl, width, height);
 | 
						|
	cairo_surface_t *surf =
 | 
						|
		cairo_image_surface_create(CAIRO_FORMAT_ARGB32, width, height);
 | 
						|
 | 
						|
	/**
 | 
						|
	 * Tell cairo about the device scale so we can keep drawing in unscaled
 | 
						|
	 * coordinate space. Pango will automatically use the cairo scale attribute
 | 
						|
	 * as well when creating text on this surface.
 | 
						|
	 *
 | 
						|
	 * For a more complete explanation see PR #389
 | 
						|
	 */
 | 
						|
	cairo_surface_set_device_scale(surf, scale, scale);
 | 
						|
 | 
						|
	buffer->cairo = cairo_create(surf);
 | 
						|
	buffer->data = cairo_image_surface_get_data(surf);
 | 
						|
	buffer->format = DRM_FORMAT_ARGB8888;
 | 
						|
	buffer->stride = cairo_image_surface_get_stride(surf);
 | 
						|
	buffer->free_on_destroy = free_on_destroy;
 | 
						|
 | 
						|
	if (!buffer->data) {
 | 
						|
		cairo_destroy(buffer->cairo);
 | 
						|
		cairo_surface_destroy(surf);
 | 
						|
		free(buffer);
 | 
						|
		buffer = NULL;
 | 
						|
	}
 | 
						|
	return buffer;
 | 
						|
}
 | 
						|
 | 
						|
struct lab_data_buffer *
 | 
						|
buffer_create_wrap(void *pixel_data, uint32_t width, uint32_t height,
 | 
						|
	uint32_t stride, bool free_on_destroy)
 | 
						|
{
 | 
						|
	struct lab_data_buffer *buffer = znew(*buffer);
 | 
						|
	wlr_buffer_init(&buffer->base, &data_buffer_impl, width, height);
 | 
						|
	buffer->data = pixel_data;
 | 
						|
	buffer->format = DRM_FORMAT_ARGB8888;
 | 
						|
	buffer->stride = stride;
 | 
						|
	buffer->free_on_destroy = free_on_destroy;
 | 
						|
	return buffer;
 | 
						|
}
 |