eglplatform.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. #ifndef __eglplatform_h_
  2. #define __eglplatform_h_
  3. /*
  4. ** Copyright (c) 2007-2009 The Khronos Group Inc.
  5. **
  6. ** Permission is hereby granted, free of charge, to any person obtaining a
  7. ** copy of this software and/or associated documentation files (the
  8. ** "Materials"), to deal in the Materials without restriction, including
  9. ** without limitation the rights to use, copy, modify, merge, publish,
  10. ** distribute, sublicense, and/or sell copies of the Materials, and to
  11. ** permit persons to whom the Materials are furnished to do so, subject to
  12. ** the following conditions:
  13. **
  14. ** The above copyright notice and this permission notice shall be included
  15. ** in all copies or substantial portions of the Materials.
  16. **
  17. ** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  18. ** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  19. ** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  20. ** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  21. ** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  22. ** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  23. ** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
  24. */
  25. /* Platform-specific types and definitions for egl.h
  26. * $Revision: 12306 $ on $Date: 2010-08-25 09:51:28 -0700 (Wed, 25 Aug 2010) $
  27. *
  28. * Adopters may modify khrplatform.h and this file to suit their platform.
  29. * You are encouraged to submit all modifications to the Khronos group so that
  30. * they can be included in future versions of this file. Please submit changes
  31. * by sending them to the public Khronos Bugzilla (http://khronos.org/bugzilla)
  32. * by filing a bug against product "EGL" component "Registry".
  33. */
  34. #include <KHR/khrplatform.h>
  35. /* Macros used in EGL function prototype declarations.
  36. *
  37. * EGL functions should be prototyped as:
  38. *
  39. * EGLAPI return-type EGLAPIENTRY eglFunction(arguments);
  40. * typedef return-type (EXPAPIENTRYP PFNEGLFUNCTIONPROC) (arguments);
  41. *
  42. * KHRONOS_APICALL and KHRONOS_APIENTRY are defined in KHR/khrplatform.h
  43. */
  44. #ifndef EGLAPI
  45. #define EGLAPI KHRONOS_APICALL
  46. #endif
  47. #ifndef EGLAPIENTRY
  48. #define EGLAPIENTRY KHRONOS_APIENTRY
  49. #endif
  50. #define EGLAPIENTRYP EGLAPIENTRY*
  51. /* The types NativeDisplayType, NativeWindowType, and NativePixmapType
  52. * are aliases of window-system-dependent types, such as X Display * or
  53. * Windows Device Context. They must be defined in platform-specific
  54. * code below. The EGL-prefixed versions of Native*Type are the same
  55. * types, renamed in EGL 1.3 so all types in the API start with "EGL".
  56. *
  57. * Khronos STRONGLY RECOMMENDS that you use the default definitions
  58. * provided below, since these changes affect both binary and source
  59. * portability of applications using EGL running on different EGL
  60. * implementations.
  61. */
  62. #if defined(_WIN32) || defined(__VC32__) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__) /* Win32 and WinCE */
  63. #ifndef WIN32_LEAN_AND_MEAN
  64. #define WIN32_LEAN_AND_MEAN 1
  65. #endif
  66. #include <windows.h>
  67. typedef HDC EGLNativeDisplayType;
  68. typedef HBITMAP EGLNativePixmapType;
  69. typedef HWND EGLNativeWindowType;
  70. #elif defined(__WINSCW__) || defined(__SYMBIAN32__) /* Symbian */
  71. typedef int EGLNativeDisplayType;
  72. typedef void *EGLNativeWindowType;
  73. typedef void *EGLNativePixmapType;
  74. #elif defined(WL_EGL_PLATFORM)
  75. typedef struct wl_display *EGLNativeDisplayType;
  76. typedef struct wl_egl_pixmap *EGLNativePixmapType;
  77. typedef struct wl_egl_window *EGLNativeWindowType;
  78. #elif defined(__GBM__)
  79. typedef struct gbm_device *EGLNativeDisplayType;
  80. typedef struct gbm_bo *EGLNativePixmapType;
  81. typedef void *EGLNativeWindowType;
  82. #elif defined(ANDROID) /* Android */
  83. struct ANativeWindow;
  84. struct egl_native_pixmap_t;
  85. typedef struct ANativeWindow *EGLNativeWindowType;
  86. typedef struct egl_native_pixmap_t *EGLNativePixmapType;
  87. typedef void *EGLNativeDisplayType;
  88. #elif defined(__unix__)
  89. #ifdef MESA_EGL_NO_X11_HEADERS
  90. typedef void *EGLNativeDisplayType;
  91. typedef khronos_uint32_t EGLNativePixmapType;
  92. typedef khronos_uint32_t EGLNativeWindowType;
  93. #else
  94. /* X11 (tentative) */
  95. #include <X11/Xlib.h>
  96. #include <X11/Xutil.h>
  97. typedef Display *EGLNativeDisplayType;
  98. typedef Pixmap EGLNativePixmapType;
  99. typedef Window EGLNativeWindowType;
  100. #endif /* MESA_EGL_NO_X11_HEADERS */
  101. #else
  102. #error "Platform not recognized"
  103. #endif
  104. /* EGL 1.2 types, renamed for consistency in EGL 1.3 */
  105. typedef EGLNativeDisplayType NativeDisplayType;
  106. typedef EGLNativePixmapType NativePixmapType;
  107. typedef EGLNativeWindowType NativeWindowType;
  108. /* Define EGLint. This must be a signed integral type large enough to contain
  109. * all legal attribute names and values passed into and out of EGL, whether
  110. * their type is boolean, bitmask, enumerant (symbolic constant), integer,
  111. * handle, or other. While in general a 32-bit integer will suffice, if
  112. * handles are 64 bit types, then EGLint should be defined as a signed 64-bit
  113. * integer type.
  114. */
  115. typedef khronos_int32_t EGLint;
  116. #endif /* __eglplatform_h */