blob: 289b4d87c1f67f6e4f88d614a33c5813d85d7629 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef FX_FRAMEBUFFER_H
#define FX_FRAMEBUFFER_H
#include <GLES2/gl2.h>
#include <stdbool.h>
#include <wlr/types/wlr_output.h>
#include "sway/desktop/fx_renderer/fx_texture.h"
struct fx_framebuffer {
struct fx_texture texture;
GLuint fb;
};
void fx_framebuffer_bind(struct fx_framebuffer *buffer);
void fx_framebuffer_create(struct fx_framebuffer *buffer, int width, int height, bool bind);
void fx_framebuffer_release(struct fx_framebuffer *buffer);
#endif
|