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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 o3d.findBasePath_(); | 227 o3d.findBasePath_(); |
228 | 228 |
229 | 229 |
230 // Unlike o3djs, we include all o3d-webgl files at once, this way, an o3d | 230 // Unlike o3djs, we include all o3d-webgl files at once, this way, an o3d |
231 // developer converting to use these classes only has to include this | 231 // developer converting to use these classes only has to include this |
232 // javascript file. | 232 // javascript file. |
233 o3d.include('object_base'); | 233 o3d.include('object_base'); |
234 o3d.include('named_object_base'); | 234 o3d.include('named_object_base'); |
235 o3d.include('named_object'); | 235 o3d.include('named_object'); |
236 o3d.include('param_object'); | 236 o3d.include('param_object'); |
| 237 o3d.include('param_array'); |
237 o3d.include('param'); | 238 o3d.include('param'); |
238 o3d.include('event'); | 239 o3d.include('event'); |
239 o3d.include('raw_data'); | 240 o3d.include('raw_data'); |
240 o3d.include('texture'); | 241 o3d.include('texture'); |
241 o3d.include('bitmap'); | 242 o3d.include('bitmap'); |
242 o3d.include('file_request'); | 243 o3d.include('file_request'); |
243 o3d.include('client'); | 244 o3d.include('client'); |
244 o3d.include('render_node'); | 245 o3d.include('render_node'); |
245 o3d.include('clear_buffer'); | 246 o3d.include('clear_buffer'); |
246 o3d.include('state_set'); | 247 o3d.include('state_set'); |
(...skipping 16 matching lines...) Expand all Loading... |
263 o3d.include('buffer'); | 264 o3d.include('buffer'); |
264 o3d.include('stream'); | 265 o3d.include('stream'); |
265 o3d.include('stream_bank'); | 266 o3d.include('stream_bank'); |
266 o3d.include('primitive'); | 267 o3d.include('primitive'); |
267 o3d.include('shape'); | 268 o3d.include('shape'); |
268 o3d.include('effect'); | 269 o3d.include('effect'); |
269 o3d.include('material'); | 270 o3d.include('material'); |
270 o3d.include('archive_request'); | 271 o3d.include('archive_request'); |
271 | 272 |
272 | 273 |
OLD | NEW |