blob: 405d0e9ee4d9a12c4b07a755f90300d4b6548865 [file] [log] [blame]
Chia-I Wuab7bb102011-12-19 17:37:30 +08001/**************************************************************************
2 *
José Fonseca87712852014-01-17 16:27:50 +00003 * Copyright 2008 VMware, Inc.
Chia-I Wuab7bb102011-12-19 17:37:30 +08004 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24 * DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28#ifndef __eglmesaext_h_
29#define __eglmesaext_h_
30
31#ifdef __cplusplus
32extern "C" {
33#endif
34
35#include <EGL/eglplatform.h>
36
Chia-I Wub7acfe72011-12-15 15:20:01 +080037#ifdef EGL_MESA_drm_image
38/* Mesa's extension to EGL_MESA_drm_image... */
39#ifndef EGL_DRM_BUFFER_USE_CURSOR_MESA
Chia-I Wuab7bb102011-12-19 17:37:30 +080040#define EGL_DRM_BUFFER_USE_CURSOR_MESA 0x0004
Chia-I Wuab7bb102011-12-19 17:37:30 +080041#endif
Chia-I Wuab7bb102011-12-19 17:37:30 +080042#endif
43
44#ifndef EGL_WL_bind_wayland_display
45#define EGL_WL_bind_wayland_display 1
46
Kristian Høgsberge23bfdb2012-07-19 08:54:05 -040047#define EGL_WAYLAND_BUFFER_WL 0x31D5 /* eglCreateImageKHR target */
48#define EGL_WAYLAND_PLANE_WL 0x31D6 /* eglCreateImageKHR target */
Kristian Høgsberge6a33572012-07-05 16:43:04 -040049
Stanislav Vorobiov1281a902013-09-16 13:02:46 +040050#define EGL_WAYLAND_Y_INVERTED_WL 0x31DB /* eglQueryWaylandBufferWL attribute */
51
Kristian Høgsberge23bfdb2012-07-19 08:54:05 -040052#define EGL_TEXTURE_Y_U_V_WL 0x31D7
53#define EGL_TEXTURE_Y_UV_WL 0x31D8
54#define EGL_TEXTURE_Y_XUXV_WL 0x31D9
Rob Clark8ca14b02012-08-16 17:28:19 -050055#define EGL_TEXTURE_EXTERNAL_WL 0x31DA
Kristian Høgsberge6a33572012-07-05 16:43:04 -040056
Chia-I Wuab7bb102011-12-19 17:37:30 +080057struct wl_display;
Ander Conselvan de Oliveira8d29b522013-07-18 15:11:25 +030058struct wl_resource;
Chia-I Wuab7bb102011-12-19 17:37:30 +080059#ifdef EGL_EGLEXT_PROTOTYPES
60EGLAPI EGLBoolean EGLAPIENTRY eglBindWaylandDisplayWL(EGLDisplay dpy, struct wl_display *display);
61EGLAPI EGLBoolean EGLAPIENTRY eglUnbindWaylandDisplayWL(EGLDisplay dpy, struct wl_display *display);
Ander Conselvan de Oliveira8d29b522013-07-18 15:11:25 +030062EGLAPI EGLBoolean EGLAPIENTRY eglQueryWaylandBufferWL(EGLDisplay dpy, struct wl_resource *buffer, EGLint attribute, EGLint *value);
Chia-I Wuab7bb102011-12-19 17:37:30 +080063#endif
64typedef EGLBoolean (EGLAPIENTRYP PFNEGLBINDWAYLANDDISPLAYWL) (EGLDisplay dpy, struct wl_display *display);
65typedef EGLBoolean (EGLAPIENTRYP PFNEGLUNBINDWAYLANDDISPLAYWL) (EGLDisplay dpy, struct wl_display *display);
Ander Conselvan de Oliveira8d29b522013-07-18 15:11:25 +030066typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYWAYLANDBUFFERWL) (EGLDisplay dpy, struct wl_resource *buffer, EGLint attribute, EGLint *value);
Kristian Høgsberge6a33572012-07-05 16:43:04 -040067
Chia-I Wuab7bb102011-12-19 17:37:30 +080068#endif
69
Neil Roberts5cddb1c2013-10-28 15:07:03 +000070#ifndef EGL_WL_create_wayland_buffer_from_image
71#define EGL_WL_create_wayland_buffer_from_image 1
72
73#ifdef EGL_EGLEXT_PROTOTYPES
74EGLAPI struct wl_buffer * EGLAPIENTRY eglCreateWaylandBufferFromImageWL(EGLDisplay dpy, EGLImageKHR image);
75#endif
76typedef struct wl_buffer * (EGLAPIENTRYP PFNEGLCREATEWAYLANDBUFFERFROMIMAGEWL) (EGLDisplay dpy, EGLImageKHR image);
77
78#endif
79
Marek Olšák6b31f222015-05-15 19:58:51 +020080/* remnant of EGL_NOK_swap_region kept for compatibility because of a non-standard type name */
Chia-I Wuab7bb102011-12-19 17:37:30 +080081typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSREGIONNOK) (EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint* rects);
Chia-I Wuab7bb102011-12-19 17:37:30 +080082
Neil Roberts551d4592014-03-07 18:05:47 +000083#ifndef EGL_MESA_configless_context
84#define EGL_MESA_configless_context 1
85#define EGL_NO_CONFIG_MESA ((EGLConfig)0)
86#endif
87
Chad Versacea597c8a2016-10-12 15:48:15 -070088#ifndef EGL_MESA_platform_surfaceless
89#define EGL_MESA_platform_surfaceless 1
90#define EGL_PLATFORM_SURFACELESS_MESA 0x31DD
91#endif /* EGL_MESA_platform_surfaceless */
92
Chia-I Wuab7bb102011-12-19 17:37:30 +080093#ifdef __cplusplus
94}
95#endif
96
97#endif