gpu-screen-recorder/include/window_texture.h

28 lines
664 B
C
Raw Normal View History

#ifndef WINDOW_TEXTURE_H
#define WINDOW_TEXTURE_H
2022-10-17 00:55:59 +00:00
#include "egl.h"
typedef struct {
Display *display;
Window window;
Pixmap pixmap;
unsigned int texture_id;
int redirected;
2022-10-17 00:55:59 +00:00
gsr_egl *egl;
} WindowTexture;
/* Returns 0 on success */
2022-10-17 00:55:59 +00:00
int window_texture_init(WindowTexture *window_texture, Display *display, Window window, gsr_egl *egl);
void window_texture_deinit(WindowTexture *self);
/*
This should ONLY be called when the target window is resized.
Returns 0 on success.
*/
int window_texture_on_resize(WindowTexture *self);
unsigned int window_texture_get_opengl_texture_id(WindowTexture *self);
#endif /* WINDOW_TEXTURE_H */