OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2010, Google Inc. | 2 * Copyright 2010, Google Inc. |
3 * All rights reserved. | 3 * All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 15 matching lines...) Expand all Loading... |
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
30 */ | 30 */ |
31 | 31 |
32 | 32 |
33 /** | 33 /** |
34 * A RawData object contains raw binary data which could contain | 34 * A RawData object contains raw binary data which could contain |
35 * image, audio, text, or other information. | 35 * image, audio, text, or other information. |
36 * | 36 * |
37 * var request = g_pack.createArchiveRequest(); | 37 * var request = g_pack.createArchiveRequest(); |
38 * | 38 * |
39 * request.onfileavailable = function(rawData) { | 39 * request.onfileavailable = function(rawData) { |
40 * var texture = g_pack.createTextureFromRawData(rawData, true); | 40 * var texture = g_pack.createTextureFromRawData(rawData, true); |
41 * ... | 41 * ... |
42 * }; | 42 * }; |
43 * | 43 * |
44 * request.send(); | 44 * request.send(); |
45 * @constructor | 45 * @constructor |
46 */ | 46 */ |
47 o3d.RawData = function() { | 47 o3d.RawData = function() { |
48 o3d.NamedObject.call(this); | 48 o3d.NamedObject.call(this); |
49 }; | 49 }; |
50 o3d.inherit('RawData', 'NamedObject'); | 50 o3d.inherit('RawData', 'NamedObject'); |
51 | 51 |
52 | 52 |
53 /** | 53 /** |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 /** | 94 /** |
95 * Flushes the memory resources associated with this data object, | 95 * Flushes the memory resources associated with this data object, |
96 * but keeps a cache in case the data object is used later. | 96 * but keeps a cache in case the data object is used later. |
97 */ | 97 */ |
98 o3d.RawData.prototype.flush = function() { | 98 o3d.RawData.prototype.flush = function() { |
99 o3d.notImplemented(); | 99 o3d.notImplemented(); |
100 }; | 100 }; |
101 | 101 |
102 | 102 |
103 | 103 |
OLD | NEW |