Public Member Functions |
| BrowserImage () |
virtual void | navigateTo (const std::string &url)=0 |
| Image () |
| Image (const Image &image, const CopyOp ©op=CopyOp::SHALLOW_COPY) |
virtual Object * | cloneType () const |
virtual Object * | clone (const CopyOp ©op) const |
virtual bool | isSameKindAs (const Object *obj) const |
virtual const char * | libraryName () const |
virtual const char * | className () const |
virtual const GLvoid * | getDataPointer () const |
virtual unsigned int | getTotalDataSize () const |
virtual int | compare (const Image &rhs) const |
void | setFileName (const std::string &fileName) |
const std::string & | getFileName () const |
void | setWriteHint (WriteHint writeHint) |
WriteHint | getWriteHint () const |
void | setAllocationMode (AllocationMode mode) |
AllocationMode | getAllocationMode () const |
virtual void | allocateImage (int s, int t, int r, GLenum pixelFormat, GLenum type, int packing=1) |
virtual void | setImage (int s, int t, int r, GLint internalTextureformat, GLenum pixelFormat, GLenum type, unsigned char *data, AllocationMode mode, int packing=1) |
virtual void | readPixels (int x, int y, int width, int height, GLenum pixelFormat, GLenum type) |
virtual void | readImageFromCurrentTexture (unsigned int contextID, bool copyMipMapsIfAvailable, GLenum type=GL_UNSIGNED_BYTE) |
void | scaleImage (int s, int t, int r) |
virtual void | scaleImage (int s, int t, int r, GLenum newDataType) |
virtual void | copySubImage (int s_offset, int t_offset, int r_offset, const osg::Image *source) |
void | setOrigin (Origin origin) |
Origin | getOrigin () const |
int | s () const |
int | t () const |
int | r () const |
void | setInternalTextureFormat (GLint internalFormat) |
GLint | getInternalTextureFormat () const |
void | setPixelFormat (GLenum pixelFormat) |
GLenum | getPixelFormat () const |
void | setDataType (GLenum dataType) |
GLenum | getDataType () const |
void | setPacking (unsigned int packing) |
unsigned int | getPacking () const |
bool | isCompressed () const |
void | setPixelAspectRatio (float pixelAspectRatio) |
float | getPixelAspectRatio () const |
unsigned int | getPixelSizeInBits () const |
unsigned int | getRowSizeInBytes () const |
unsigned int | getImageSizeInBytes () const |
unsigned int | getTotalSizeInBytes () const |
unsigned int | getTotalSizeInBytesIncludingMipmaps () const |
bool | valid () const |
unsigned char * | data () |
const unsigned char * | data () const |
unsigned char * | data (int column, int row=0, int image=0) |
const unsigned char * | data (int column, int row=0, int image=0) const |
Vec4 | getColor (unsigned int s, unsigned t=0, unsigned r=0) const |
Vec4 | getColor (const Vec2 &texcoord) const |
Vec4 | getColor (const Vec3 &texcoord) const |
void | flipHorizontal () |
void | flipVertical () |
void | ensureValidSizeForTexturing (GLint maxTextureSize) |
bool | isMipmap () const |
unsigned int | getNumMipmapLevels () const |
void | setMipmapLevels (const MipmapDataType &mipmapDataVector) |
const MipmapDataType & | getMipmapLevels () const |
unsigned int | getMipmapOffset (unsigned int mipmapLevel) const |
unsigned char * | getMipmapData (unsigned int mipmapLevel) |
const unsigned char * | getMipmapData (unsigned int mipmapLevel) const |
virtual bool | isImageTranslucent () const |
void | setPixelBufferObject (PixelBufferObject *buffer) |
PixelBufferObject * | getPixelBufferObject () |
const PixelBufferObject * | getPixelBufferObject () const |
virtual bool | requiresUpdateCall () const |
virtual void | update (NodeVisitor *) |
virtual bool | sendFocusHint (bool) |
virtual bool | sendPointerEvent (int, int, int) |
virtual bool | sendKeyEvent (int, bool) |
virtual void | setFrameLastRendered (const osg::FrameStamp *) |
| BufferData () |
| BufferData (const BufferData &bd, const CopyOp ©op=CopyOp::SHALLOW_COPY) |
void | setBufferObject (BufferObject *bufferObject) |
BufferObject * | getBufferObject () |
const BufferObject * | getBufferObject () const |
void | setBufferIndex (unsigned int index) |
unsigned int | getBufferIndex () const |
GLBufferObject * | getGLBufferObject (unsigned int contextID) const |
GLBufferObject * | getOrCreateGLBufferObject (unsigned int contextID) const |
void | setModifiedCallback (ModifiedCallback *md) |
ModifiedCallback * | getModifiedCallback () |
const ModifiedCallback * | getModifiedCallback () const |
void | dirty () |
void | setModifiedCount (unsigned int value) |
unsigned int | getModifiedCount () const |
virtual void | resizeGLObjectBuffers (unsigned int maxSize) |
void | releaseGLObjects (State *state=0) const |
| Object () |
| Object (bool threadSafeRefUnref) |
| Object (const Object &, const CopyOp ©op=CopyOp::SHALLOW_COPY) |
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) |
| 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 |
Pure virtual base class that provides the browser interface for integration with 3rd party implementations. Implementations of BrowserImage are provided via the gecko plugin.