Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

eglmesaext.h 5.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. #ifndef __eglmesaext_h_
  28. #define __eglmesaext_h_
  29. #ifdef __cplusplus
  30. extern "C" {
  31. #endif
  32. #include <EGL/eglplatform.h>
  33. #ifndef EGL_MESA_drm_display
  34. #define EGL_MESA_drm_display 1
  35. #ifdef EGL_EGLEXT_PROTOTYPES
  36. EGLAPI EGLDisplay EGLAPIENTRY eglGetDRMDisplayMESA(int fd);
  37. #endif /* EGL_EGLEXT_PROTOTYPES */
  38. typedef EGLDisplay (EGLAPIENTRYP PFNEGLGETDRMDISPLAYMESA) (int fd);
  39. #endif /* EGL_MESA_drm_display */
  40. #ifdef EGL_MESA_drm_image
  41. /* Mesa's extension to EGL_MESA_drm_image... */
  42. #ifndef EGL_DRM_BUFFER_USE_CURSOR_MESA
  43. #define EGL_DRM_BUFFER_USE_CURSOR_MESA 0x0004
  44. #endif
  45. #endif
  46. #ifndef EGL_WL_bind_wayland_display
  47. #define EGL_WL_bind_wayland_display 1
  48. #define EGL_WAYLAND_BUFFER_WL 0x31D5 /* eglCreateImageKHR target */
  49. #define EGL_WAYLAND_PLANE_WL 0x31D6 /* eglCreateImageKHR target */
  50. #define EGL_WAYLAND_Y_INVERTED_WL 0x31DB /* eglQueryWaylandBufferWL attribute */
  51. #define EGL_TEXTURE_Y_U_V_WL 0x31D7
  52. #define EGL_TEXTURE_Y_UV_WL 0x31D8
  53. #define EGL_TEXTURE_Y_XUXV_WL 0x31D9
  54. struct wl_display;
  55. struct wl_resource;
  56. #ifdef EGL_EGLEXT_PROTOTYPES
  57. EGLAPI EGLBoolean EGLAPIENTRY eglBindWaylandDisplayWL(EGLDisplay dpy, struct wl_display *display);
  58. EGLAPI EGLBoolean EGLAPIENTRY eglUnbindWaylandDisplayWL(EGLDisplay dpy, struct wl_display *display);
  59. EGLAPI EGLBoolean EGLAPIENTRY eglQueryWaylandBufferWL(EGLDisplay dpy, struct wl_resource *buffer, EGLint attribute, EGLint *value);
  60. #endif
  61. typedef EGLBoolean (EGLAPIENTRYP PFNEGLBINDWAYLANDDISPLAYWL) (EGLDisplay dpy, struct wl_display *display);
  62. typedef EGLBoolean (EGLAPIENTRYP PFNEGLUNBINDWAYLANDDISPLAYWL) (EGLDisplay dpy, struct wl_display *display);
  63. typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYWAYLANDBUFFERWL) (EGLDisplay dpy, struct wl_resource *buffer, EGLint attribute, EGLint *value);
  64. #endif
  65. #ifndef EGL_WL_create_wayland_buffer_from_image
  66. #define EGL_WL_create_wayland_buffer_from_image 1
  67. #ifdef EGL_EGLEXT_PROTOTYPES
  68. EGLAPI struct wl_buffer * EGLAPIENTRY eglCreateWaylandBufferFromImageWL(EGLDisplay dpy, EGLImageKHR image);
  69. #endif
  70. typedef struct wl_buffer * (EGLAPIENTRYP PFNEGLCREATEWAYLANDBUFFERFROMIMAGEWL) (EGLDisplay dpy, EGLImageKHR image);
  71. #endif
  72. #ifndef EGL_NOK_swap_region
  73. #define EGL_NOK_swap_region 1
  74. #ifdef EGL_EGLEXT_PROTOTYPES
  75. EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffersRegionNOK(EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint* rects);
  76. #endif
  77. typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSREGIONNOK) (EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint* rects);
  78. #endif
  79. #ifndef EGL_NOK_texture_from_pixmap
  80. #define EGL_NOK_texture_from_pixmap 1
  81. #define EGL_Y_INVERTED_NOK 0x307F
  82. #endif /* EGL_NOK_texture_from_pixmap */
  83. #ifndef EGL_ANDROID_image_native_buffer
  84. #define EGL_ANDROID_image_native_buffer 1
  85. #define EGL_NATIVE_BUFFER_ANDROID 0x3140 /* eglCreateImageKHR target */
  86. #endif
  87. #ifndef EGL_MESA_configless_context
  88. #define EGL_MESA_configless_context 1
  89. #define EGL_NO_CONFIG_MESA ((EGLConfig)0)
  90. #endif
  91. #if KHRONOS_SUPPORT_INT64
  92. #ifndef EGL_MESA_image_dma_buf_export
  93. #define EGL_MESA_image_dma_buf_export 1
  94. #ifdef EGL_EGLEXT_PROTOTYPES
  95. EGLAPI EGLBoolean EGLAPIENTRY eglExportDMABUFImageQueryMESA (EGLDisplay dpy, EGLImageKHR image, EGLint *fourcc, EGLint *nplanes, EGLuint64KHR *modifiers);
  96. EGLAPI EGLBoolean EGLAPIENTRY eglExportDMABUFImageMESA (EGLDisplay dpy, EGLImageKHR image, int *fds, EGLint *strides, EGLint *offsets);
  97. #endif
  98. #endif
  99. typedef EGLBoolean (EGLAPIENTRYP PFNEGLEXPORTDMABUFIMAGEQUERYMESA) (EGLDisplay dpy, EGLImageKHR image, EGLint *fourcc, EGLint *nplanes, EGLuint64KHR *modifiers);
  100. typedef EGLBoolean (EGLAPIENTRYP PFNEGLEXPORTDMABUFIMAGEMESA) (EGLDisplay dpy, EGLImageKHR image, int *fds, EGLint *strides, EGLint *offsets);
  101. #endif
  102. #ifdef __cplusplus
  103. }
  104. #endif
  105. #endif