| OLD | NEW |
| 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
| 4 */ | 4 */ |
| 5 | 5 |
| 6 #ifndef PPAPI_C_DEV_PP_GRAPHICS_3D_DEV_H_ | 6 #ifndef PPAPI_C_DEV_PP_GRAPHICS_3D_DEV_H_ |
| 7 #define PPAPI_C_DEV_PP_GRAPHICS_3D_DEV_H_ | 7 #define PPAPI_C_DEV_PP_GRAPHICS_3D_DEV_H_ |
| 8 | 8 |
| 9 #include "ppapi/c/pp_stdint.h" | 9 #include "ppapi/c/pp_stdint.h" |
| 10 | 10 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 PP_GRAPHICS3DATTRIB_BUFFER_PRESERVED = 0x3094, | 39 PP_GRAPHICS3DATTRIB_BUFFER_PRESERVED = 0x3094, |
| 40 // Indicates that color buffer contents may be destroyed or changed. | 40 // Indicates that color buffer contents may be destroyed or changed. |
| 41 PP_GRAPHICS3DATTRIB_BUFFER_DESTROYED = 0x3095 | 41 PP_GRAPHICS3DATTRIB_BUFFER_DESTROYED = 0x3095 |
| 42 }; | 42 }; |
| 43 | 43 |
| 44 // TODO(alokp): Remove this when PPB_Context3D_Dev and PPB_Surface3D_Dev | 44 // TODO(alokp): Remove this when PPB_Context3D_Dev and PPB_Surface3D_Dev |
| 45 // are deprecated. | 45 // are deprecated. |
| 46 typedef int32_t PP_Config3D_Dev; | 46 typedef int32_t PP_Config3D_Dev; |
| 47 | 47 |
| 48 #endif // PPAPI_C_DEV_PP_GRAPHICS_3D_DEV_H_ | 48 #endif // PPAPI_C_DEV_PP_GRAPHICS_3D_DEV_H_ |
| OLD | NEW |