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

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

Issue 1703014: Added culling sample. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: '' Created 10 years, 7 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-samples/culling.html ('k') | samples/o3d-webgl/bounding_box.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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 75
76 /** 76 /**
77 * The scratch canvas object. 77 * The scratch canvas object.
78 * @private 78 * @private
79 */ 79 */
80 o3d.Bitmap.scratch_canvas_ = null; 80 o3d.Bitmap.scratch_canvas_ = null;
81 81
82 82
83 /** 83 /**
84 * Gets a canvas to use for scratch work. 84 * Gets a canvas to use for scratch work.
85 * @return {Canvas} The canvas.
85 * @private 86 * @private
86 */ 87 */
87 o3d.Bitmap.getScratchCanvas_ = function() { 88 o3d.Bitmap.getScratchCanvas_ = function() {
88 if (!o3d.Bitmap.scratch_canvas_) 89 if (!o3d.Bitmap.scratch_canvas_)
89 o3d.Bitmap.scratch_canvas_ = document.createElement('CANVAS'); 90 o3d.Bitmap.scratch_canvas_ = document.createElement('CANVAS');
90 return o3d.Bitmap.scratch_canvas_; 91 return o3d.Bitmap.scratch_canvas_;
91 } 92 }
92 93
93 94
94 /** 95 /**
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 192
192 193
193 /** 194 /**
194 * The Semantic of the bitmap. 195 * The Semantic of the bitmap.
195 * @type {!o3d.Bitmap.Semantic} 196 * @type {!o3d.Bitmap.Semantic}
196 */ 197 */
197 o3d.Bitmap.prototype.semantic = o3d.Bitmap.UNKNOWN_SEMANTIC; 198 o3d.Bitmap.prototype.semantic = o3d.Bitmap.UNKNOWN_SEMANTIC;
198 199
199 200
200 201
OLDNEW
« no previous file with comments | « samples/o3d-webgl-samples/culling.html ('k') | samples/o3d-webgl/bounding_box.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698