OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef PPAPI_C_DEV_PP_GRAPHICS_3D_DEV_H_ |
| 6 #define PPAPI_C_DEV_PP_GRAPHICS_3D_DEV_H_ |
| 7 |
| 8 // These are the same error codes as used by EGL. |
| 9 enum PP_Graphics3DError_Dev { |
| 10 PP_GRAPHICS3DERROR_CONTEXTLOST |
| 11 }; |
| 12 |
| 13 // QueryString targets, matching EGL ones. |
| 14 enum PP_Graphics3DString_Dev { |
| 15 PP_Graphics3DString_VENDOR, |
| 16 PP_Graphics3DString_VERSION, |
| 17 PP_Graphics3DString_EXTENSIONS, |
| 18 PP_Graphics3DString_CLIENT_APIS |
| 19 }; |
| 20 |
| 21 #endif // PPAPI_C_DEV_PP_GRAPHICS_3D_DEV_H_ |
OLD | NEW |