aboutsummaryrefslogtreecommitdiff
path: root/src/window_texture.h
blob: 39826bcd215edf28bc4b1bc7999cca94fa493e9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef NGXC_WINDOW_TEXTURE_H
#define NGXC_WINDOW_TEXTURE_H

#define GLX_GLXEXT_PROTOTYPES
#include <GL/glx.h>
#include <GL/glxext.h>
#include <X11/Xlib.h>

typedef struct {
    Display *display;
    Window window;
    Pixmap pixmap;
    GLXPixmap glx_pixmap;
    GLuint texture_id;
    int redirected;
    int width;
    int height;
} WindowTexture;

/* Returns 0 on success */
int window_texture_init(WindowTexture *window_texture, Display *display, Window window);
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);

GLuint window_texture_get_opengl_texture_id(WindowTexture *self);

#endif /* NGXC_WINDOW_TEXTURE_H */