Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Related Pages  

Ogre::RenderTargetTexture Class Reference

#include <OgreRenderTargetTexture.h>

Inheritance diagram for Ogre::RenderTargetTexture:

Inheritance graph
[legend]
Collaboration diagram for Ogre::RenderTargetTexture:

Collaboration graph
[legend]
List of all members.

Public Types

enum  StatFlags {
  SF_NONE = 0, SF_FPS = 1, SF_AVG_FPS = 2, SF_BEST_FPS = 4,
  SF_WORST_FPS = 8, SF_TRIANGLE_COUNT = 16, SF_ALL = 0xFFFF
}

Public Methods

virtual bool isRenderTarget () const
 @copydoc Texture::isRenderTarget

TextureType getTextureType (void) const
 Gets the type of texture.

unsigned short getNumMipMaps (void) const
 Gets the number of mipmaps to be used for this texture.

void setNumMipMaps (unsigned short num)
 Sets the number of mipmaps to be used for this texture.

float getGamma (void) const
 Returns the gamma adjustment factor applied to this texture.

void setGamma (float g)
 Sets the gamma adjustment factor applied to this texture.

unsigned int getHeight (void) const
 Returns the height of the texture.

unsigned int getWidth (void) const
 Returns the width of the texture.

unsigned int getDepth (void) const
 Returns the depth of the texture (only applicable for 3D textures).

std::pair< uint, uintgetDimensions () const
 Returns both the width and height of the texture.

TextureUsage getUsage () const
 Returns the TextureUsage indentifier for this Texture.

virtual void blitToTexture (const Image &src, unsigned uStartX, unsigned uStartY)=0
 Blits the contents of src on the texture.

virtual void blitImage (const Image &src, const Image::Rect imgRect, const Image::Rect texRect)
 Blits a rect from an image to the texture.

virtual void copyToTexture (Texture *target)
 Copies (and maybe scales to fit) the contents of this texture to another texture.

virtual void loadImage (const Image &img)=0
 Loads the data from an image.

virtual void loadRawData (const DataChunk &pData, ushort uWidth, ushort uHeight, PixelFormat eFormat)
 Loads the data from the raw memory area.

void enable32Bit (bool setting=true)
virtual PixelFormat getFormat () const
 Returns the pixel format for the texture surface.

virtual bool hasAlpha (void) const
 Returns true if the texture has an alpha layer.

virtual void load ()=0
 Loads the resource, if it is not already.

virtual void unload ()
 Unloads the resource, but retains data to recreate.

virtual size_t getSize (void) const
 Retrieves info about the size of the resource.

virtual void touch (void)
 'Touches' the resource to indicate it has been used.

time_t getLastAccess (void) const
 Gets the last time the resource was 'touched'.

const StringgetName (void) const
 Gets resource name.

ResourceHandle getHandle (void) const
bool isLoaded (void) const
 Returns true if the Resource has been loaded, false otherwise.

virtual void destroy ()
 A method to make the resource delete itself.

virtual const StringgetName (void) const
 Retrieve target's name.

virtual void getMetrics (unsigned int &width, unsigned int &height, unsigned int &colourDepth)
 Retrieve information about the render target.

virtual unsigned int getWidth (void) const
virtual unsigned int getHeight (void) const
virtual unsigned int getColourDepth (void) const
virtual void update (void)
 Tells the target to update it's contents.

virtual ViewportaddViewport (Camera *cam, int ZOrder=0, float left=0.0f, float top=0.0f, float width=1.0f, float height=1.0f)
 Adds a viewport to the rendering target.

virtual unsigned short getNumViewports (void) const
 Returns the number of viewports attached to this target.

virtual ViewportgetViewport (unsigned short index)
 Retrieves a pointer to the viewport with the given index.

virtual void removeViewport (int ZOrder)
 Removes a viewport at a given ZOrder.

virtual void removeAllViewports (void)
 Removes all viewports on this target.

virtual void setStatsDisplay (StatFlags sf)
 DEPRECATED Set what kind of statistics display (if any) should be displayed by the system about this target.

virtual void getStatistics (float &lastFPS, float &avgFPS, float &bestFPS, float &worstFPS) const
 Retieves details of current rendering performance.

virtual const FrameStats & getStatistics (void) const
virtual float getLastFPS () const
 Individual stats access - gets the number of frames per second (FPS) based on the last frame rendered.

virtual float getAverageFPS () const
 Individual stats access - gets the average frames per second (FPS) since call to Root::startRendering.

virtual float getBestFPS () const
 Individual stats access - gets the best frames per second (FPS) since call to Root::startRendering.

virtual float getWorstFPS () const
 Individual stats access - gets the worst frames per second (FPS) since call to Root::startRendering.

virtual float getBestFrameTime () const
 Individual stats access - gets the best frame time.

virtual float getWorstFrameTime () const
 Individual stats access - gets the worst frame time.

virtual void resetStatistics (void)
 Resets saved frame-rate statistices.

virtual void outputText (int x, int y, const String &text)=0
 DEPRECATED Outputs text to the target at the specified co-ordinates.

virtual void getCustomAttribute (const String &name, void *pData)
 Gets a custom (maybe platform-specific) attribute.

virtual void setDebugText (const String &text)
 Adds debug text to this window.

const StringgetDebugText () const
 Returns the debug text.

virtual void addListener (RenderTargetListener *listener)
 Add a listener to this RenderTarget which will be called back before & after rendering.

virtual void removeListener (RenderTargetListener *listener)
 Removes a RenderTargetListener previously registered using addListener.

virtual void removeAllListeners (void)
 Removes all listeners from this instance.

virtual void setPriority (uchar priority)
 Sets the priority of this render target in relation to the others.

virtual uchar getPriority () const
 Gets the priority of a render target.

virtual bool isActive () const
 Used to retrieve or set the active state of the render target.

virtual void setActive (bool state)
 Used to retrieve the active state of the render target.

virtual void writeContentsToFile (const String &filename)=0
 Writes the current contents of the render target to the named file.

virtual String writeContentsToTimestampedFile (const String &filenamePrefix, const String &filenameSuffix)
 Writes the current contents of the render target to the (PREFIX)(time-stamp)(SUFFIX) file.

virtual bool requiresTextureFlipping () const=0
virtual size_t getTriangleCount (void) const
 Gets the number of triangles rendered in the last update() call.


Protected Types

typedef std::map< int, Viewport *,
std::less< int > > 
ViewportList
typedef std::vector< RenderTargetListener * > RenderTargetListenerList

Protected Methods

void updateStats (void)
virtual void firePreUpdate (void)
 internal method for firing events

virtual void firePostUpdate (void)
 internal method for firing events

virtual void fireViewportPreUpdate (Viewport *vp)
 internal method for firing events

virtual void fireViewportPostUpdate (Viewport *vp)
 internal method for firing events


Protected Attributes

unsigned long mHeight
unsigned long mWidth
unsigned long mDepth
unsigned short mNumMipMaps
float mGamma
TextureType mTextureType
PixelFormat mFormat
TextureUsage mUsage
unsigned short mSrcBpp
unsigned long mSrcWidth
unsigned long mSrcHeight
unsigned short mFinalBpp
bool mHasAlpha
String mName
ResourceHandle mHandle
bool mIsLoaded
time_t mLastAccess
size_t mSize
String mName
 The name of this target.

uchar mPriority
 The priority of the render target.

unsigned int mWidth
unsigned int mHeight
unsigned int mColourDepth
bool mIsDepthBuffered
StatFlags mStatFlags
FrameStats mStats
TimermTimer
String mDebugText
unsigned long mLastSecond
unsigned long mLastTime
size_t mFrameCount
bool mActive
ViewportList mViewportList
 List of viewports, map on Z-order.

RenderTargetListenerList mListeners

Member Typedef Documentation

typedef std::vector<RenderTargetListener*> Ogre::RenderTarget::RenderTargetListenerList [protected, inherited]
 

Definition at line 307 of file OgreRenderTarget.h.

typedef std::map<int, Viewport*, std::less<int> > Ogre::RenderTarget::ViewportList [protected, inherited]
 

Definition at line 303 of file OgreRenderTarget.h.


Member Enumeration Documentation

enum Ogre::RenderTarget::StatFlags [inherited]
 

Enumeration values:
SF_NONE 
SF_FPS 
SF_AVG_FPS 
SF_BEST_FPS 
SF_WORST_FPS 
SF_TRIANGLE_COUNT 
SF_ALL 

Definition at line 58 of file OgreRenderTarget.h.


Member Function Documentation

void Ogre::RenderTarget::addListener RenderTargetListener   listener [virtual, inherited]
 

Add a listener to this RenderTarget which will be called back before & after rendering.

Remarks:
If you want notifications before and after a target is updated by the system, use this method to register your own custom RenderTargetListener class. This is useful for potentially adding your own manual rendering commands before and after the 'normal' system rendering.
NB this should not be used for frame-based scene updates, use Root::addFrameListener for that.

Definition at line 286 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mListeners.

Viewport * Ogre::RenderTarget::addViewport Camera   cam,
int    ZOrder = 0,
float    left = 0.0f,
float    top = 0.0f,
float    width = 1.0f,
float    height = 1.0f
[virtual, inherited]
 

Adds a viewport to the rendering target.

Remarks:
A viewport is the rectangle into which redering output is sent. This method adds a viewport to the render target, rendering from the supplied camera. The rest of the parameters are only required if you wish to add more than one viewport to a single rendering target. Note that size information passed to this method is passed as a parametric, i.e. it is relative rather than absolute. This is to allow viewports to automatically resize along with the target.
Parameters:
cam  The camera from which the viewport contents will be rendered (mandatory)
ZOrder  The relative order of the viewport with others on the target (allows overlapping viewports i.e. picture-in-picture). Higher ZOrders are on top of lower ones. The actual number is irrelevant, only the relative ZOrder matters (you can leave gaps in the numbering)
left  The relative position of the left of the viewport on the target, as a value between 0 and 1.
top  The relative position of the top of the viewport on the target, as a value between 0 and 1.
width  The relative width of the viewport on the target, as a value between 0 and 1.
height  The relative height of the viewport on the target, as a value between 0 and 1.

Definition at line 122 of file OgreRenderTarget.cpp.

References Except, and Ogre::RenderTarget::mViewportList.

virtual void Ogre::Texture::blitImage const Image   src,
const Image::Rect    imgRect,
const Image::Rect    texRect
[virtual, inherited]
 

Blits a rect from an image to the texture.

Parameters:
src  The image with the source data.
imgRect  The data rect to be copied from the image.
texRect  The rect in which to copy the data in the texture.

Reimplemented in Ogre::D3DTexture, and Ogre::D3D9Texture.

Definition at line 134 of file OgreTexture.h.

virtual void Ogre::Texture::blitToTexture const Image   src,
unsigned    uStartX,
unsigned    uStartY
[pure virtual, inherited]
 

Blits the contents of src on the texture.

Deprecated:
This feature is superseded by the blitImage function.
Parameters:
src  the image with the source data

Implemented in Ogre::D3DTexture, Ogre::D3D9Texture, and Ogre::GLTexture.

virtual void Ogre::Texture::copyToTexture Texture   target [virtual, inherited]
 

Copies (and maybe scales to fit) the contents of this texture to another texture.

Reimplemented in Ogre::D3DTexture, and Ogre::D3D9Texture.

Definition at line 141 of file OgreTexture.h.

Referenced by Ogre::D3D9RenderTexture::_copyToTexture(), and Ogre::D3D7RenderTexture::_copyToTexture().

virtual void Ogre::Resource::destroy void    [virtual, inherited]
 

A method to make the resource delete itself.

Note:
This exists because Resource objects could be created in other processes, and they need to be destroyed in the process that created them.

Definition at line 137 of file OgreResource.h.

void Ogre::Texture::enable32Bit bool    setting = true [inherited]
 

Definition at line 152 of file OgreTexture.h.

Referenced by Ogre::GLTextureManager::create(), Ogre::D3D9TextureManager::create(), Ogre::D3DTextureManager::create(), Ogre::D3D9TextureManager::createAsRenderTarget(), Ogre::D3DTextureManager::createAsRenderTarget(), Ogre::GLTextureManager::createManual(), Ogre::GLTexture::GLTexture(), and Ogre::TextureManager::load().

void Ogre::RenderTarget::firePostUpdate void    [protected, virtual, inherited]
 

internal method for firing events

Reimplemented in Ogre::RenderTexture.

Definition at line 326 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mListeners, and Ogre::RenderTargetEvent::source.

Referenced by Ogre::RenderTarget::update().

void Ogre::RenderTarget::firePreUpdate void    [protected, virtual, inherited]
 

internal method for firing events

Definition at line 310 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mListeners, and Ogre::RenderTargetEvent::source.

Referenced by Ogre::RenderTarget::update().

void Ogre::RenderTarget::fireViewportPostUpdate Viewport   vp [protected, virtual, inherited]
 

internal method for firing events

Definition at line 380 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mListeners, and Ogre::RenderTargetViewportEvent::source.

Referenced by Ogre::RenderTarget::update().

void Ogre::RenderTarget::fireViewportPreUpdate Viewport   vp [protected, virtual, inherited]
 

internal method for firing events

Definition at line 366 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mListeners, and Ogre::RenderTargetViewportEvent::source.

Referenced by Ogre::RenderTarget::update().

float Ogre::RenderTarget::getAverageFPS   const [virtual, inherited]
 

Individual stats access - gets the average frames per second (FPS) since call to Root::startRendering.

Definition at line 195 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::FrameStats::avgFPS, and Ogre::RenderTarget::mStats.

float Ogre::RenderTarget::getBestFPS   const [virtual, inherited]
 

Individual stats access - gets the best frames per second (FPS) since call to Root::startRendering.

Definition at line 199 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::FrameStats::bestFPS, and Ogre::RenderTarget::mStats.

float Ogre::RenderTarget::getBestFrameTime   const [virtual, inherited]
 

Individual stats access - gets the best frame time.

Definition at line 213 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::FrameStats::bestFrameTime, and Ogre::RenderTarget::mStats.

unsigned int Ogre::RenderTarget::getColourDepth void    const [virtual, inherited]
 

Definition at line 89 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mColourDepth.

void Ogre::RenderTarget::getCustomAttribute const String   name,
void *    pData
[virtual, inherited]
 

Gets a custom (maybe platform-specific) attribute.

Remarks:
This is a nasty way of satisfying any API's need to see platform-specific details. It horrid, but D3D needs this kind of info. At least it's abstracted.
Parameters:
name  The name of the attribute.
pData  Pointer to memory of the right kind of structure to receive the info.

Reimplemented in Ogre::D3D7RenderWindow, Ogre::D3D7RenderTexture, Ogre::D3D9RenderWindow, and Ogre::D3D9RenderTexture.

Definition at line 271 of file OgreRenderTarget.cpp.

References Except.

Referenced by Ogre::D3D9RenderSystem::_setViewport(), Ogre::D3DRenderSystem::_setViewport(), Ogre::D3D9RenderSystem::createRenderWindow(), and Ogre::D3DRenderSystem::createRenderWindow().

const String & Ogre::RenderTarget::getDebugText   const [inherited]
 

Returns the debug text.

Definition at line 281 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mDebugText.

unsigned int Ogre::Texture::getDepth void    const [inherited]
 

Returns the depth of the texture (only applicable for 3D textures).

Definition at line 104 of file OgreTexture.h.

std::pair< uint, uint > Ogre::Texture::getDimensions   const [inherited]
 

Returns both the width and height of the texture.

Definition at line 108 of file OgreTexture.h.

virtual PixelFormat Ogre::Texture::getFormat   const [virtual, inherited]
 

Returns the pixel format for the texture surface.

Definition at line 158 of file OgreTexture.h.

References Ogre::PixelFormat.

Referenced by Ogre::D3D9Texture::_blitImagesToCubeTex(), and Ogre::D3D9Texture::_loadCubeTex().

float Ogre::Texture::getGamma void    const [inherited]
 

Returns the gamma adjustment factor applied to this texture.

Definition at line 86 of file OgreTexture.h.

Referenced by Ogre::D3D9Texture::loadImage().

ResourceHandle Ogre::Resource::getHandle void    const [inherited]
 

Definition at line 120 of file OgreResource.h.

References Ogre::ResourceHandle.

Referenced by Ogre::Material::clone(), Ogre::BspLevel::loadQuake3Level(), and Ogre::ResourceManager::unload().

unsigned int Ogre::RenderTarget::getHeight void    const [virtual, inherited]
 

Definition at line 85 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mHeight.

Referenced by Ogre::GLRenderSystem::_setViewport(), and Ogre::Viewport::_updateDimensions().

unsigned int Ogre::Texture::getHeight void    const [inherited]
 

Returns the height of the texture.

Definition at line 96 of file OgreTexture.h.

Referenced by Ogre::D3D9Texture::_blitImagesToCubeTex(), Ogre::D3D9Texture::_loadCubeTex(), Ogre::D3DTexture::blitImage3D(), Ogre::D3D9Texture::copyToTexture(), and Ogre::TextureUnitState::getTextureDimensions().

time_t Ogre::Resource::getLastAccess void    const [inherited]
 

Gets the last time the resource was 'touched'.

Definition at line 108 of file OgreResource.h.

float Ogre::RenderTarget::getLastFPS   const [virtual, inherited]
 

Individual stats access - gets the number of frames per second (FPS) based on the last frame rendered.

Definition at line 191 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::FrameStats::lastFPS, and Ogre::RenderTarget::mStats.

void Ogre::RenderTarget::getMetrics unsigned int &    width,
unsigned int &    height,
unsigned int &    colourDepth
[virtual, inherited]
 

Retrieve information about the render target.

Definition at line 74 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mColourDepth, Ogre::RenderTarget::mHeight, and Ogre::RenderTarget::mWidth.

const String & Ogre::RenderTarget::getName void    const [virtual, inherited]
 

Retrieve target's name.

Definition at line 68 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mName.

Referenced by Ogre::RenderSystem::attachRenderTarget(), Ogre::Root::detachRenderTarget(), Ogre::D3D9RenderWindow::WndProc(), and Ogre::D3D7RenderWindow::WndProc().

const String& Ogre::Resource::getName void    const [inherited]
 

Gets resource name.

Reimplemented in Ogre::Material, and Ogre::Overlay.

Definition at line 115 of file OgreResource.h.

Referenced by Ogre::D3D9Texture::_loadCubeTex(), Ogre::Mesh::_notifySkeleton(), Ogre::ResourceManager::add(), Ogre::PopupMenuGuiElement::addListItem(), Ogre::ListGuiElement::addListItem(), Ogre::PopupMenuGuiElement::addMenuItem(), Ogre::MeshManager::createPrefabPlane(), Ogre::TTYGuiElement::getFontName(), Ogre::TextAreaGuiElement::getFontName(), Ogre::PopupMenuGuiElement::getListItemName(), Ogre::ListGuiElement::getListItemName(), Ogre::GpuProgramUsage::getProgramName(), Ogre::MeshSerializer::importMesh(), Ogre::GLTexture::load(), Ogre::TextureManager::loadImage(), Ogre::TextureManager::loadRawData(), Ogre::FontManager::logBadAttrib(), Ogre::MeshSerializerImpl_v1::readMaterial(), Ogre::MeshSerializerImpl::readMeshLodInfo(), Ogre::MeshSerializerImpl_v1::readMeshLodUsageGenerated(), Ogre::MeshSerializerImpl::readMeshLodUsageGenerated(), Ogre::MeshSerializerImpl::readMeshLodUsageManual(), Ogre::PopupMenuGuiElement::removeListItem(), Ogre::ListGuiElement::removeListItem(), Ogre::SceneManager::setSkyBox(), Ogre::SceneManager::setSkyDome(), and Ogre::ResourceManager::unload().

unsigned short Ogre::Texture::getNumMipMaps void    const [inherited]
 

Gets the number of mipmaps to be used for this texture.

Definition at line 76 of file OgreTexture.h.

Referenced by Ogre::GLRenderTexture::_copyToTexture().

unsigned short Ogre::RenderTarget::getNumViewports void    const [virtual, inherited]
 

Returns the number of viewports attached to this target.

Definition at line 340 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mViewportList.

virtual uchar Ogre::RenderTarget::getPriority   const [virtual, inherited]
 

Gets the priority of a render target.

Definition at line 256 of file OgreRenderTarget.h.

References Ogre::uchar.

Referenced by Ogre::RenderSystem::attachRenderTarget().

virtual size_t Ogre::Resource::getSize void    const [virtual, inherited]
 

Retrieves info about the size of the resource.

Definition at line 93 of file OgreResource.h.

Referenced by Ogre::ResourceManager::unload().

const RenderTarget::FrameStats & Ogre::RenderTarget::getStatistics void    const [virtual, inherited]
 

Definition at line 186 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mStats.

void Ogre::RenderTarget::getStatistics float &    lastFPS,
float &    avgFPS,
float &    bestFPS,
float &    worstFPS
const [virtual, inherited]
 

Retieves details of current rendering performance.

Remarks:
If the user application wishes to do it's own performance display, or use performance for some other means, this method allows it to retrieve the statistics.
Parameters:
lastFPS  Pointer to a float to receive the number of frames per second (FPS) based on the last frame rendered.
avgFPS  Pointer to a float to receive the FPS rating based on an average of all the frames rendered since rendering began (the call to Root::startRendering).
bestFPS  Pointer to a float to receive the best FPS rating that has been achieved since rendering began.
worstFPS  Pointer to a float to receive the worst FPS rating seen so far.

Definition at line 173 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::FrameStats::avgFPS, Ogre::RenderTarget::FrameStats::bestFPS, Ogre::RenderTarget::FrameStats::lastFPS, Ogre::RenderTarget::mStats, and Ogre::RenderTarget::FrameStats::worstFPS.

TextureType Ogre::Texture::getTextureType void    const [inherited]
 

Gets the type of texture.

Definition at line 72 of file OgreTexture.h.

References Ogre::TextureType.

Referenced by Ogre::D3D9Texture::_createTex(), Ogre::D3D9Texture::_loadNormTex(), Ogre::D3D9Texture::_setSrcAttributes(), Ogre::D3D9RenderSystem::_setTexture(), Ogre::D3DRenderSystem::_setTexture(), Ogre::GLTexture::blitToTexture(), Ogre::D3D9Texture::copyToTexture(), Ogre::GLTexture::createRenderTexture(), Ogre::D3D9Texture::D3D9Texture(), Ogre::D3D9Texture::load(), and Ogre::D3D9Texture::loadImage().

size_t Ogre::RenderTarget::getTriangleCount void    const [virtual, inherited]
 

Gets the number of triangles rendered in the last update() call.

Definition at line 208 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mStats, and Ogre::RenderTarget::FrameStats::triangleCount.

TextureUsage Ogre::Texture::getUsage void    const [inherited]
 

Returns the TextureUsage indentifier for this Texture.

Definition at line 112 of file OgreTexture.h.

References Ogre::TextureUsage.

Referenced by Ogre::D3D9Texture::copyToTexture(), and Ogre::D3DTexture::copyToTexture().

Viewport * Ogre::RenderTarget::getViewport unsigned short    index [virtual, inherited]
 

Retrieves a pointer to the viewport with the given index.

Definition at line 346 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mViewportList.

unsigned int Ogre::RenderTarget::getWidth void    const [virtual, inherited]
 

Definition at line 81 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mWidth.

Referenced by Ogre::Viewport::_updateDimensions().

unsigned int Ogre::Texture::getWidth void    const [inherited]
 

Returns the width of the texture.

Definition at line 100 of file OgreTexture.h.

Referenced by Ogre::D3D9Texture::_blitImagesToCubeTex(), Ogre::D3D9Texture::_loadCubeTex(), Ogre::D3DTexture::blitImage3D(), Ogre::D3D9Texture::copyToTexture(), and Ogre::TextureUnitState::getTextureDimensions().

float Ogre::RenderTarget::getWorstFPS   const [virtual, inherited]
 

Individual stats access - gets the worst frames per second (FPS) since call to Root::startRendering.

Definition at line 203 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mStats, and Ogre::RenderTarget::FrameStats::worstFPS.

float Ogre::RenderTarget::getWorstFrameTime   const [virtual, inherited]
 

Individual stats access - gets the worst frame time.

Definition at line 218 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mStats, and Ogre::RenderTarget::FrameStats::worstFrameTime.

virtual bool Ogre::Texture::hasAlpha void    const [virtual, inherited]
 

Returns true if the texture has an alpha layer.

Definition at line 164 of file OgreTexture.h.

Referenced by Ogre::Font::load().

bool Ogre::RenderTarget::isActive   const [virtual, inherited]
 

Used to retrieve or set the active state of the render target.

Reimplemented in Ogre::D3D7RenderWindow, Ogre::D3D9RenderWindow, Ogre::SDLWindow, and Ogre::Win32Window.

Definition at line 356 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mActive.

bool Ogre::Resource::isLoaded void    const [inherited]
 

Returns true if the Resource has been loaded, false otherwise.

Definition at line 127 of file OgreResource.h.

Referenced by Ogre::GpuProgramUsage::_load(), Ogre::Technique::isLoaded(), Ogre::D3D9Texture::load(), Ogre::D3D9Texture::unload(), and Ogre::D3D9Texture::~D3D9Texture().

virtual bool Ogre::RenderTargetTexture::isRenderTarget   const [virtual]
 

@copydoc Texture::isRenderTarget

Definition at line 14 of file OgreRenderTargetTexture.h.

virtual void Ogre::Resource::load   [pure virtual, inherited]
 

Loads the resource, if it is not already.

Implemented in Ogre::ArchiveEx, Ogre::DynLib, Ogre::Font, Ogre::GpuProgram, Ogre::HighLevelGpuProgram, Ogre::Material, Ogre::Mesh, Ogre::Overlay, Ogre::PatchMesh, Ogre::Skeleton, Ogre::StringResource, Ogre::Zip, Ogre::BspLevel, Ogre::Quake3Shader, Ogre::D3DTexture, Ogre::D3D9GpuProgram, Ogre::D3D9Texture, and Ogre::GLTexture.

Referenced by Ogre::ResourceManager::load().

virtual void Ogre::Texture::loadImage const Image   img [pure virtual, inherited]
 

Loads the data from an image.

Implemented in Ogre::D3DTexture, Ogre::D3D9Texture, and Ogre::GLTexture.

Referenced by Ogre::TextureManager::loadImage(), and Ogre::Texture::loadRawData().

void Ogre::Texture::loadRawData const DataChunk   pData,
ushort    uWidth,
ushort    uHeight,
PixelFormat    eFormat
[virtual, inherited]
 

Loads the data from the raw memory area.

Definition at line 31 of file OgreTexture.cpp.

References Ogre::Texture::loadImage(), Ogre::Image::loadRawData(), Ogre::PixelFormat, and Ogre::ushort.

Referenced by Ogre::TextureManager::loadRawData().

virtual void Ogre::RenderTarget::outputText int    x,
int    y,
const String   text
[pure virtual, inherited]
 

DEPRECATED Outputs text to the target at the specified co-ordinates.

Implemented in Ogre::D3D7RenderWindow, Ogre::D3D7RenderTexture, Ogre::D3D9RenderWindow, Ogre::D3D9RenderTexture, Ogre::GLRenderTexture, Ogre::SDLWindow, and Ogre::Win32Window.

void Ogre::RenderTarget::removeAllListeners void    [virtual, inherited]
 

Removes all listeners from this instance.

Definition at line 305 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mListeners.

void Ogre::RenderTarget::removeAllViewports void    [virtual, inherited]
 

Removes all viewports on this target.

Definition at line 156 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mViewportList.

void Ogre::RenderTarget::removeListener RenderTargetListener   listener [virtual, inherited]
 

Removes a RenderTargetListener previously registered using addListener.

Definition at line 291 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mListeners.

void Ogre::RenderTarget::removeViewport int    ZOrder [virtual, inherited]
 

Removes a viewport at a given ZOrder.

Definition at line 145 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mViewportList.

virtual bool Ogre::RenderTarget::requiresTextureFlipping   const [pure virtual, inherited]
 

Implemented in Ogre::D3D7RenderWindow, Ogre::D3D7RenderTexture, Ogre::D3D9RenderWindow, Ogre::D3D9RenderTexture, Ogre::GLRenderTexture, Ogre::SDLWindow, and Ogre::Win32Window.

Referenced by Ogre::GLRenderSystem::_setCullingMode(), Ogre::D3D9RenderSystem::_setCullingMode(), Ogre::D3DRenderSystem::_setCullingMode(), Ogre::GLRenderSystem::_setProjectionMatrix(), Ogre::D3D9RenderSystem::_setProjectionMatrix(), and Ogre::D3DRenderSystem::_setProjectionMatrix().

void Ogre::RenderTarget::resetStatistics void    [virtual, inherited]
 

Resets saved frame-rate statistices.

Definition at line 223 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::FrameStats::avgFPS, Ogre::RenderTarget::FrameStats::bestFPS, Ogre::RenderTarget::FrameStats::bestFrameTime, Ogre::Timer::getMilliseconds(), Ogre::RenderTarget::FrameStats::lastFPS, Ogre::RenderTarget::mFrameCount, Ogre::RenderTarget::mLastSecond, Ogre::RenderTarget::mLastTime, Ogre::RenderTarget::mStats, Ogre::RenderTarget::mTimer, Ogre::RenderTarget::FrameStats::triangleCount, Ogre::RenderTarget::FrameStats::worstFPS, and Ogre::RenderTarget::FrameStats::worstFrameTime.

Referenced by Ogre::RenderTarget::RenderTarget().

void Ogre::RenderTarget::setActive bool    state [virtual, inherited]
 

Used to retrieve the active state of the render target.

Reimplemented in Ogre::D3D9RenderWindow, and Ogre::Win32Window.

Definition at line 361 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mActive.

void Ogre::RenderTarget::setDebugText const String   text [virtual, inherited]
 

Adds debug text to this window.

Definition at line 276 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mDebugText.

void Ogre::Texture::setGamma float    g [inherited]
 

Sets the gamma adjustment factor applied to this texture.

Note:
Must be called before any 'load' method.

Definition at line 92 of file OgreTexture.h.

Referenced by Ogre::TextureManager::load(), Ogre::TextureManager::loadImage(), and Ogre::TextureManager::loadRawData().

void Ogre::Texture::setNumMipMaps unsigned short    num [inherited]
 

Sets the number of mipmaps to be used for this texture.

Note:
Must be set before calling any 'load' method.

Definition at line 82 of file OgreTexture.h.

Referenced by Ogre::TextureManager::load(), Ogre::TextureManager::loadImage(), and Ogre::TextureManager::loadRawData().

virtual void Ogre::RenderTarget::setPriority uchar    priority [virtual, inherited]
 

Sets the priority of this render target in relation to the others.

Remarks:
This can be used in order to schedule render target updates. Lower priorities will be rendered first. Note that the priority must be set at the time the render target is attached to the render system, changes afterwards will not affect the ordering.

Definition at line 254 of file OgreRenderTarget.h.

References Ogre::uchar.

void Ogre::RenderTarget::setStatsDisplay StatFlags    sf [virtual, inherited]
 

DEPRECATED Set what kind of statistics display (if any) should be displayed by the system about this target.

Remarks:
This method is now DEPRECATED. Use Root::showDebugOverlay instead. OGRE keeps details about the current rendering performance, and can display this on screen if required. This method allows you to specify what should be displayed. Alternatively, the application can retrieve the stats using RenderTarget::getStatistics and report them itself.
Parameters:
sf  Flags indicating which stats to display. Details are in StatFlags

Definition at line 168 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::mStatFlags.

virtual void Ogre::Resource::touch void    [virtual, inherited]
 

'Touches' the resource to indicate it has been used.

Reimplemented in Ogre::Material.

Definition at line 100 of file OgreResource.h.

Referenced by Ogre::ResourceManager::load().

virtual void Ogre::Resource::unload void    [virtual, inherited]
 

Unloads the resource, but retains data to recreate.

Reimplemented in Ogre::ArchiveEx, Ogre::DynLib, Ogre::Font, Ogre::HighLevelGpuProgram, Ogre::Material, Ogre::Mesh, Ogre::Overlay, Ogre::Skeleton, Ogre::Zip, Ogre::BspLevel, Ogre::Quake3Shader, Ogre::D3DTexture, Ogre::D3D9GpuVertexProgram, Ogre::D3D9GpuFragmentProgram, Ogre::D3D9Texture, Ogre::GLGpuNvparseProgram, Ogre::GLArbGpuProgram, and Ogre::GLTexture.

Definition at line 89 of file OgreResource.h.

Referenced by Ogre::GpuProgram::load(), Ogre::D3D9GpuProgram::load(), Ogre::ResourceManager::unload(), Ogre::HighLevelGpuProgram::unload(), and Ogre::D3D7RenderTexture::~D3D7RenderTexture().

void Ogre::RenderTarget::update void    [virtual, inherited]
 

Tells the target to update it's contents.

Remarks:
If OGRE is not running in an automatic rendering loop (started using Root::startRendering), the user of the library is responsible for asking each render target to refresh. This is the method used to do this. It automatically re-renders the contents of the target using whatever cameras have been pointed at it (using Camera::setRenderTarget).

This allows OGRE to be used in multi-windowed utilities and for contents to be refreshed only when required, rather than constantly as with the automatic rendering loop.

Reimplemented in Ogre::RenderWindow.

Definition at line 94 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::firePostUpdate(), Ogre::RenderTarget::firePreUpdate(), Ogre::RenderTarget::fireViewportPostUpdate(), Ogre::RenderTarget::fireViewportPreUpdate(), Ogre::RenderTarget::mStats, Ogre::RenderTarget::mViewportList, Ogre::RenderTarget::FrameStats::triangleCount, and Ogre::RenderTarget::updateStats().

void Ogre::RenderTarget::updateStats void    [protected, inherited]
 

Definition at line 238 of file OgreRenderTarget.cpp.

References Ogre::RenderTarget::FrameStats::avgFPS, Ogre::RenderTarget::FrameStats::bestFPS, Ogre::RenderTarget::FrameStats::bestFrameTime, Ogre::Timer::getMilliseconds(), Ogre::RenderTarget::FrameStats::lastFPS, Ogre::RenderTarget::mFrameCount, Ogre::RenderTarget::mLastSecond, Ogre::RenderTarget::mLastTime, Ogre::RenderTarget::mStats, Ogre::RenderTarget::mTimer, Ogre::RenderTarget::FrameStats::worstFPS, and Ogre::RenderTarget::FrameStats::worstFrameTime.

Referenced by Ogre::RenderTarget::update().

virtual void Ogre::RenderTarget::writeContentsToFile const String   filename [pure virtual, inherited]
 

Writes the current contents of the render target to the named file.

Implemented in Ogre::D3D7RenderWindow, Ogre::D3D7RenderTexture, Ogre::D3D9RenderWindow, Ogre::D3D9RenderTexture, Ogre::GLRenderTexture, Ogre::SDLWindow, and Ogre::Win32Window.

Referenced by Ogre::RenderTarget::writeContentsToTimestampedFile().

String Ogre::RenderTarget::writeContentsToTimestampedFile const String   filenamePrefix,
const String   filenameSuffix
[virtual, inherited]
 

Writes the current contents of the render target to the (PREFIX)(time-stamp)(SUFFIX) file.

Returns:
the name of the file used.

Definition at line 394 of file OgreRenderTarget.cpp.

References Ogre::Timer::getMilliseconds(), Ogre::RenderTarget::mTimer, and Ogre::RenderTarget::writeContentsToFile().


Member Data Documentation

bool Ogre::RenderTarget::mActive [protected, inherited]
 

Reimplemented in Ogre::D3D7RenderWindow, Ogre::D3D9RenderWindow, Ogre::SDLWindow, and Ogre::Win32Window.

Definition at line 299 of file OgreRenderTarget.h.

Referenced by Ogre::RenderTarget::isActive(), Ogre::RenderTarget::RenderTarget(), and Ogre::RenderTarget::setActive().

unsigned int Ogre::RenderTarget::mColourDepth [protected, inherited]
 

Definition at line 286 of file OgreRenderTarget.h.

Referenced by Ogre::Win32Window::create(), Ogre::D3D9RenderWindow::create(), Ogre::D3D7RenderWindow::create(), Ogre::D3D7RenderWindow::createDDSurfaces(), Ogre::D3D7RenderWindow::createDepthBuffer(), Ogre::RenderTarget::getColourDepth(), Ogre::RenderWindow::getMetrics(), and Ogre::RenderTarget::getMetrics().

String Ogre::RenderTarget::mDebugText [protected, inherited]
 

Definition at line 294 of file OgreRenderTarget.h.

Referenced by Ogre::RenderTarget::getDebugText(), and Ogre::RenderTarget::setDebugText().

unsigned long Ogre::Texture::mDepth [protected, inherited]
 

Definition at line 172 of file OgreTexture.h.

Referenced by Ogre::D3D9Texture::_setFinalAttributes(), Ogre::GLTexture::generateMipMaps(), Ogre::GLTexture::GLTexture(), and Ogre::GLTexture::loadImages().

unsigned short Ogre::Texture::mFinalBpp [protected, inherited]
 

Definition at line 183 of file OgreTexture.h.

Referenced by Ogre::D3D9Texture::_chooseD3DFormat(), Ogre::D3DTexture::_chooseD3DFormat(), Ogre::D3D9Texture::_setFinalAttributes(), Ogre::D3DTexture::blitImage(), Ogre::D3DTexture::blitImage3D(), Ogre::D3DTexture::D3DTexture(), Ogre::D3DTexture::load(), Ogre::D3DTexture::loadImage(), Ogre::D3DTexture::loadImage3D(), and Ogre::GLTexture::loadImages().

PixelFormat Ogre::Texture::mFormat [protected, inherited]
 

Definition at line 178 of file OgreTexture.h.

Referenced by Ogre::D3D9Texture::_setFinalAttributes(), Ogre::D3DTexture::D3DTexture(), Ogre::GLTexture::generateMipMaps(), Ogre::GLTexture::GLTexture(), Ogre::D3DTexture::loadImage(), Ogre::D3DTexture::loadImage3D(), and Ogre::GLTexture::loadImages().

size_t Ogre::RenderTarget::mFrameCount [protected, inherited]
 

Definition at line 297 of file OgreRenderTarget.h.

Referenced by Ogre::RenderTarget::resetStatistics(), and Ogre::RenderTarget::updateStats().

float Ogre::Texture::mGamma [protected, inherited]
 

Definition at line 175 of file OgreTexture.h.

Referenced by Ogre::D3DTexture::blitImage(), Ogre::D3DTexture::blitImage3D(), and Ogre::GLTexture::rescaleNPower2().

ResourceHandle Ogre::Resource::mHandle [protected, inherited]
 

Definition at line 57 of file OgreResource.h.

Referenced by Ogre::ResourceManager::add(), Ogre::Material::clone(), Ogre::Material::copyDetailsTo(), and Ogre::Material::operator=().

bool Ogre::Texture::mHasAlpha [protected, inherited]
 

Definition at line 184 of file OgreTexture.h.

Referenced by Ogre::D3D9Texture::_chooseD3DFormat(), Ogre::D3D9Texture::_setFinalAttributes(), Ogre::D3D9Texture::_setSrcAttributes(), Ogre::D3DTexture::D3DTexture(), Ogre::GLTexture::generateMipMaps(), Ogre::D3DTexture::loadImage(), Ogre::D3DTexture::loadImage3D(), Ogre::GLTexture::loadImages(), and Ogre::GLTexture::rescaleNPower2().

unsigned int Ogre::RenderTarget::mHeight [protected, inherited]
 

Definition at line 285 of file OgreRenderTarget.h.

Referenced by Ogre::GLRenderTexture::_copyToTexture(), Ogre::Win32Window::create(), Ogre::SDLWindow::create(), Ogre::D3D9RenderWindow::create(), Ogre::D3D7RenderWindow::create(), Ogre::D3D7RenderWindow::createDDSurfaces(), Ogre::D3D7RenderTexture::D3D7RenderTexture(), Ogre::D3D9RenderTexture::D3D9RenderTexture(), Ogre::RenderTarget::getHeight(), Ogre::RenderWindow::getMetrics(), Ogre::RenderTarget::getMetrics(), Ogre::RenderTexture::RenderTexture(), Ogre::Win32Window::resize(), Ogre::D3D9RenderWindow::resize(), Ogre::D3D7RenderWindow::resize(), Ogre::Win32Window::writeContentsToFile(), and Ogre::SDLWindow::writeContentsToFile().

unsigned long Ogre::Texture::mHeight [protected, inherited]
 

Definition at line 170 of file OgreTexture.h.

Referenced by Ogre::D3D9Texture::_initMembers(), Ogre::D3D9Texture::_setFinalAttributes(), Ogre::GLTexture::createRenderTexture(), Ogre::D3DTexture::createSurface2D(), Ogre::D3DTexture::createSurface3D(), Ogre::GLTexture::generateMipMaps(), Ogre::GLTexture::GLTexture(), Ogre::GLTexture::loadImages(), and Ogre::GLTexture::rescaleNPower2().

bool Ogre::RenderTarget::mIsDepthBuffered [protected, inherited]
 

Definition at line 287 of file OgreRenderTarget.h.

Referenced by Ogre::Win32Window::create(), Ogre::D3D9RenderWindow::create(), Ogre::D3D7RenderWindow::create(), and Ogre::D3D7RenderWindow::createDepthBuffer().

bool Ogre::Resource::mIsLoaded [protected, inherited]
 

Definition at line 58 of file OgreResource.h.

Referenced by Ogre::D3D9Texture::_initMembers(), Ogre::D3D9Texture::_loadCubeTex(), Ogre::D3D9Texture::_loadNormTex(), Ogre::D3D9Texture::_loadVolumeTex(), Ogre::Material::_notifyNeedsRecompile(), Ogre::Material::clone(), Ogre::D3DTexture::createSurface2D(), Ogre::D3DTexture::createSurface3D(), Ogre::D3D9Texture::D3D9Texture(), Ogre::D3DTexture::D3DTexture(), Ogre::DynLib::DynLib(), Ogre::Zip::load(), Ogre::Skeleton::load(), Ogre::PatchMesh::load(), Ogre::Mesh::load(), Ogre::Material::load(), Ogre::HighLevelGpuProgram::load(), Ogre::GpuProgram::load(), Ogre::GLTexture::load(), Ogre::Font::load(), Ogre::DynLib::load(), Ogre::D3D9Texture::load(), Ogre::D3D9GpuProgram::load(), Ogre::D3DTexture::load(), Ogre::BspLevel::load(), Ogre::D3D9Texture::loadImage(), Ogre::D3DTexture::loadImage(), Ogre::D3DTexture::loadImage3D(), Ogre::GLTexture::loadImages(), Ogre::Material::Material(), Ogre::Material::operator=(), Ogre::Skeleton::unload(), Ogre::Mesh::unload(), Ogre::Material::unload(), Ogre::HighLevelGpuProgram::unload(), Ogre::GLTexture::unload(), Ogre::Font::unload(), Ogre::DynLib::unload(), Ogre::D3D9Texture::unload(), Ogre::D3DTexture::unload(), and Ogre::BspLevel::~BspLevel().

time_t Ogre::Resource::mLastAccess [protected, inherited]
 

Definition at line 59 of file OgreResource.h.

Referenced by Ogre::Material::operator=().

unsigned long Ogre::RenderTarget::mLastSecond [protected, inherited]
 

Definition at line 295 of file OgreRenderTarget.h.

Referenced by Ogre::RenderTarget::resetStatistics(), and Ogre::RenderTarget::updateStats().

unsigned long Ogre::RenderTarget::mLastTime [protected, inherited]
 

Definition at line 296 of file OgreRenderTarget.h.

Referenced by Ogre::RenderTarget::resetStatistics(), and Ogre::RenderTarget::updateStats().

RenderTargetListenerList Ogre::RenderTarget::mListeners [protected, inherited]
 

Definition at line 308 of file OgreRenderTarget.h.

Referenced by Ogre::RenderTarget::addListener(), Ogre::RenderTarget::firePostUpdate(), Ogre::RenderTarget::firePreUpdate(), Ogre::RenderTarget::fireViewportPostUpdate(), Ogre::RenderTarget::fireViewportPreUpdate(), Ogre::RenderTarget::removeAllListeners(), and Ogre::RenderTarget::removeListener().

String Ogre::RenderTarget::mName [protected, inherited]
 

The name of this target.

Definition at line 280 of file OgreRenderTarget.h.

Referenced by Ogre::Win32Window::create(), Ogre::SDLWindow::create(), Ogre::D3D9RenderWindow::create(), Ogre::D3D7RenderWindow::create(), Ogre::D3D7RenderTexture::D3D7RenderTexture(), Ogre::D3D9RenderTexture::D3D9RenderTexture(), Ogre::RenderTarget::getName(), Ogre::RenderTexture::RenderTexture(), Ogre::RenderTarget::~RenderTarget(), and Ogre::RenderTexture::~RenderTexture().

String Ogre::Resource::mName [protected, inherited]
 

Definition at line 56 of file OgreResource.h.

Referenced by Ogre::Skeleton::_dumpContents(), Ogre::Mesh::_rationaliseBoneAssignments(), Ogre::BspLevel::BspLevel(), Ogre::Mesh::buildTangentVectors(), Ogre::Material::clone(), Ogre::Material::compile(), Ogre::Material::copyDetailsTo(), Ogre::Quake3Shader::createAsMaterial(), Ogre::D3D9HLSLProgram::createLowLevelImpl(), Ogre::CgProgram::createLowLevelImpl(), Ogre::Font::createTextureFromFont(), Ogre::D3D9Texture::D3D9Texture(), Ogre::D3DTexture::D3DTexture(), Ogre::DynLib::DynLib(), Ogre::Font::Font(), Ogre::Mesh::generateLodLevels(), Ogre::Material::getBestTechnique(), Ogre::Overlay::getName(), Ogre::Material::getName(), Ogre::GLTexture::GLTexture(), Ogre::GpuProgram::GpuProgram(), Ogre::Zip::load(), Ogre::Skeleton::load(), Ogre::Mesh::load(), Ogre::GLTexture::load(), Ogre::Font::load(), Ogre::DynLib::load(), Ogre::D3DTexture::load(), Ogre::BspLevel::load(), Ogre::D3D9GpuFragmentProgram::loadFromMicrocode(), Ogre::D3D9GpuVertexProgram::loadFromMicrocode(), Ogre::GLArbGpuProgram::loadFromSource(), Ogre::D3D9HLSLProgram::loadFromSource(), Ogre::D3D9GpuProgram::loadFromSource(), Ogre::CgProgram::loadFromSource(), Ogre::GLTexture::loadImages(), Ogre::Material::Material(), Ogre::Mesh::Mesh(), Ogre::Material::operator=(), Ogre::Overlay::Overlay(), Ogre::Quake3Shader::Quake3Shader(), Ogre::CgProgram::selectProfile(), Ogre::Mesh::setSkeletonName(), Ogre::Skeleton::Skeleton(), Ogre::StringResource::StringResource(), Ogre::Zip::unload(), Ogre::DynLib::unload(), Ogre::CgProgram::unloadImpl(), and Ogre::Zip::Zip().

unsigned short Ogre::Texture::mNumMipMaps [protected, inherited]
 

Definition at line 174 of file OgreTexture.h.

Referenced by Ogre::D3D9Texture::_createCubeTex(), Ogre::D3D9Texture::_createNormTex(), Ogre::D3D9Texture::_setSrcAttributes(), Ogre::GLTexture::createRenderTexture(), Ogre::D3DTexture::createSurface2D(), Ogre::D3DTexture::createSurface3D(), Ogre::D3D9Texture::D3D9Texture(), Ogre::D3DTexture::D3DTexture(), Ogre::GLTexture::generateMipMaps(), Ogre::GLTexture::GLTexture(), Ogre::D3DTexture::loadImage(), Ogre::D3DTexture::loadImage3D(), and Ogre::GLTexture::loadImages().

uchar Ogre::RenderTarget::mPriority [protected, inherited]
 

The priority of the render target.

Definition at line 282 of file OgreRenderTarget.h.

Referenced by Ogre::RenderTarget::RenderTarget(), and Ogre::RenderTexture::RenderTexture().

size_t Ogre::Resource::mSize [protected, inherited]
 

Definition at line 60 of file OgreResource.h.

Referenced by Ogre::D3D9Texture::_setFinalAttributes(), Ogre::D3DTexture::loadImage(), Ogre::D3DTexture::loadImage3D(), Ogre::GLTexture::loadImages(), and Ogre::Material::operator=().

unsigned short Ogre::Texture::mSrcBpp [protected, inherited]
 

Definition at line 181 of file OgreTexture.h.

Referenced by Ogre::D3D9Texture::_copyMemoryToSurface(), Ogre::D3D9Texture::_setSrcAttributes(), Ogre::D3DTexture::D3DTexture(), Ogre::GLTexture::GLTexture(), Ogre::D3DTexture::load(), Ogre::D3DTexture::loadImage(), Ogre::D3DTexture::loadImage3D(), Ogre::GLTexture::loadImages(), and Ogre::GLTexture::rescaleNPower2().

unsigned long Ogre::Texture::mSrcHeight [protected, inherited]
 

Definition at line 182 of file OgreTexture.h.

Referenced by Ogre::D3D9Texture::_copyMemoryToSurface(), Ogre::D3D9Texture::_createCubeTex(), Ogre::D3D9Texture::_createDepthStencil(), Ogre::D3D9Texture::_createNormTex(), Ogre::D3D9Texture::_createTex(), Ogre::D3D9Texture::_initMembers(), Ogre::D3D9Texture::_setFinalAttributes(), Ogre::D3D9Texture::_setSrcAttributes(), Ogre::D3DTexture::createSurface2D(), Ogre::D3DTexture::createSurface3D(), Ogre::D3DTexture::D3DTexture(), Ogre::GLTexture::generateMipMaps(), Ogre::GLTexture::GLTexture(), Ogre::D3DTexture::load(), Ogre::D3DTexture::loadImage(), Ogre::D3DTexture::loadImage3D(), Ogre::GLTexture::loadImages(), and Ogre::GLTexture::rescaleNPower2().

unsigned long Ogre::Texture::mSrcWidth [protected, inherited]
 

Definition at line 182 of file OgreTexture.h.

Referenced by Ogre::D3D9Texture::_copyMemoryToSurface(), Ogre::D3D9Texture::_createCubeTex(), Ogre::D3D9Texture::_createDepthStencil(), Ogre::D3D9Texture::_createNormTex(), Ogre::D3D9Texture::_createTex(), Ogre::D3D9Texture::_initMembers(), Ogre::D3D9Texture::_setFinalAttributes(), Ogre::D3D9Texture::_setSrcAttributes(), Ogre::D3DTexture::createSurface2D(), Ogre::D3DTexture::createSurface3D(), Ogre::D3DTexture::D3DTexture(), Ogre::GLTexture::generateMipMaps(), Ogre::GLTexture::GLTexture(), Ogre::D3DTexture::load(), Ogre::D3DTexture::loadImage(), Ogre::D3DTexture::loadImage3D(), Ogre::GLTexture::loadImages(), and Ogre::GLTexture::rescaleNPower2().

StatFlags Ogre::RenderTarget::mStatFlags [protected, inherited]
 

Definition at line 290 of file OgreRenderTarget.h.

Referenced by Ogre::RenderTarget::RenderTarget(), and Ogre::RenderTarget::setStatsDisplay().

FrameStats Ogre::RenderTarget::mStats [protected, inherited]
 

Definition at line 291 of file OgreRenderTarget.h.

Referenced by Ogre::RenderTarget::getAverageFPS(), Ogre::RenderTarget::getBestFPS(), Ogre::RenderTarget::getBestFrameTime(), Ogre::RenderTarget::getLastFPS(), Ogre::RenderTarget::getStatistics(), Ogre::RenderTarget::getTriangleCount(), Ogre::RenderTarget::getWorstFPS(), Ogre::RenderTarget::getWorstFrameTime(), Ogre::RenderTarget::resetStatistics(), Ogre::RenderTarget::update(), Ogre::RenderTarget::updateStats(), and Ogre::RenderTarget::~RenderTarget().

TextureType Ogre::Texture::mTextureType [protected, inherited]
 

Definition at line 177 of file OgreTexture.h.

Referenced by Ogre::D3D9Texture::_setFinalAttributes(), Ogre::D3DTexture::createSurface(), Ogre::D3D9Texture::D3D9Texture(), Ogre::D3DTexture::D3DTexture(), Ogre::GLTexture::generateMipMaps(), Ogre::GLTexture::GLTexture(), Ogre::GLTexture::load(), and Ogre::D3DTexture::load().

Timer* Ogre::RenderTarget::mTimer [protected, inherited]
 

Definition at line 293 of file OgreRenderTarget.h.

Referenced by Ogre::RenderTarget::RenderTarget(), Ogre::RenderTarget::resetStatistics(), Ogre::RenderTarget::updateStats(), and Ogre::RenderTarget::writeContentsToTimestampedFile().

TextureUsage Ogre::Texture::mUsage [protected, inherited]
 

Definition at line 179 of file OgreTexture.h.

Referenced by Ogre::D3D9Texture::_createCubeTex(), Ogre::D3D9Texture::_createNormTex(), Ogre::D3D9Texture::_setSrcAttributes(), Ogre::D3DTexture::copyToTexture(), Ogre::D3DTexture::createSurface2D(), Ogre::D3DTexture::createSurface3D(), Ogre::D3D9Texture::D3D9Texture(), Ogre::D3DTexture::D3DTexture(), Ogre::GLTexture::GLTexture(), Ogre::GLTexture::load(), Ogre::D3D9Texture::load(), and Ogre::D3DTexture::load().

ViewportList Ogre::RenderTarget::mViewportList [protected, inherited]
 

List of viewports, map on Z-order.

Definition at line 305 of file OgreRenderTarget.h.

Referenced by Ogre::RenderTarget::addViewport(), Ogre::RenderTarget::getNumViewports(), Ogre::RenderTarget::getViewport(), Ogre::RenderTarget::removeAllViewports(), Ogre::RenderTarget::removeViewport(), Ogre::Win32Window::resize(), Ogre::SDLWindow::resize(), Ogre::D3D9RenderWindow::resize(), Ogre::D3D7RenderWindow::resize(), Ogre::RenderTarget::update(), Ogre::D3D7RenderWindow::windowMovedOrResized(), and Ogre::RenderTarget::~RenderTarget().

unsigned int Ogre::RenderTarget::mWidth [protected, inherited]
 

Definition at line 284 of file OgreRenderTarget.h.

Referenced by Ogre::GLRenderTexture::_copyToTexture(), Ogre::Win32Window::create(), Ogre::SDLWindow::create(), Ogre::D3D9RenderWindow::create(), Ogre::D3D7RenderWindow::create(), Ogre::D3D7RenderWindow::createDDSurfaces(), Ogre::D3D7RenderTexture::D3D7RenderTexture(), Ogre::D3D9RenderTexture::D3D9RenderTexture(), Ogre::RenderWindow::getMetrics(), Ogre::RenderTarget::getMetrics(), Ogre::RenderTarget::getWidth(), Ogre::RenderTexture::RenderTexture(), Ogre::Win32Window::resize(), Ogre::D3D9RenderWindow::resize(), Ogre::D3D7RenderWindow::resize(), Ogre::Win32Window::writeContentsToFile(), and Ogre::SDLWindow::writeContentsToFile().

unsigned long Ogre::Texture::mWidth [protected, inherited]
 

Definition at line 171 of file OgreTexture.h.

Referenced by Ogre::D3D9Texture::_initMembers(), Ogre::D3D9Texture::_setFinalAttributes(), Ogre::GLTexture::createRenderTexture(), Ogre::D3DTexture::createSurface2D(), Ogre::D3DTexture::createSurface3D(), Ogre::GLTexture::generateMipMaps(), Ogre::GLTexture::GLTexture(), Ogre::GLTexture::loadImages(), and Ogre::GLTexture::rescaleNPower2().


The documentation for this class was generated from the following file:

Copyright © 2002-2003 by The OGRE Team
Last modified Wed Jan 21 00:19:33 2004