| OLD | NEW |
| 1 #ifndef __eglplatform_h_ | 1 #ifndef __eglplatform_h_ |
| 2 #define __eglplatform_h_ | 2 #define __eglplatform_h_ |
| 3 | 3 |
| 4 /* | 4 /* |
| 5 ** Copyright (c) 2007-2009 The Khronos Group Inc. | 5 ** Copyright (c) 2007-2009 The Khronos Group Inc. |
| 6 ** | 6 ** |
| 7 ** Permission is hereby granted, free of charge, to any person obtaining a | 7 ** Permission is hereby granted, free of charge, to any person obtaining a |
| 8 ** copy of this software and/or associated documentation files (the | 8 ** copy of this software and/or associated documentation files (the |
| 9 ** "Materials"), to deal in the Materials without restriction, including | 9 ** "Materials"), to deal in the Materials without restriction, including |
| 10 ** without limitation the rights to use, copy, modify, merge, publish, | 10 ** without limitation the rights to use, copy, modify, merge, publish, |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 /* Define EGLint. This must be a signed integral type large enough to contain | 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 | 109 * all legal attribute names and values passed into and out of EGL, whether |
| 110 * their type is boolean, bitmask, enumerant (symbolic constant), integer, | 110 * their type is boolean, bitmask, enumerant (symbolic constant), integer, |
| 111 * handle, or other. While in general a 32-bit integer will suffice, if | 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 | 112 * handles are 64 bit types, then EGLint should be defined as a signed 64-bit |
| 113 * integer type. | 113 * integer type. |
| 114 */ | 114 */ |
| 115 typedef khronos_int32_t EGLint; | 115 typedef khronos_int32_t EGLint; |
| 116 | 116 |
| 117 #endif /* __eglplatform_h */ | 117 #endif /* __eglplatform_h */ |
| OLD | NEW |