summaryrefslogtreecommitdiffstats
path: root/o3d/plugin
diff options
context:
space:
mode:
Diffstat (limited to 'o3d/plugin')
-rw-r--r--o3d/plugin/idl/canvas.idl3
-rw-r--r--o3d/plugin/idl/curve.idl2
-rw-r--r--o3d/plugin/idl/pack.idl2
3 files changed, 6 insertions, 1 deletions
diff --git a/o3d/plugin/idl/canvas.idl b/o3d/plugin/idl/canvas.idl
index a9b61fe..446d5b7 100644
--- a/o3d/plugin/idl/canvas.idl
+++ b/o3d/plugin/idl/canvas.idl
@@ -112,6 +112,7 @@ class Canvas : ParamObject {
\param texture The Texture2D object where the bitmap is extracted from.
\param left The position of the left side of the bitmap.
\param bottom The position of the bottom side of the bitmap.
+ @deprecated
%]
void DrawBitmap(Texture2D texture, float left, float bottom);
@@ -157,6 +158,8 @@ class Canvas : ParamObject {
texture must match exactly the size of the Canvas set by the setSize() method.
The format of the texture must be set to either ARGB8 or XRGB8.
\param texture Texture to copy to.
+ @deprecated
+ \sa o3d.Texture2D.drawImage
%]
void CopyToTexture(Texture2D texture);
diff --git a/o3d/plugin/idl/curve.idl b/o3d/plugin/idl/curve.idl
index 2caf91d..eacb901 100644
--- a/o3d/plugin/idl/curve.idl
+++ b/o3d/plugin/idl/curve.idl
@@ -155,7 +155,7 @@ class Curve : Function {
%[
Whether or not a cache is used to speed up evaluation of this Curve
Default = true.
- \sa o3d.Curve.setSampleRate
+ \sa o3d.Curve.sampleRate
%]
[getter, setter] bool use_cache;
diff --git a/o3d/plugin/idl/pack.idl b/o3d/plugin/idl/pack.idl
index 6880aed..3d63f6b 100644
--- a/o3d/plugin/idl/pack.idl
+++ b/o3d/plugin/idl/pack.idl
@@ -308,6 +308,8 @@ typedef Bitmap[] BitmapArray;
\param generate_mips True if you want O3D to generate mip maps for the
texture.
\return the Texture
+ \sa o3d.Pack.createBitmapsFromRawData
+ @deprecated
%]
Texture? CreateTextureFromRawData(RawData raw_data,
bool generate_mips);