egl: Remove skeleton implementation of EGL_MESA_screen_surface
[mesa.git] / include / EGL / eglmesaext.h
1 /**************************************************************************
2 *
3 * Copyright 2008 VMware, Inc.
4 * 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
32 extern "C" {
33 #endif
34
35 #include <EGL/eglplatform.h>
36
37 #ifndef EGL_MESA_copy_context
38 #define EGL_MESA_copy_context 1
39
40 #ifdef EGL_EGLEXT_PROTOTYPES
41 EGLAPI EGLBoolean EGLAPIENTRY eglCopyContextMESA(EGLDisplay dpy, EGLContext source, EGLContext dest, EGLint mask);
42 #endif /* EGL_EGLEXT_PROTOTYPES */
43
44 typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOPYCONTEXTMESA) (EGLDisplay dpy, EGLContext source, EGLContext dest, EGLint mask);
45
46 #endif /* EGL_MESA_copy_context */
47
48 #ifndef EGL_MESA_drm_display
49 #define EGL_MESA_drm_display 1
50
51 #ifdef EGL_EGLEXT_PROTOTYPES
52 EGLAPI EGLDisplay EGLAPIENTRY eglGetDRMDisplayMESA(int fd);
53 #endif /* EGL_EGLEXT_PROTOTYPES */
54
55 typedef EGLDisplay (EGLAPIENTRYP PFNEGLGETDRMDISPLAYMESA) (int fd);
56
57 #endif /* EGL_MESA_drm_display */
58
59 #ifdef EGL_MESA_drm_image
60 /* Mesa's extension to EGL_MESA_drm_image... */
61 #ifndef EGL_DRM_BUFFER_USE_CURSOR_MESA
62 #define EGL_DRM_BUFFER_USE_CURSOR_MESA 0x0004
63 #endif
64 #endif
65
66 #ifndef EGL_WL_bind_wayland_display
67 #define EGL_WL_bind_wayland_display 1
68
69 #define EGL_WAYLAND_BUFFER_WL 0x31D5 /* eglCreateImageKHR target */
70 #define EGL_WAYLAND_PLANE_WL 0x31D6 /* eglCreateImageKHR target */
71
72 #define EGL_WAYLAND_Y_INVERTED_WL 0x31DB /* eglQueryWaylandBufferWL attribute */
73
74 #define EGL_TEXTURE_Y_U_V_WL 0x31D7
75 #define EGL_TEXTURE_Y_UV_WL 0x31D8
76 #define EGL_TEXTURE_Y_XUXV_WL 0x31D9
77
78 struct wl_display;
79 struct wl_resource;
80 #ifdef EGL_EGLEXT_PROTOTYPES
81 EGLAPI EGLBoolean EGLAPIENTRY eglBindWaylandDisplayWL(EGLDisplay dpy, struct wl_display *display);
82 EGLAPI EGLBoolean EGLAPIENTRY eglUnbindWaylandDisplayWL(EGLDisplay dpy, struct wl_display *display);
83 EGLAPI EGLBoolean EGLAPIENTRY eglQueryWaylandBufferWL(EGLDisplay dpy, struct wl_resource *buffer, EGLint attribute, EGLint *value);
84 #endif
85 typedef EGLBoolean (EGLAPIENTRYP PFNEGLBINDWAYLANDDISPLAYWL) (EGLDisplay dpy, struct wl_display *display);
86 typedef EGLBoolean (EGLAPIENTRYP PFNEGLUNBINDWAYLANDDISPLAYWL) (EGLDisplay dpy, struct wl_display *display);
87 typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYWAYLANDBUFFERWL) (EGLDisplay dpy, struct wl_resource *buffer, EGLint attribute, EGLint *value);
88
89 #endif
90
91 #ifndef EGL_WL_create_wayland_buffer_from_image
92 #define EGL_WL_create_wayland_buffer_from_image 1
93
94 #ifdef EGL_EGLEXT_PROTOTYPES
95 EGLAPI struct wl_buffer * EGLAPIENTRY eglCreateWaylandBufferFromImageWL(EGLDisplay dpy, EGLImageKHR image);
96 #endif
97 typedef struct wl_buffer * (EGLAPIENTRYP PFNEGLCREATEWAYLANDBUFFERFROMIMAGEWL) (EGLDisplay dpy, EGLImageKHR image);
98
99 #endif
100
101 #ifndef EGL_NOK_swap_region
102 #define EGL_NOK_swap_region 1
103
104 #ifdef EGL_EGLEXT_PROTOTYPES
105 EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffersRegionNOK(EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint* rects);
106 #endif
107
108 typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSREGIONNOK) (EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint* rects);
109 #endif
110
111 #ifndef EGL_NOK_texture_from_pixmap
112 #define EGL_NOK_texture_from_pixmap 1
113
114 #define EGL_Y_INVERTED_NOK 0x307F
115 #endif /* EGL_NOK_texture_from_pixmap */
116
117 #ifndef EGL_ANDROID_image_native_buffer
118 #define EGL_ANDROID_image_native_buffer 1
119 #define EGL_NATIVE_BUFFER_ANDROID 0x3140 /* eglCreateImageKHR target */
120 #endif
121
122 #ifndef EGL_MESA_configless_context
123 #define EGL_MESA_configless_context 1
124 #define EGL_NO_CONFIG_MESA ((EGLConfig)0)
125 #endif
126
127 #if KHRONOS_SUPPORT_INT64
128 #ifndef EGL_MESA_image_dma_buf_export
129 #define EGL_MESA_image_dma_buf_export 1
130 EGLAPI EGLBoolean EGLAPIENTRY eglExportDMABUFImageQueryMESA (EGLDisplay dpy, EGLImageKHR image, EGLint *fourcc, EGLint *nplanes, EGLuint64KHR *modifiers);
131 EGLAPI EGLBoolean EGLAPIENTRY eglExportDMABUFImageMESA (EGLDisplay dpy, EGLImageKHR image, int *fds, EGLint *strides, EGLint *offsets);
132 #endif
133 #endif
134 #ifdef __cplusplus
135 }
136 #endif
137
138 #endif