|
| View () |
|
| View (const osg::View &view, const osg::CopyOp ©op=CopyOp::SHALLOW_COPY) |
|
| META_Object (osg, View) |
|
virtual void | take (View &rhs) |
|
void | setStats (osg::Stats *stats) |
|
osg::Stats * | getStats () |
|
const osg::Stats * | getStats () const |
|
void | setLightingMode (LightingMode lightingMode) |
|
LightingMode | getLightingMode () const |
|
void | setLight (osg::Light *light) |
|
osg::Light * | getLight () |
|
const osg::Light * | getLight () const |
|
void | setCamera (osg::Camera *camera) |
|
osg::Camera * | getCamera () |
|
const osg::Camera * | getCamera () const |
|
void | setFrameStamp (osg::FrameStamp *fs) |
|
osg::FrameStamp * | getFrameStamp () |
|
const osg::FrameStamp * | getFrameStamp () const |
|
bool | addSlave (osg::Camera *camera, bool useMastersSceneData=true) |
|
bool | addSlave (osg::Camera *camera, const osg::Matrix &projectionOffset, const osg::Matrix &viewOffset, bool useMastersSceneData=true) |
|
bool | removeSlave (unsigned int pos) |
|
unsigned int | getNumSlaves () const |
|
Slave & | getSlave (unsigned int pos) |
|
const Slave & | getSlave (unsigned int pos) const |
|
unsigned int | findSlaveIndexForCamera (osg::Camera *camera) const |
|
Slave * | findSlaveForCamera (osg::Camera *camera) |
|
void | updateSlaves () |
|
| Object () |
|
| Object (bool threadSafeRefUnref) |
|
| Object (const Object &, const CopyOp ©op=CopyOp::SHALLOW_COPY) |
|
virtual Object * | cloneType () const =0 |
|
virtual Object * | clone (const CopyOp &) const =0 |
|
virtual bool | isSameKindAs (const Object *) const |
|
virtual const char * | libraryName () const =0 |
|
virtual const char * | className () const =0 |
|
virtual void | setThreadSafeRefUnref (bool threadSafe) |
|
virtual void | setName (const std::string &name) |
|
void | setName (const char *name) |
|
const std::string & | getName () const |
|
void | setDataVariance (DataVariance dv) |
|
DataVariance | getDataVariance () const |
|
virtual void | computeDataVariance () |
|
void | setUserDataContainer (osg::UserDataContainer *udc) |
|
osg::UserDataContainer * | getUserDataContainer () |
|
const osg::UserDataContainer * | getUserDataContainer () const |
|
osg::UserDataContainer * | getOrCreateUserDataContainer () |
|
virtual void | setUserData (Referenced *obj) |
|
virtual Referenced * | getUserData () |
|
virtual const Referenced * | getUserData () const |
|
template<typename T > |
bool | getUserValue (const std::string &name, T &value) const |
|
template<typename T > |
void | setUserValue (const std::string &name, const T &value) |
|
virtual void | resizeGLObjectBuffers (unsigned int) |
|
virtual void | releaseGLObjects (osg::State *=0) const |
|
template<typename T > |
BoolValueObject UCharValueObject UShortValueObject UIntValueObject DoubleValueObject Vec3fValueObject Vec2dValueObject Vec4dValueObject PlaneValueObject MatrixdValueObject bool | getUserValue (const std::string &name, T &value) const |
|
| Referenced () |
|
| Referenced (bool threadSafeRefUnref) |
|
| Referenced (const Referenced &) |
|
Referenced & | operator= (const Referenced &) |
|
bool | getThreadSafeRefUnref () const |
|
OpenThreads::Mutex * | getRefMutex () const |
|
int | ref () const |
|
int | unref () const |
|
int | unref_nodelete () const |
|
int | referenceCount () const |
|
ObserverSet * | getObserverSet () const |
|
ObserverSet * | getOrCreateObserverSet () const |
|
void | addObserver (Observer *observer) const |
|
void | removeObserver (Observer *observer) const |
|
View - maintains a master camera view and a list of slave cameras that are relative to this master camera. Note, if no slave cameras are attached to the view then the master camera does both the control and implementation of the rendering of the scene, but if slave cameras are present then the master controls the view onto the scene, while the slaves implement the rendering of the scene.