2011-12-22 15:19:25 +00:00
|
|
|
/*
|
|
|
|
* \brief Genode-specific EGL platform definitions
|
|
|
|
* \author Norman Feske
|
|
|
|
* \date 2010-07-01
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2017-02-20 12:23:52 +00:00
|
|
|
* Copyright (C) 2010-2017 Genode Labs GmbH
|
2011-12-22 15:19:25 +00:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
2017-02-20 12:23:52 +00:00
|
|
|
* under the terms of the GNU Affero General Public License version 3.
|
2011-12-22 15:19:25 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __eglplatform_h_ /* include-guard named as on the other platforms */
|
|
|
|
#define __eglplatform_h_
|
|
|
|
|
|
|
|
#include <KHR/khrplatform.h>
|
|
|
|
|
|
|
|
#ifndef EGLAPI
|
|
|
|
#define EGLAPI KHRONOS_APICALL
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef EGLAPIENTRY
|
|
|
|
#define EGLAPIENTRY KHRONOS_APIENTRY
|
|
|
|
#endif
|
|
|
|
#define EGLAPIENTRYP EGLAPIENTRY*
|
|
|
|
|
|
|
|
typedef int EGLNativeDisplayType;
|
|
|
|
typedef void *EGLNativePixmapType;
|
|
|
|
|
2013-11-21 14:53:56 +00:00
|
|
|
struct Genode_egl_window
|
|
|
|
{
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
unsigned char *addr;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct Genode_egl_window *EGLNativeWindowType;
|
|
|
|
|
2011-12-22 15:19:25 +00:00
|
|
|
typedef khronos_int32_t EGLint;
|
|
|
|
|
|
|
|
#endif /* __eglplatform_h_ */
|