1 | #include "OgrePlatformOcclusionQuery.h"
|
---|
2 | #include <OgreLogManager.h>
|
---|
3 |
|
---|
4 | namespace Ogre {
|
---|
5 |
|
---|
6 | //-----------------------------------------------------------------------
|
---|
7 | PlatformOcclusionQuery::PlatformOcclusionQuery(RenderSystem *rsys)
|
---|
8 | {
|
---|
9 | mHardwareOcclusionQuery = rsys->createHardwareOcclusionQuery();
|
---|
10 | }
|
---|
11 | //-----------------------------------------------------------------------
|
---|
12 | PlatformOcclusionQuery::~PlatformOcclusionQuery()
|
---|
13 | {
|
---|
14 | // hardwareocclusion query is deleted by Ogre
|
---|
15 | //delete mHardwareOcclusionQuery;
|
---|
16 | }
|
---|
17 | //-----------------------------------------------------------------------
|
---|
18 | void PlatformOcclusionQuery::BeginQuery()
|
---|
19 | {
|
---|
20 | mHardwareOcclusionQuery->beginOcclusionQuery();
|
---|
21 | }
|
---|
22 | //-----------------------------------------------------------------------
|
---|
23 | void PlatformOcclusionQuery::EndQuery()
|
---|
24 | {
|
---|
25 | mHardwareOcclusionQuery->endOcclusionQuery();
|
---|
26 | }
|
---|
27 | //-----------------------------------------------------------------------
|
---|
28 | bool PlatformOcclusionQuery::GetQueryResult(unsigned int &visiblePixels,
|
---|
29 | const bool waitForResult) const
|
---|
30 | {
|
---|
31 | // return mHardwareOcclusionQuery->pullOcclusionQuery(&visiblePixels, waitForResult);
|
---|
32 |
|
---|
33 | bool isAvailable = true;
|
---|
34 |
|
---|
35 | if (!waitForResult)
|
---|
36 | {
|
---|
37 | isAvailable = !mHardwareOcclusionQuery->isStillOutstanding();
|
---|
38 | }
|
---|
39 |
|
---|
40 | //std::stringstream d; d << mHardwareOcclusionQuery << ", available: " << isAvailable << ", waitforresult: " << waitForResult;
|
---|
41 | // Ogre::LogManager::getSingleton().logMessage(d.str());
|
---|
42 |
|
---|
43 | if (isAvailable)
|
---|
44 | return mHardwareOcclusionQuery->pullOcclusionQuery(&visiblePixels);
|
---|
45 |
|
---|
46 | return false;
|
---|
47 | }
|
---|
48 |
|
---|
49 | } // namespace Ogre |
---|