blob: f0395a8a58c605b41dab90825ea903da49eff840 [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
Marek Olšák6b31f222015-05-15 19:58:51 +020037/* remnant of EGL_NOK_swap_region kept for compatibility because of a non-standard type name */
Chia-I Wuab7bb102011-12-19 17:37:30 +080038typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSREGIONNOK) (EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint* rects);
Chia-I Wuab7bb102011-12-19 17:37:30 +080039
Neil Roberts551d4592014-03-07 18:05:47 +000040#ifndef EGL_MESA_configless_context
41#define EGL_MESA_configless_context 1
Eric Engestrom99788de2019-11-16 17:51:27 +000042#define EGL_NO_CONFIG_MESA EGL_CAST(EGLConfig,0)
Neil Roberts551d4592014-03-07 18:05:47 +000043#endif
44
Nicolai Hähnle8822f4d2017-01-24 13:57:19 +010045#ifndef EGL_MESA_drm_image_formats
46#define EGL_MESA_drm_image_formats 1
47#define EGL_DRM_BUFFER_FORMAT_ARGB2101010_MESA 0x3290
48#define EGL_DRM_BUFFER_FORMAT_ARGB1555_MESA 0x3291
49#define EGL_DRM_BUFFER_FORMAT_RGB565_MESA 0x3292
50#endif /* EGL_MESA_drm_image_formats */
51
Chia-I Wuab7bb102011-12-19 17:37:30 +080052#ifdef __cplusplus
53}
54#endif
55
56#endif