OLD | NEW |
1 .. _overview: | 1 .. _overview: |
2 | 2 |
3 ################## | 3 ################## |
4 Technical Overview | 4 Technical Overview |
5 ################## | 5 ################## |
6 | 6 |
7 .. contents:: | 7 .. contents:: |
8 :local: | 8 :local: |
9 :backlinks: none | 9 :backlinks: none |
10 :depth: 2 | 10 :depth: 2 |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 <devguide/coding/message-system>` from the C++ code in your NaCl module. | 273 <devguide/coding/message-system>` from the C++ code in your NaCl module. |
274 * :doc:`Doing file I/O <devguide/coding/file-io>`. | 274 * :doc:`Doing file I/O <devguide/coding/file-io>`. |
275 * :doc:`Playing audio <devguide/coding/audio>`. | 275 * :doc:`Playing audio <devguide/coding/audio>`. |
276 * :doc:`Rendering 3D graphics <devguide/coding/3D-graphics>`. | 276 * :doc:`Rendering 3D graphics <devguide/coding/3D-graphics>`. |
277 | 277 |
278 Pepper includes both a :doc:`C API </c-api>` and a :doc:`C++ API </cpp-api>`. | 278 Pepper includes both a :doc:`C API </c-api>` and a :doc:`C++ API </cpp-api>`. |
279 The C++ API is a set of bindings written on top of the C API. For additional | 279 The C++ API is a set of bindings written on top of the C API. For additional |
280 information about Pepper, see `Pepper Concepts | 280 information about Pepper, see `Pepper Concepts |
281 <http://code.google.com/p/ppapi/wiki/Concepts>`_. | 281 <http://code.google.com/p/ppapi/wiki/Concepts>`_. |
282 | 282 |
283 .. _versioning: | |
284 | |
285 Versioning | |
286 ========== | |
287 | |
288 Chrome is released on a six week cycle, and developer versions of Chrome are | |
289 pushed to the public beta channel three weeks before each release. As with any | |
290 software, each release of Chrome may include changes to Native Client and the | |
291 Pepper interfaces that may require modification to existing applications. | |
292 However, modules compiled for one version of Pepper/Chrome should work with | |
293 subsequent versions of Pepper/Chrome. The SDK includes multiple versions of the | |
294 Pepper APIs to help you make adjustments to API changes and take | |
295 advantage of new features: `stable </native-client/pepper_stable>`_, `beta | |
296 </native-client/pepper_beta>`_ and `dev </native-client/pepper_dev>`_. | |
297 | |
298 .. _where-to-start: | |
299 | |
300 Where to start | 283 Where to start |
301 ============== | 284 ============== |
302 | 285 |
303 The :doc:`Quick Start <quick-start>` document provides links to downloads and | 286 The :doc:`Quick Start <quick-start>` document provides links to downloads and |
304 documentation to help you get started with developing and distributing Native | 287 documentation to help you get started with developing and distributing Native |
305 Client applications. | 288 Client applications. |
OLD | NEW |