You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
353 B
21 lines
353 B
#ifndef FRAMEBUFFER_H
|
|
#define FRAMEBUFFER_H
|
|
|
|
#include <EGL/eglext.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct FramebufferState FramebufferState;
|
|
|
|
FramebufferState* framebuffer_init(
|
|
const char* name, int32_t layer,
|
|
EGLDisplay *out_display, EGLSurface *out_surface,
|
|
int *out_w, int *out_h);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |