OGRE
13.6
Object-Oriented Graphics Rendering Engine
|
#include <OgreGLES2HardwareOcclusionQuery.h>
Public Member Functions | |
GLES2HardwareOcclusionQuery () | |
Default object constructor. More... | |
~GLES2HardwareOcclusionQuery () | |
Object destructor. More... | |
void | beginOcclusionQuery () override |
Starts the hardware occlusion query. More... | |
void | endOcclusionQuery () override |
Ends the hardware occlusion test. More... | |
bool | isStillOutstanding (void) override |
Lets you know when query is done, or still be processed by the Hardware. More... | |
bool | pullOcclusionQuery (unsigned int *NumOfFragments) override |
Pulls the hardware occlusion query. More... | |
Public Member Functions inherited from Ogre::HardwareOcclusionQuery | |
HardwareOcclusionQuery () | |
Object public member functions. More... | |
virtual | ~HardwareOcclusionQuery () |
Object destructor. More... | |
unsigned int | getLastQuerysPixelcount () const |
Let's you get the last pixel count with out doing the hardware occlusion test. More... | |
Ogre::GLES2HardwareOcclusionQuery::GLES2HardwareOcclusionQuery | ( | ) |
Default object constructor.
Ogre::GLES2HardwareOcclusionQuery::~GLES2HardwareOcclusionQuery | ( | ) |
Object destructor.
|
overridevirtual |
Starts the hardware occlusion query.
Results must be pulled using: UINT mNumberOfPixelsVisable; pullOcclusionQuery( &mNumberOfPixelsVisable );
Implements Ogre::HardwareOcclusionQuery.
|
overridevirtual |
Ends the hardware occlusion test.
Implements Ogre::HardwareOcclusionQuery.
|
overridevirtual |
Pulls the hardware occlusion query.
NumOfFragments | will get the resulting number of fragments. |
Implements Ogre::HardwareOcclusionQuery.
|
overridevirtual |
Lets you know when query is done, or still be processed by the Hardware.
Implements Ogre::HardwareOcclusionQuery.