aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAlexander Orzechowski <alex@ozal.ski>2023-03-03 21:13:56 -0500
committerKirill Primak <vyivel@eclair.cafe>2024-01-18 18:36:54 +0300
commit869baff25221e1a1881e9559453faa43f90da33e (patch)
tree732c0c4cb4ea0efcaf407fd7e3766c767d057f45 /include
parentbac3ab552683516ee5a09632468cd8de529d311f (diff)
renderer: Remove in favor of scene_graph
Diffstat (limited to 'include')
-rw-r--r--include/sway/output.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/include/sway/output.h b/include/sway/output.h
index 8405f78d..d353ce61 100644
--- a/include/sway/output.h
+++ b/include/sway/output.h
@@ -78,14 +78,6 @@ struct sway_output_non_desktop {
struct wl_listener destroy;
};
-struct render_context {
- struct sway_output *output;
- struct wlr_renderer *renderer;
- const pixman_region32_t *output_damage;
-
- struct wlr_render_pass *pass;
-};
-
struct sway_output *output_create(struct wlr_output *wlr_output);
void output_destroy(struct sway_output *output);
@@ -136,8 +128,6 @@ bool output_has_opaque_overlay_layer_surface(struct sway_output *output);
struct sway_workspace *output_get_active_workspace(struct sway_output *output);
-void output_render(struct render_context *ctx);
-
void output_surface_for_each_surface(struct sway_output *output,
struct wlr_surface *surface, double ox, double oy,
sway_surface_iterator_func_t iterator, void *user_data);
@@ -185,11 +175,6 @@ void output_get_box(struct sway_output *output, struct wlr_box *box);
enum sway_container_layout output_get_default_layout(
struct sway_output *output);
-void render_rect(struct render_context *ctx, const struct wlr_box *_box,
- float color[static 4]);
-
-void premultiply_alpha(float color[4], float opacity);
-
void scale_box(struct wlr_box *box, float scale);
enum wlr_direction opposite_direction(enum wlr_direction d);