blob: 0ee955067130bb8a121597daeb9010e363c5f535 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef FX_RENDER_PASS_H
#define FX_RENDER_PASS_H
#include <scenefx/render/pass.h>
#include <stdbool.h>
#include <wlr/render/pass.h>
#include <wlr/util/box.h>
#include <wlr/render/interface.h>
struct fx_render_texture_options fx_render_texture_options_default(
const struct wlr_render_texture_options *base);
struct fx_render_rect_options fx_render_rect_options_default(
const struct wlr_render_rect_options *base);
#endif
|