diff options
author | gman@google.com <gman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-19 00:08:29 +0000 |
---|---|---|
committer | gman@google.com <gman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-19 00:08:29 +0000 |
commit | 390d94e6d41312cf24bf17593321d27ea32e1692 (patch) | |
tree | ee7b49b5d23bf765cb0e17e4b2fbd4acabc9d2a2 /o3d/plugin | |
parent | 8653167fd370f88b3bcc2be052a9aa26873dbe44 (diff) | |
download | chromium_src-390d94e6d41312cf24bf17593321d27ea32e1692.zip chromium_src-390d94e6d41312cf24bf17593321d27ea32e1692.tar.gz chromium_src-390d94e6d41312cf24bf17593321d27ea32e1692.tar.bz2 |
A bunch more docs fixes
Review URL: http://codereview.chromium.org/171070
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23679 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/plugin')
-rw-r--r-- | o3d/plugin/idl/canvas.idl | 3 | ||||
-rw-r--r-- | o3d/plugin/idl/curve.idl | 2 | ||||
-rw-r--r-- | o3d/plugin/idl/pack.idl | 2 |
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); |