Clone of mesa.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

eglplatform.h 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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: 9724 $ on $Date: 2009-12-02 02:05:33 -0800 (Wed, 02 Dec 2009) $
  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. #if defined(_WIN32) || defined(__VC32__) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__) /* Win32 and WinCE */
  58. #ifndef WIN32_LEAN_AND_MEAN
  59. #define WIN32_LEAN_AND_MEAN 1
  60. #endif
  61. #include <windows.h>
  62. typedef HDC EGLNativeDisplayType;
  63. typedef HBITMAP EGLNativePixmapType;
  64. typedef HWND EGLNativeWindowType;
  65. #elif defined(__WINSCW__) || defined(__SYMBIAN32__) /* Symbian */
  66. typedef int EGLNativeDisplayType;
  67. typedef void *EGLNativeWindowType;
  68. typedef void *EGLNativePixmapType;
  69. #elif defined(__unix__) || defined(__unix)
  70. /* X11 (tentative) */
  71. #include <X11/Xlib.h>
  72. #include <X11/Xutil.h>
  73. typedef Display *EGLNativeDisplayType;
  74. typedef Pixmap EGLNativePixmapType;
  75. typedef Window EGLNativeWindowType;
  76. #else
  77. #error "Platform not recognized"
  78. #endif
  79. /* EGL 1.2 types, renamed for consistency in EGL 1.3 */
  80. typedef EGLNativeDisplayType NativeDisplayType;
  81. typedef EGLNativePixmapType NativePixmapType;
  82. typedef EGLNativeWindowType NativeWindowType;
  83. /* Define EGLint. This must be a signed integral type large enough to contain
  84. * all legal attribute names and values passed into and out of EGL, whether
  85. * their type is boolean, bitmask, enumerant (symbolic constant), integer,
  86. * handle, or other. While in general a 32-bit integer will suffice, if
  87. * handles are 64 bit types, then EGLint should be defined as a signed 64-bit
  88. * integer type.
  89. */
  90. typedef khronos_int32_t EGLint;
  91. #endif /* __eglplatform_h */