Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(552)

Side by Side Diff: samples/o3d-webgl/raw_data.js

Issue 3083012: Tidying up. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/o3d/
Patch Set: '' Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « samples/o3d-webgl/named_object.js ('k') | samples/o3d-webgl/render_surface.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « samples/o3d-webgl/named_object.js ('k') | samples/o3d-webgl/render_surface.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698