diff options
-rw-r--r-- | o3d/plugin/idl/draw_list.idl | 2 | ||||
-rw-r--r-- | o3d/plugin/idl/file_request.idl | 9 | ||||
-rw-r--r-- | o3d/plugin/idl/param.idl | 5 |
3 files changed, 12 insertions, 4 deletions
diff --git a/o3d/plugin/idl/draw_list.idl b/o3d/plugin/idl/draw_list.idl index 7a46e0b..66fdcb74 100644 --- a/o3d/plugin/idl/draw_list.idl +++ b/o3d/plugin/idl/draw_list.idl @@ -51,8 +51,6 @@ namespace o3d { BY_Z_ORDER = 1, BY_PRIORITY = 2 }; - - [getter] unsigned int global_index_; }; // DrawList } // namespace o3d diff --git a/o3d/plugin/idl/file_request.idl b/o3d/plugin/idl/file_request.idl index c0d6f77..5e931ce 100644 --- a/o3d/plugin/idl/file_request.idl +++ b/o3d/plugin/idl/file_request.idl @@ -61,8 +61,15 @@ namespace o3d { [nocpp, include="core/cross/file_request.h"] class FileRequest : ObjectBase { + %[ + A callback to call whenever the ready state of the request changes. + %] [setter=set_onreadystatechange] - FileRequestCallback onreadystatechange; + FileRequestCallback onreadystatechange; + + %[ + The URI this request is for. + %] [getter=uri] String uri; %[ On completion of successful texture file loads, this holds the loaded diff --git a/o3d/plugin/idl/param.idl b/o3d/plugin/idl/param.idl index 09e21db..4e4c36d 100644 --- a/o3d/plugin/idl/param.idl +++ b/o3d/plugin/idl/param.idl @@ -246,7 +246,7 @@ typedef Param[] ParamVector; }; %[ - A Param which stores a Texture. + A Param which stores a Sampler. %] [nocpp, include="core/cross/sampler.h"] class ParamSampler : Param { %[ @@ -255,6 +255,9 @@ typedef Param[] ParamVector; [getter, setter, property=rw] Sampler? value_; }; +%[ + A Param which stores a Texture. +%] [nocpp, include="core/cross/param.h"] class ParamTexture : Param { %[ The Texture stored by the Param. |