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

Ogre::D3D9RenderWindow Class Reference

#include <OgreD3D9RenderWindow.h>

Inheritance diagram for Ogre::D3D9RenderWindow:

Ogre::RenderWindow Ogre::RenderTarget 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 Member Functions

 D3D9RenderWindow (HINSTANCE instance, D3D9Driver *driver, LPDIRECT3DDEVICE9 deviceIfSwapChain=0)
 Constructor.

 ~D3D9RenderWindow ()
void create (const String &name, unsigned int width, unsigned int height, bool fullScreen, const NameValuePairList *miscParams)
 Creates & displays the new window.

void destroy (void)
 Destroys the window.

bool isVisible () const
 Indicates whether the window is visible (not minimized or obscured).

bool isClosed () const
 Indicates whether the window has been closed by the user.

void reposition (int left, int top)
 Reposition the window.

void resize (unsigned int width, unsigned int height)
 Alter the size of the window.

void swapBuffers (bool waitForVSync=true)
 Swaps the frame buffers to display the next frame.

HWND getWindowHandle () const
D3D9DrivergetDirectD3DDriver ()
LPDIRECT3DDEVICE9 getD3DDevice ()
void getCustomAttribute (const String &name, void *pData)
 Gets a custom (maybe platform-specific) attribute.

void writeContentsToFile (const String &filename)
 Overridden - see RenderTarget.

bool requiresTextureFlipping () const
void windowMovedOrResized ()
 Notify that the window has been resized externally.

D3DPRESENT_PARAMETERS * getPresentationParameters (void)
 Get the presentation parameters used with this window.

void update ()
 
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.


void createD3DResources ()
 Create (or recreate) the D3D device or SwapChain for this window.

void destroyD3DResources ()
 Destroy the D3D device or SwapChain for this window.

virtual bool isActive (void) const
 Overridden from RenderTarget, flags invisible windows as inactive.

virtual bool isPrimary (void) const
 Indicates wether the window is the primary window.

virtual bool isFullScreen (void) const
 Returns true if window is running in fullscreen mode.

virtual void getMetrics (unsigned int &width, unsigned int &height, unsigned int &colourDepth, int &left, int &top)
 Overloaded version of getMetrics from RenderTarget, including extra details specific to windowing systems.

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

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

virtual unsigned int getWidth (void) const
virtual unsigned int getHeight (void) const
virtual unsigned int getColourDepth (void) const
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 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 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 void setActive (bool state)
 Used to set the active state of the render target.

virtual void setAutoUpdated (bool autoupdate)
 Sets whether this target should be automatically updated if Ogre's rendering loop or Root::_updateAllRenderTargets is being used.

virtual bool isAutoUpdated (void) const
 Gets whether this target is automatically updated if Ogre's rendering loop or Root::_updateAllRenderTargets is being used.

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 size_t getTriangleCount (void) const
 Gets the number of triangles rendered in the last update() call.

virtual void _notifyCameraRemoved (const Camera *cam)
 Utility method to notify a render target that a camera has been removed, incase it was referring to it as a viewer.


Protected Types

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

Protected Member Functions

bool _checkMultiSampleQuality (D3DMULTISAMPLE_TYPE type, DWORD *outQuality, D3DFORMAT format, UINT adapterNum, D3DDEVTYPE deviceType, BOOL fullScreen)
void _setPrimary ()
 Indicates that this is the primary window.

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


Static Protected Member Functions

LRESULT CALLBACK WndProc (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)

Protected Attributes

HINSTANCE mInstance
D3D9DrivermDriver
HWND mHWnd
bool mIsExternal
bool mSizing
bool mClosed
bool mIsSwapChain
LPDIRECT3DSWAPCHAIN9 mpSwapChain
D3DPRESENT_PARAMETERS md3dpp
LPDIRECT3DSURFACE9 mpRenderSurface
LPDIRECT3DSURFACE9 mpRenderZBuffer
D3DMULTISAMPLE_TYPE mFSAAType
DWORD mFSAAQuality
bool mVSync
bool mIsFullScreen
bool mIsPrimary
int mLeft
int mTop
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
FrameStats mStats
TimermTimer
String mDebugText
unsigned long mLastSecond
unsigned long mLastTime
size_t mFrameCount
bool mActive
bool mAutoUpdate
ViewportList mViewportList
 List of viewports, map on Z-order.

RenderTargetListenerList mListeners

Friends

class Root

Member Typedef Documentation

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

Definition at line 319 of file OgreRenderTarget.h.

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

Definition at line 315 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.


Constructor & Destructor Documentation

Ogre::D3D9RenderWindow::D3D9RenderWindow HINSTANCE  instance,
D3D9Driver driver,
LPDIRECT3DDEVICE9  deviceIfSwapChain = 0
 

Constructor.

Parameters:
instance The application instance
driver The root driver
deviceIfSwapChain The existing D3D device to create an additional swap chain from, if this is not the first window.

Ogre::D3D9RenderWindow::~D3D9RenderWindow  ) 
 


Member Function Documentation

bool Ogre::D3D9RenderWindow::_checkMultiSampleQuality D3DMULTISAMPLE_TYPE  type,
DWORD *  outQuality,
D3DFORMAT  format,
UINT  adapterNum,
D3DDEVTYPE  deviceType,
BOOL  fullScreen
[protected]
 

virtual void Ogre::RenderTarget::_notifyCameraRemoved const Camera cam  )  [virtual, inherited]
 

Utility method to notify a render target that a camera has been removed, incase it was referring to it as a viewer.

void Ogre::RenderWindow::_setPrimary  )  [protected, inherited]
 

Indicates that this is the primary window.

Only to be called by Ogre::Root

Definition at line 176 of file OgreRenderWindow.h.

virtual 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.

virtual 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.

void Ogre::D3D9RenderWindow::create const String name,
unsigned int  width,
unsigned int  height,
bool  fullScreen,
const NameValuePairList miscParams
[virtual]
 

Creates & displays the new window.

Parameters:
width The width of the window in pixels.
height The height of the window in pixels.
colourDepth The colour depth in bits. Ignored if fullScreen is false since the desktop depth is used.
fullScreen If true, the window fills the screen, with no title bar or border.
left The x-position of the window. Ignored if fullScreen = true.
top The y-position of the window. Ignored if fullScreen = true.
depthBuffer Specify true to include a depth-buffer.
miscParam A variable number of pointers to platform-specific arguments. The actual requirements must be defined by the implementing subclasses.

Implements Ogre::RenderWindow.

void Ogre::D3D9RenderWindow::createD3DResources  ) 
 

Create (or recreate) the D3D device or SwapChain for this window.

void Ogre::D3D9RenderWindow::destroy void   )  [virtual]
 

Destroys the window.

Implements Ogre::RenderWindow.

void Ogre::D3D9RenderWindow::destroyD3DResources  ) 
 

Destroy the D3D device or SwapChain for this window.

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

internal method for firing events

Reimplemented in Ogre::RenderTexture.

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

internal method for firing events

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

internal method for firing events

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

internal method for firing events

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

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

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

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

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

Individual stats access - gets the best frame time.

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

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

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 from Ogre::RenderTarget.

LPDIRECT3DDEVICE9 Ogre::D3D9RenderWindow::getD3DDevice void   ) 
 

Definition at line 57 of file OgreD3D9RenderWindow.h.

References Ogre::D3D9Driver::getD3DDevice().

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

Returns the debug text.

D3D9Driver* Ogre::D3D9RenderWindow::getDirectD3DDriver  ) 
 

Definition at line 55 of file OgreD3D9RenderWindow.h.

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

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

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

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

Retrieve information about the render target.

virtual void Ogre::RenderWindow::getMetrics unsigned int &  width,
unsigned int &  height,
unsigned int &  colourDepth,
int &  left,
int &  top
[virtual, inherited]
 

Overloaded version of getMetrics from RenderTarget, including extra details specific to windowing systems.

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

Retrieve target's name.

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

Returns the number of viewports attached to this target.

D3DPRESENT_PARAMETERS* Ogre::D3D9RenderWindow::getPresentationParameters void   ) 
 

Get the presentation parameters used with this window.

Definition at line 69 of file OgreD3D9RenderWindow.h.

References md3dpp.

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

Gets the priority of a render target.

Definition at line 239 of file OgreRenderTarget.h.

References Ogre::uchar.

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

virtual 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.

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

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

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

Retrieves a pointer to the viewport with the given index.

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

HWND Ogre::D3D9RenderWindow::getWindowHandle void   )  const
 

Definition at line 53 of file OgreD3D9RenderWindow.h.

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

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

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

Individual stats access - gets the worst frame time.

virtual bool Ogre::RenderWindow::isActive void   )  const [virtual, inherited]
 

Overridden from RenderTarget, flags invisible windows as inactive.

Reimplemented from Ogre::RenderTarget.

Reimplemented in Ogre::D3D7RenderWindow, Ogre::GLXWindow, Ogre::GTKWindow, and Ogre::SDLWindow.

Definition at line 113 of file OgreRenderWindow.h.

virtual bool Ogre::RenderTarget::isAutoUpdated void   )  const [virtual, inherited]
 

Gets whether this target is automatically updated if Ogre's rendering loop or Root::_updateAllRenderTargets is being used.

bool Ogre::D3D9RenderWindow::isClosed  )  const [virtual]
 

Indicates whether the window has been closed by the user.

Implements Ogre::RenderWindow.

Definition at line 49 of file OgreD3D9RenderWindow.h.

virtual bool Ogre::RenderWindow::isFullScreen void   )  const [virtual, inherited]
 

Returns true if window is running in fullscreen mode.

virtual bool Ogre::RenderWindow::isPrimary void   )  const [virtual, inherited]
 

Indicates wether the window is the primary window.

The primary window is special in that it is destroyed when ogre is shut down, and cannot be destroyed directly. This is the case because it holds the context for vertex, index buffers and textures.

Reimplemented from Ogre::RenderTarget.

bool Ogre::D3D9RenderWindow::isVisible void   )  const [virtual]
 

Indicates whether the window is visible (not minimized or obscured).

Reimplemented from Ogre::RenderWindow.

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

Removes all listeners from this instance.

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

Removes all viewports on this target.

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

Removes a RenderTargetListener previously registered using addListener.

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

Removes a viewport at a given ZOrder.

void Ogre::D3D9RenderWindow::reposition int  left,
int  top
[virtual]
 

Reposition the window.

Implements Ogre::RenderWindow.

bool Ogre::D3D9RenderWindow::requiresTextureFlipping  )  const [virtual]
 

Implements Ogre::RenderTarget.

Definition at line 63 of file OgreD3D9RenderWindow.h.

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

Resets saved frame-rate statistices.

void Ogre::D3D9RenderWindow::resize unsigned int  width,
unsigned int  height
[virtual]
 

Alter the size of the window.

Implements Ogre::RenderWindow.

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

Used to set the active state of the render target.

virtual void Ogre::RenderTarget::setAutoUpdated bool  autoupdate  )  [virtual, inherited]
 

Sets whether this target should be automatically updated if Ogre's rendering loop or Root::_updateAllRenderTargets is being used.

Remarks:
By default, if you use Ogre's own rendering loop (Root::startRendering) or call Root::_updateAllRenderTargets, all render targets are updated automatically. This method allows you to control that behaviour, if for example you have a render target which you only want to update periodically.
Parameters:
autoupdate If true, the render target is updated during the automatic render loop or when Root::_updateAllRenderTargets is called. If false, the target is only updated when its update() method is called explicitly.

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

Adds debug text to this window.

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 237 of file OgreRenderTarget.h.

References Ogre::uchar.

void Ogre::D3D9RenderWindow::swapBuffers bool  waitForVSync = true  )  [virtual]
 

Swaps the frame buffers to display the next frame.

Remarks:
All render windows are double-buffered so that no 'in-progress' versions of the scene are displayed during rendering. Once rendering has completed (to an off-screen version of the window) the buffers are swapped to display the new frame.
Parameters:
waitForVSync If true, the system waits for the next vertical blank period (when the CRT beam turns off as it travels from bottom-right to top-left at the end of the pass) before flipping. If false, flipping occurs no matter what the beam position. Waiting for a vertical blank can be slower (and limits the framerate to the monitor refresh rate) but results in a steadier image with no 'tearing' (a flicker resulting from flipping buffers when the beam is in the progress of drawing the last frame).

Implements Ogre::RenderWindow.

void Ogre::D3D9RenderWindow::update  )  [virtual]
 

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 from Ogre::RenderWindow.

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

void Ogre::D3D9RenderWindow::windowMovedOrResized void   )  [virtual]
 

Notify that the window has been resized externally.

Remarks:
You don't need to call this unless you created the window externally.

Reimplemented from Ogre::RenderWindow.

LRESULT CALLBACK Ogre::D3D9RenderWindow::WndProc HWND  hWnd,
UINT  uMsg,
WPARAM  wParam,
LPARAM  lParam
[static, protected]
 

void Ogre::D3D9RenderWindow::writeContentsToFile const String filename  )  [virtual]
 

Overridden - see RenderTarget.

Implements Ogre::RenderTarget.

virtual 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.


Friends And Related Function Documentation

friend class Root [friend, inherited]
 

Definition at line 178 of file OgreRenderWindow.h.


Member Data Documentation

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

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

Definition at line 310 of file OgreRenderTarget.h.

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

Definition at line 311 of file OgreRenderTarget.h.

bool Ogre::D3D9RenderWindow::mClosed [protected]
 

Definition at line 89 of file OgreD3D9RenderWindow.h.

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

Definition at line 298 of file OgreRenderTarget.h.

D3DPRESENT_PARAMETERS Ogre::D3D9RenderWindow::md3dpp [protected]
 

Definition at line 104 of file OgreD3D9RenderWindow.h.

Referenced by getPresentationParameters().

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

Definition at line 305 of file OgreRenderTarget.h.

D3D9Driver* Ogre::D3D9RenderWindow::mDriver [protected]
 

Definition at line 85 of file OgreD3D9RenderWindow.h.

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

Definition at line 308 of file OgreRenderTarget.h.

DWORD Ogre::D3D9RenderWindow::mFSAAQuality [protected]
 

Definition at line 108 of file OgreD3D9RenderWindow.h.

D3DMULTISAMPLE_TYPE Ogre::D3D9RenderWindow::mFSAAType [protected]
 

Definition at line 107 of file OgreD3D9RenderWindow.h.

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

Definition at line 297 of file OgreRenderTarget.h.

HWND Ogre::D3D9RenderWindow::mHWnd [protected]
 

Definition at line 86 of file OgreD3D9RenderWindow.h.

HINSTANCE Ogre::D3D9RenderWindow::mInstance [protected]
 

Definition at line 84 of file OgreD3D9RenderWindow.h.

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

Definition at line 299 of file OgreRenderTarget.h.

bool Ogre::D3D9RenderWindow::mIsExternal [protected]
 

Definition at line 87 of file OgreD3D9RenderWindow.h.

bool Ogre::RenderWindow::mIsFullScreen [protected, inherited]
 

Definition at line 168 of file OgreRenderWindow.h.

bool Ogre::RenderWindow::mIsPrimary [protected, inherited]
 

Definition at line 169 of file OgreRenderWindow.h.

bool Ogre::D3D9RenderWindow::mIsSwapChain [protected]
 

Definition at line 90 of file OgreD3D9RenderWindow.h.

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

Definition at line 306 of file OgreRenderTarget.h.

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

Definition at line 307 of file OgreRenderTarget.h.

int Ogre::RenderWindow::mLeft [protected, inherited]
 

Definition at line 170 of file OgreRenderWindow.h.

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

Definition at line 320 of file OgreRenderTarget.h.

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

The name of this target.

Definition at line 292 of file OgreRenderTarget.h.

LPDIRECT3DSURFACE9 Ogre::D3D9RenderWindow::mpRenderSurface [protected]
 

Definition at line 105 of file OgreD3D9RenderWindow.h.

LPDIRECT3DSURFACE9 Ogre::D3D9RenderWindow::mpRenderZBuffer [protected]
 

Definition at line 106 of file OgreD3D9RenderWindow.h.

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

The priority of the render target.

Definition at line 294 of file OgreRenderTarget.h.

LPDIRECT3DSWAPCHAIN9 Ogre::D3D9RenderWindow::mpSwapChain [protected]
 

Definition at line 103 of file OgreD3D9RenderWindow.h.

bool Ogre::D3D9RenderWindow::mSizing [protected]
 

Definition at line 88 of file OgreD3D9RenderWindow.h.

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

Definition at line 302 of file OgreRenderTarget.h.

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

Definition at line 304 of file OgreRenderTarget.h.

int Ogre::RenderWindow::mTop [protected, inherited]
 

Definition at line 171 of file OgreRenderWindow.h.

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

List of viewports, map on Z-order.

Definition at line 317 of file OgreRenderTarget.h.

bool Ogre::D3D9RenderWindow::mVSync [protected]
 

Definition at line 109 of file OgreD3D9RenderWindow.h.

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

Definition at line 296 of file OgreRenderTarget.h.


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

Copyright © 2000-2005 by The OGRE Team
Creative Commons License
This work is licensed under a Creative Commons Attribution-ShareAlike 2.5 License.
Last modified Sun Feb 12 13:09:08 2006