19 lines
488 B
C
19 lines
488 B
C
/************************************************************//**
|
|
*
|
|
* @file: egl_surface.h
|
|
* @author: Martin Fouilleul
|
|
* @date: 28/01/2023
|
|
* @revision:
|
|
*
|
|
*****************************************************************/
|
|
#ifndef __EGL_SURFACE_H_
|
|
#define __EGL_SURFACE_H_
|
|
|
|
#include"graphics_surface.h"
|
|
#include"mp_app.h"
|
|
|
|
mg_surface_data* mg_egl_surface_create_for_window(mp_window window);
|
|
mg_surface_data* mg_egl_surface_create_remote(u32 width, u32 height);
|
|
|
|
#endif // __EGL_SURFACE_H_
|