summaryrefslogtreecommitdiffstats
path: root/video/out/opengl/rpi.h
blob: 5ce893e9e38fbb147e5bc2c13ad69d1f062257e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <bcm_host.h>

#include "common.h"

struct mp_egl_rpi {
    struct mp_log *log;
    struct GL *gl;
    EGLDisplay egl_display;
    EGLContext egl_context;
    EGLSurface egl_surface;
    // yep, the API keeps a pointer to it
    EGL_DISPMANX_WINDOW_T egl_window;
};

int mp_egl_rpi_init(struct mp_egl_rpi *p, DISPMANX_ELEMENT_HANDLE_T window,
                    int w, int h);
void mp_egl_rpi_destroy(struct mp_egl_rpi *p);