mirror of
https://github.com/infiniteCable2/openpilot.git
synced 2026-07-28 04:42:04 +08:00
79ca8c9ec9
old-commit-hash: e94a30bec07e719c5a7b037ca1f4db8312702cce
21 lines
353 B
C
21 lines
353 B
C
#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 |