| OLD | NEW |
| 1 #ifndef __khrplatform_h_ | 1 #ifndef __khrplatform_h_ |
| 2 #define __khrplatform_h_ | 2 #define __khrplatform_h_ |
| 3 | 3 |
| 4 /* | 4 /* |
| 5 ** Copyright (c) 2008-2009 The Khronos Group Inc. | 5 ** Copyright (c) 2008-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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 * Values other than zero should be considered to be true. Therefore | 260 * Values other than zero should be considered to be true. Therefore |
| 261 * comparisons should not be made against KHRONOS_TRUE. | 261 * comparisons should not be made against KHRONOS_TRUE. |
| 262 */ | 262 */ |
| 263 typedef enum { | 263 typedef enum { |
| 264 KHRONOS_FALSE = 0, | 264 KHRONOS_FALSE = 0, |
| 265 KHRONOS_TRUE = 1, | 265 KHRONOS_TRUE = 1, |
| 266 KHRONOS_BOOLEAN_ENUM_FORCE_SIZE = KHRONOS_MAX_ENUM | 266 KHRONOS_BOOLEAN_ENUM_FORCE_SIZE = KHRONOS_MAX_ENUM |
| 267 } khronos_boolean_enum_t; | 267 } khronos_boolean_enum_t; |
| 268 | 268 |
| 269 #endif /* __khrplatform_h_ */ | 269 #endif /* __khrplatform_h_ */ |
| OLD | NEW |