~ubuntu-branches/debian/experimental/openscenegraph/experimental

« back to all changes in this revision

Viewing changes to OpenSceneGraph/src/osgWrappers/osg/Depth.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Alberto Luaces
  • Date: 2010-05-03 21:42:01 UTC
  • mfrom: (1.1.9 upstream) (2.1.11 sid)
  • Revision ID: james.westby@ubuntu.com-20100503214201-iy060qxb94vsfv87
Tags: 2.8.3-3
* Added README.source. Thanks Manuel Montecelo.
* Removed FindGDAL.cmake file supplied by upstream since it does not
  detect current libgdal1-1.6.0. The script provided by CMake works
  fine.
* Removed openthreads-doc since OpenThreads documentation is shared with
  OpenSceneGraph's, hence this package was empty.
* Now ccache handling is being done automatically by CMake.
* Drop conflict dependencies with previous versions to let them coexist
  with current ones (Closes: #580079 #580081).

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
                  __osg_Object_P1__cloneType,
53
53
                  "Clone the type of an attribute, with Object* return type. ",
54
54
                  "Must be defined by derived classes. ");
55
 
        I_Method1(osg::Object *, clone, IN, const osg::CopyOp &, x,
 
55
        I_Method1(osg::Object *, clone, IN, const osg::CopyOp &, copyop,
56
56
                  Properties::VIRTUAL,
57
57
                  __osg_Object_P1__clone__C5_osg_CopyOp_R1,
58
58
                  "Clone an attribute, with Object* return type. ",
82
82
                  __int__compare__C5_StateAttribute_R1,
83
83
                  "return -1 if *this < *rhs, 0 if *this==*rhs, 1 if *this>*rhs. ",
84
84
                  "");
85
 
        I_Method1(bool, getModeUsage, IN, osg::StateAttribute::ModeUsage &, x,
 
85
        I_Method1(bool, getModeUsage, IN, osg::StateAttribute::ModeUsage &, usage,
86
86
                  Properties::VIRTUAL,
87
87
                  __bool__getModeUsage__StateAttribute_ModeUsage_R1,
88
88
                  "Return the modes associated with this StateAttribute. ",
132
132
                  __bool__getWriteMask,
133
133
                  "",
134
134
                  "");
135
 
        I_Method1(void, apply, IN, osg::State &, x,
 
135
        I_Method1(void, apply, IN, osg::State &, state,
136
136
                  Properties::VIRTUAL,
137
137
                  __void__apply__State_R1,
138
138
                  "apply the OpenGL state attributes. ",