OGRE  1.11.6
Object-Oriented Graphics Rendering Engine
Ogre::GLES2HardwareOcclusionQuery Class Reference

#include <OgreGLES2HardwareOcclusionQuery.h>

+ Inheritance diagram for Ogre::GLES2HardwareOcclusionQuery:

Public Member Functions

 GLES2HardwareOcclusionQuery ()
 Default object constructor. More...
 
 ~GLES2HardwareOcclusionQuery ()
 Object destructor. More...
 
void beginOcclusionQuery ()
 Starts the hardware occlusion query. More...
 
void endOcclusionQuery ()
 Ends the hardware occlusion test. More...
 
unsigned int getLastQuerysPixelcount () const
 Let's you get the last pixel count with out doing the hardware occlusion test. More...
 
bool isStillOutstanding (void)
 Lets you know when query is done, or still be processed by the Hardware. More...
 
bool pullOcclusionQuery (unsigned int *NumOfFragments)
 Pulls the hardware occlusion query. More...
 

Constructor & Destructor Documentation

◆ GLES2HardwareOcclusionQuery()

Ogre::GLES2HardwareOcclusionQuery::GLES2HardwareOcclusionQuery ( )

Default object constructor.

◆ ~GLES2HardwareOcclusionQuery()

Ogre::GLES2HardwareOcclusionQuery::~GLES2HardwareOcclusionQuery ( )

Object destructor.

Member Function Documentation

◆ beginOcclusionQuery()

void Ogre::GLES2HardwareOcclusionQuery::beginOcclusionQuery ( )
virtual

Starts the hardware occlusion query.

Remarks
Simple usage: Create one or more OcclusionQuery object one per outstanding query or one per tested object OcclusionQuery* mOcclusionQuery; createOcclusionQuery( &mOcclusionQuery ); In the rendering loop: Draw all occluders mOcclusionQuery->startOcclusionQuery(); Draw the polygons to be tested mOcclusionQuery->endOcclusionQuery();

Results must be pulled using: UINT mNumberOfPixelsVisable; pullOcclusionQuery( &mNumberOfPixelsVisable );

Implements Ogre::HardwareOcclusionQuery.

◆ endOcclusionQuery()

void Ogre::GLES2HardwareOcclusionQuery::endOcclusionQuery ( )
virtual

Ends the hardware occlusion test.

Implements Ogre::HardwareOcclusionQuery.

◆ pullOcclusionQuery()

bool Ogre::GLES2HardwareOcclusionQuery::pullOcclusionQuery ( unsigned int *  NumOfFragments)
virtual

Pulls the hardware occlusion query.

Note
Waits until the query result is available; use isStillOutstanding if just want to test if the result is available.
Return values
NumOfFragmentswill get the resulting number of fragments.
Returns
True if success or false if not.

Implements Ogre::HardwareOcclusionQuery.

◆ isStillOutstanding()

bool Ogre::GLES2HardwareOcclusionQuery::isStillOutstanding ( void  )
virtual

Lets you know when query is done, or still be processed by the Hardware.

Returns
true if query isn't finished.

Implements Ogre::HardwareOcclusionQuery.

◆ getLastQuerysPixelcount()

unsigned int Ogre::HardwareOcclusionQuery::getLastQuerysPixelcount ( ) const
inlineinherited

Let's you get the last pixel count with out doing the hardware occlusion test.

Returns
The last fragment count from the last test. Remarks This function won't give you new values, just the old value.

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