2013-01-07 21:39:49 +04:00
|
|
|
/*
|
|
|
|
* Copyright © 2013 Vasily Khoruzhick <anarsoul@gmail.com>
|
|
|
|
*
|
2015-06-12 01:35:43 +03:00
|
|
|
* 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:
|
2013-01-07 21:39:49 +04:00
|
|
|
*
|
2015-06-12 01:35:43 +03:00
|
|
|
* 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.
|
2013-01-07 21:39:49 +04:00
|
|
|
*/
|
|
|
|
|
2013-08-15 04:10:24 +04:00
|
|
|
#include "config.h"
|
|
|
|
|
2019-03-28 17:28:47 +03:00
|
|
|
#include <libweston/libweston.h>
|
2019-07-16 23:11:25 +03:00
|
|
|
#include "backend.h"
|
2019-07-10 13:46:39 +03:00
|
|
|
#include "libweston-internal.h"
|
2013-01-07 21:39:49 +04:00
|
|
|
|
|
|
|
int
|
|
|
|
pixman_renderer_init(struct weston_compositor *ec);
|
|
|
|
|
2020-03-06 15:46:30 +03:00
|
|
|
struct pixman_renderer_output_options {
|
|
|
|
/** Composite into a shadow buffer, copying to the hardware buffer */
|
|
|
|
bool use_shadow;
|
2022-07-22 14:47:03 +03:00
|
|
|
/** Initial framebuffer size */
|
|
|
|
struct weston_size fb_size;
|
2018-04-23 12:44:57 +03:00
|
|
|
};
|
|
|
|
|
2013-01-07 21:39:49 +04:00
|
|
|
void
|
2018-04-23 12:44:56 +03:00
|
|
|
pixman_renderer_output_set_buffer(struct weston_output *output,
|
|
|
|
pixman_image_t *buffer);
|
|
|
|
|
|
|
|
void
|
|
|
|
pixman_renderer_output_set_hw_extra_damage(struct weston_output *output,
|
|
|
|
pixman_region32_t *extra_damage);
|
2013-01-07 21:39:49 +04:00
|
|
|
|
2023-01-11 23:28:52 +03:00
|
|
|
struct pixman_renderer_interface {
|
|
|
|
int (*output_create)(struct weston_output *output,
|
|
|
|
const struct pixman_renderer_output_options *options);
|
|
|
|
void (*output_destroy)(struct weston_output *output);
|
|
|
|
};
|