Removed deprecated API in preparation for 0.9.9 release.
This commit is contained in:
@@ -473,7 +473,7 @@ bool HeightField_readLocalData(Object& obj, Input& fr)
|
||||
int numcolumns,numrows;
|
||||
fr[1].getInt(numcolumns);
|
||||
fr[2].getInt(numrows);
|
||||
heightfield.allocateGrid(numcolumns,numrows);
|
||||
heightfield.allocate(numcolumns,numrows);
|
||||
fr+=3;
|
||||
iteratorAdvanced = true;
|
||||
}
|
||||
|
||||
@@ -206,7 +206,6 @@ BEGIN_OBJECT_REFLECTOR(osg::HeightField)
|
||||
Method1(void, accept, IN, osg::ShapeVisitor &, sv);
|
||||
Method1(void, accept, IN, osg::ConstShapeVisitor &, csv);
|
||||
Method2(void, allocate, IN, unsigned int, numColumns, IN, unsigned int, numRows);
|
||||
Method2(void, allocateGrid, IN, unsigned int, numColumns, IN, unsigned int, numRows);
|
||||
Method0(unsigned int, getNumColumns);
|
||||
Method0(unsigned int, getNumRows);
|
||||
Method1(void, setOrigin, IN, const osg::Vec3 &, origin);
|
||||
|
||||
@@ -42,7 +42,6 @@ BEGIN_ABSTRACT_OBJECT_REFLECTOR(osg::Texture2D)
|
||||
Method0(int, getTextureWidth);
|
||||
Method1(void, setTextureHeight, IN, int, height);
|
||||
Method0(int, getTextureHeight);
|
||||
Method2(void, getTextureSize, IN, int &, width, IN, int &, height);
|
||||
Method1(void, setSubloadCallback, IN, osg::Texture2D::SubloadCallback *, cb);
|
||||
Method0(osg::Texture2D::SubloadCallback *, getSubloadCallback);
|
||||
Method0(const osg::Texture2D::SubloadCallback *, getSubloadCallback);
|
||||
|
||||
Reference in New Issue
Block a user