genode/libports/include/EGL/eglplatform.h
Christian Prochaska a2e405f9e9 Mesa: improvements for use with Qt5
Among other changes, this patch makes it possible to let Mesa render into
a user-provided buffer instead of the screen. This can be achieved with
the 'eglCreateWindowSurface()' function, which takes a buffer
description as third argument.

Fixes #974.
2013-11-26 14:32:07 +01:00

43 lines
852 B
C

/*
* \brief Genode-specific EGL platform definitions
* \author Norman Feske
* \date 2010-07-01
*/
/*
* Copyright (C) 2010-2013 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#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;
struct Genode_egl_window
{
int width;
int height;
unsigned char *addr;
};
typedef struct Genode_egl_window *EGLNativeWindowType;
typedef khronos_int32_t EGLint;
#endif /* __eglplatform_h_ */