eglmesaext.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. /* remnant of EGL_NOK_swap_region kept for compatibility because of a non-standard type name */
  34. typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSREGIONNOK) (EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint* rects);
  35. #ifndef EGL_MESA_configless_context
  36. #define EGL_MESA_configless_context 1
  37. #define EGL_NO_CONFIG_MESA EGL_CAST(EGLConfig,0)
  38. #endif
  39. #ifndef EGL_MESA_drm_image_formats
  40. #define EGL_MESA_drm_image_formats 1
  41. #define EGL_DRM_BUFFER_FORMAT_ARGB2101010_MESA 0x3290
  42. #define EGL_DRM_BUFFER_FORMAT_ARGB1555_MESA 0x3291
  43. #define EGL_DRM_BUFFER_FORMAT_RGB565_MESA 0x3292
  44. #endif /* EGL_MESA_drm_image_formats */
  45. #ifndef EGL_IMG_cl_image
  46. #define EGL_IMG_cl_image 1
  47. #define EGL_CL_IMAGE_IMG 0x6010
  48. #endif /* Experimental eglCreateImageKHR target */
  49. #ifdef __cplusplus
  50. }
  51. #endif
  52. #endif