mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
471249ae4f
Add a render pass implementation which leverages the legacy rendering API. This is helpful during the migration.
9 lines
204 B
C
9 lines
204 B
C
#ifndef RENDER_PASS_H
|
|
#define RENDER_PASS_H
|
|
|
|
#include <wlr/render/interface.h>
|
|
|
|
struct wlr_render_pass *begin_legacy_buffer_render_pass(struct wlr_renderer *renderer,
|
|
struct wlr_buffer *buffer);
|
|
|
|
#endif
|