OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2009, Google Inc. | 2 * Copyright 2009, 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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 } | 263 } |
264 \endcode | 264 \endcode |
265 | 265 |
266 Note that modifications to this array [e.g. push()] will not affect | 266 Note that modifications to this array [e.g. push()] will not affect |
267 the underlying Pack, while modifications to the array's members | 267 the underlying Pack, while modifications to the array's members |
268 <strong>will</strong> affect them. | 268 <strong>will</strong> affect them. |
269 %] | 269 %] |
270 [userglue_getter, getter] ObjectBaseArray objects_; | 270 [userglue_getter, getter] ObjectBaseArray objects_; |
271 | 271 |
272 %[ | 272 %[ |
273 Creates a FileRequest to be used to asynchronously load a Texture. | 273 Creates a FileRequest to be used to asynchronously load a Texture or |
274 \param type Must be "TEXTURE" | 274 RawData. Note: Loading a "TEXTURE" is deprecated. The recommended way to |
| 275 load a texture is to load a RawData, use that to create Bitmap, Massage |
| 276 the Bitmap to your liking the use that to create a Texture. |
| 277 \param type Must be "TEXTURE" or "RAWDATA" |
275 \return a FileRequest | 278 \return a FileRequest |
276 %] | 279 %] |
277 [noccp, userglue] FileRequest? CreateFileRequest(String type); | 280 [noccp, userglue] FileRequest? CreateFileRequest(String type); |
278 [verbatim=cpp_glue, include="core/cross/file_request.h"] %{ | 281 [verbatim=cpp_glue, include="core/cross/file_request.h"] %{ |
279 o3d::FileRequest *userglue_method_CreateFileRequest( | 282 o3d::FileRequest *userglue_method_CreateFileRequest( |
280 o3d::Pack *pack, const o3d::String &type) { | 283 o3d::Pack *pack, const o3d::String &type) { |
281 return pack->CreateFileRequest(type); | 284 return pack->CreateFileRequest(type); |
282 } | 285 } |
283 o3d::ObjectBaseArray userglue_getter_objects_( | 286 o3d::ObjectBaseArray userglue_getter_objects_( |
284 o3d::Pack* self) { | 287 o3d::Pack* self) { |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
322 | 325 |
323 \param width The width of the bitmap in pixel. | 326 \param width The width of the bitmap in pixel. |
324 \param height The height of the bitmap in pixel. | 327 \param height The height of the bitmap in pixel. |
325 \param format The format of the bitmap. | 328 \param format The format of the bitmap. |
326 \return the new bitmap obejct. | 329 \return the new bitmap obejct. |
327 %] | 330 %] |
328 Bitmap? CreateBitmap(int width, int height, Texture::Format format); | 331 Bitmap? CreateBitmap(int width, int height, Texture::Format format); |
329 }; // Pack | 332 }; // Pack |
330 | 333 |
331 } // namespace o3d | 334 } // namespace o3d |
OLD | NEW |