Wayland compositor (wlroots)
git clone https://git.lucas.co/cce-compositor.git
scenefx/include/render/pass.h (653B)
1 #ifndef FX_RENDER_PASS_H
2 #define FX_RENDER_PASS_H
3
4 #include <scenefx/render/pass.h>
5 #include <stdbool.h>
6 #include <wlr/render/pass.h>
7 #include <wlr/util/box.h>
8 #include <wlr/render/interface.h>
9
10 struct fx_render_texture_options fx_render_texture_options_default(
11 const struct wlr_render_texture_options *base);
12
13 struct fx_render_rect_options fx_render_rect_options_default(
14 const struct wlr_render_rect_options *base);
15
16 struct fx_gles_render_pass *fx_begin_buffer_pass(struct fx_framebuffer *buffer,
17 struct wlr_egl_context *prev_ctx, struct fx_render_timer *timer,
18 struct wlr_drm_syncobj_timeline *signal_timeline, uint64_t signal_point);
19
20 #endif