OLD | NEW |
1 /* Copyright (c) 2010 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef PPAPI_C_DEV_PPB_GRAPHICS_3D_DEV_H_ | 5 #ifndef PPAPI_C_DEV_PPB_GRAPHICS_3D_DEV_H_ |
6 #define PPAPI_C_DEV_PPB_GRAPHICS_3D_DEV_H_ | 6 #define PPAPI_C_DEV_PPB_GRAPHICS_3D_DEV_H_ |
7 | 7 |
8 #include "ppapi/c/dev/pp_graphics_3d_dev.h" | 8 #include "ppapi/c/dev/pp_graphics_3d_dev.h" |
9 | 9 |
10 // Example usage from plugin code: | 10 // Example usage from plugin code: |
(...skipping 11 matching lines...) Expand all Loading... |
22 // inst->BindGraphics(instance, surface); | 22 // inst->BindGraphics(instance, surface); |
23 // | 23 // |
24 // // Present one frame. | 24 // // Present one frame. |
25 // gles2->Clear(context, GL_COLOR_BUFFER); | 25 // gles2->Clear(context, GL_COLOR_BUFFER); |
26 // c3d->SwapBuffers(context); | 26 // c3d->SwapBuffers(context); |
27 // | 27 // |
28 // // Shutdown. | 28 // // Shutdown. |
29 // core->ReleaseResource(context); | 29 // core->ReleaseResource(context); |
30 // core->ReleaseResource(surface); | 30 // core->ReleaseResource(surface); |
31 | 31 |
32 #define PPB_GRAPHICS_3D_DEV_INTERFACE "PPB_Graphics3D(Dev);0.2" | 32 #define PPB_GRAPHICS_3D_DEV_INTERFACE "PPB_Graphics3D(Dev);0.3" |
33 | 33 |
34 struct PPB_Graphics3D_Dev { | 34 struct PPB_Graphics3D_Dev { |
35 // TODO(alokp): Do these functions need module argument. | 35 // TODO(alokp): Do these functions need module argument. |
36 | 36 |
37 // Retrieves the list of all available PP_Config3D_Devs. | 37 // Retrieves the list of all available PP_Config3D_Devs. |
38 // configs is a pointer to a buffer containing config_size elements. | 38 // configs is a pointer to a buffer containing config_size elements. |
39 // On success, PP_OK is returned. The number of configurations is returned | 39 // On success, PP_OK is returned. The number of configurations is returned |
40 // in num_config, and elements 0 through num_config - 1 of configs are filled | 40 // in num_config, and elements 0 through num_config - 1 of configs are filled |
41 // in with valid PP_Config3D_Devs. No more than config_size | 41 // in with valid PP_Config3D_Devs. No more than config_size |
42 // PP_Config3D_Devs will be returned even if more are available. | 42 // PP_Config3D_Devs will be returned even if more are available. |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 // <major version.minor version><space><vendor specific info> | 92 // <major version.minor version><space><vendor specific info> |
93 // Both the major and minor portions of the version number are numeric. | 93 // Both the major and minor portions of the version number are numeric. |
94 // The vendor-specific information is optional; if present, its format and | 94 // The vendor-specific information is optional; if present, its format and |
95 // contents are implementation specific. | 95 // contents are implementation specific. |
96 // On failure, PP_VARTYPE_UNDEFINED is returned. | 96 // On failure, PP_VARTYPE_UNDEFINED is returned. |
97 struct PP_Var (*GetString)(int32_t name); | 97 struct PP_Var (*GetString)(int32_t name); |
98 }; | 98 }; |
99 | 99 |
100 #endif /* PPAPI_C_DEV_PPB_GRAPHICS_3D_DEV_H_ */ | 100 #endif /* PPAPI_C_DEV_PPB_GRAPHICS_3D_DEV_H_ */ |
101 | 101 |
OLD | NEW |