summaryrefslogtreecommitdiffstats
path: root/o3d/plugin/idl/primitive.idl
diff options
context:
space:
mode:
authorgman@google.com <gman@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-05 04:15:12 +0000
committergman@google.com <gman@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-05 04:15:12 +0000
commit96ba3f3624defbbb523023d3e731d56793083927 (patch)
tree7ec64d17aaa699c22d2fc76d9801b435f6a2baf7 /o3d/plugin/idl/primitive.idl
parentcf066e493d140b20125adf2335f8b891d7e4b536 (diff)
downloadchromium_src-96ba3f3624defbbb523023d3e731d56793083927.zip
chromium_src-96ba3f3624defbbb523023d3e731d56793083927.tar.gz
chromium_src-96ba3f3624defbbb523023d3e731d56793083927.tar.bz2
Added default values to property documentation.
Fixed a few more docs issues. Review URL: http://codereview.chromium.org/159894 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22463 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/plugin/idl/primitive.idl')
-rw-r--r--o3d/plugin/idl/primitive.idl4
1 files changed, 4 insertions, 0 deletions
diff --git a/o3d/plugin/idl/primitive.idl b/o3d/plugin/idl/primitive.idl
index 2f83535..cf32673 100644
--- a/o3d/plugin/idl/primitive.idl
+++ b/o3d/plugin/idl/primitive.idl
@@ -63,22 +63,26 @@ class Primitive : Element {
%[
The type of primitive the primitive is (i.e., Primitive::POINTLIST,
Primitive::LINELIST, Primitive::TRIANGLELIST, etc.)
+ Default = TRIANGLELIST.
%]
[getter, setter] Primitive::PrimitiveType primitive_type;
%[
The number of vertices the primitive has.
+ Default = 0.
%]
[getter, setter] unsigned int number_vertices;
%[
The number of rendering primitives (i.e., triangles, points, lines) the
primitive has.
+ Default = 0.
%]
[getter, setter] unsigned int number_primitives;
%[
The index of the first vertex to render.
+ Default = 0.
%]
[getter, setter] unsigned int start_index;