Occlusion Culling

A place for users of OGRE to discuss ideas and experiences of utilitising OGRE in their games / demos / applications.
Post Reply
micheallarkin
Halfling
Posts: 40
Joined: Tue Apr 15, 2008 2:49 pm
x 3

Occlusion Culling

Post by micheallarkin »

I'v been given the task of making use of occlusion culling in our system (City Scene, lots of characters and buildings). I'm having trouble finding much information on what Occlusion culling ogre provides, I know there's HardwareOcclusionQuery stuff in the renderSystem, but I can't figure out where to start with it. I need to cull buildings against other buildings, and the city characters against the remaining buildings. Can anyone point me in the right direction?
User avatar
xavier
OGRE Retired Moderator
OGRE Retired Moderator
Posts: 9481
Joined: Fri Feb 18, 2005 2:03 am
Location: Dublin, CA, US
x 22

Re: Occlusion Culling

Post by xavier »

Ogre provides no occlusion culling. the HOQ class is simply an interface to the hardware capability. The only effort to produce a working scene manager based on HOQ was done by Tuan Kuranes a long time ago, but we found it largely unfinished and buggy.

You're starting from scratch, in other words.
Do you need help? What have you tried?

Image

Angels can fly because they take themselves lightly.
micheallarkin
Halfling
Posts: 40
Joined: Tue Apr 15, 2008 2:49 pm
x 3

Re: Occlusion Culling

Post by micheallarkin »

Thought so! Thanks for the response, I'm going to have a go at using the Hardware Occlusion Culling, I'm just trying to make sense of it first. Would this be the right way to go about using it?

I'm not going to occlusion cull my buildings initially, I just want to cut down on character updates, my world will be split into bounding boxes that I define for a group of characters.

Code: Select all

1. Render my static geometry (buildings), in some simple form, a low level of detail mesh, and basic shaders. 
  
2. For Each Node

     Create a Hardware Occlusion Query
          beginOcclusionQuery()
               Render a box representing a group of characters
          endOcclusionQuery()
     3. If that box has visible pixels, set the entities inside that bounding box to Visible(true)

4. Render all visible geometry at full detail
I assume I can do this without altering the SceneManager too, but It's not a problem if I can't.
User avatar
madmarx
OGRE Expert User
OGRE Expert User
Posts: 1671
Joined: Mon Jan 21, 2008 10:26 pm
x 50

Re: Occlusion Culling

Post by madmarx »

1/
I have seen Occlusion culling done in ogre with a custom software renderer(with no zbuffer) running on the cpu, it was on a french blog.
And it was done with Ogre.

2/ what you propose seems ok to me, if you don't mind seeing things desapearing and popping from time to time.
+ not sure about effiency if you got 5000 bbox to test.
Tutorials + Ogre searchable API + more for Ogre1.7 : http://sourceforge.net/projects/so3dtools/
Corresponding thread : http://www.ogre3d.org/forums/viewtopic. ... 93&start=0
User avatar
xavier
OGRE Retired Moderator
OGRE Retired Moderator
Posts: 9481
Joined: Fri Feb 18, 2005 2:03 am
Location: Dublin, CA, US
x 22

Re: Occlusion Culling

Post by xavier »

Just don't wait for the results of the query in the current frame. tuan tried to make the claim in his code that the process is fast enough, but even after many days of trying to make his code work, we still got abysmal frame rates with it.

You need to issue the command and process the results in a later frame. If you stall the GPU while waiting for the results immediately, you are defeating the purpose of doing the query at all -- you might as well just render the geometry. you can exploit temporal and spatial coherence in the frame render -- chances are the camera is not moving more than a fraction of (or at most, one or two of) a degree on any axis each frame, so what was visible now will likely still be visible the next frame, and what was hidden, similarly will still be hidden the next frame.

You'll need to tweak (for your needs) the re-issue logic of course -- you don't necessarily want to query every potentially-visible object every frame, but you also don't want to leave too much time between queries. You will also have to decide whether you can stand popping, and how you want do deal with that (perhaps make the object bounding volume a bit larger, that sort of stuff).

In other words, there is a reason that Umbra is still a viable product. ;)
Do you need help? What have you tried?

Image

Angels can fly because they take themselves lightly.
User avatar
_tommo_
Gnoll
Posts: 677
Joined: Tue Sep 19, 2006 6:09 pm
x 5
Contact:

Re: Occlusion Culling

Post by _tommo_ »

I think that the problem can't be really solved on modern cards... at some point you will need to access the render texture with the CPU, and this slows the pipeline more than a standard render...

Maybe it would be different if you made the visibility check completely on the GPU (eg. killing occluded triangles), but as for today i would stick with frustums and boxes :D
OverMindGames Blog
IndieVault.it: Il nuovo portale italiano su Game Dev & Indie Games
micheallarkin
Halfling
Posts: 40
Joined: Tue Apr 15, 2008 2:49 pm
x 3

Re: Occlusion Culling

Post by micheallarkin »

Nice comprehensive answers, cheers!

One more thing, not so important but I'd like to understand it. If I issue a query in one frame, but don't want the results until a later frame, the gpu can complete other tasks while that query is happening? Or, is the explanation that the query executes when the gpu is Idle?

I'm aware I'm going to run into a lot of problems implementing this, but it's an academic exercise if nothing else...
User avatar
Praetor
OGRE Retired Team Member
OGRE Retired Team Member
Posts: 3335
Joined: Tue Jun 21, 2005 8:26 pm
Location: Rochester, New York, US
x 3
Contact:

Re: Occlusion Culling

Post by Praetor »

For far more detailed information on what to do look up Coherent Hierarchical Occlusion Culling. There was even a CHC++ paper I found that supposedly used Ogre as its test framework, but I wasn't able to get in touch with the authors about it. It made a few batch count and stalling improvements on the regular CHC algorithm. Anyway, searching for that should give you a lot of information.
Game Development, Engine Development, Porting
http://www.darkwindmedia.com
User avatar
nullsquared
Old One
Posts: 3245
Joined: Tue Apr 24, 2007 8:23 pm
Location: NY, NY, USA
x 11

Re: Occlusion Culling

Post by nullsquared »

micheallarkin wrote:If I issue a query in one frame, but don't want the results until a later frame, the gpu can complete other tasks while that query is happening?
That's correct, several things are done in parallel. If you try to read back the results the same frame you issued occlusion query, you end up with what is known as a stall while the GPU completes this specific task and returns the results to the CPU.
User avatar
xavier
OGRE Retired Moderator
OGRE Retired Moderator
Posts: 9481
Joined: Fri Feb 18, 2005 2:03 am
Location: Dublin, CA, US
x 22

Re: Occlusion Culling

Post by xavier »

_tommo_ wrote:I think that the problem can't be really solved on modern cards... at some point you will need to access the render texture with the CPU, and this slows the pipeline more than a standard render...

Maybe it would be different if you made the visibility check completely on the GPU (eg. killing occluded triangles), but as for today i would stick with frustums and boxes :D

You are not accessing a render texture. The GPU is wired (since the GeForce 3) to treat the HOQ as a first-class command, and the results are returned to the CPU "when convenient", by the drivers. Usually this means "when the bus is not owned by someone else".
Do you need help? What have you tried?

Image

Angels can fly because they take themselves lightly.
User avatar
syedhs
Silver Sponsor
Silver Sponsor
Posts: 2703
Joined: Mon Aug 29, 2005 3:24 pm
Location: Kuala Lumpur, Malaysia
x 51

Re: Occlusion Culling

Post by syedhs »

You can also take a look at new feature of the latest SceneManager plugin - PCZPlugin which is a portal-based SceneManager. The sub-forum is here:- http://www.ogre3d.org/addonforums/viewf ... 8e0ede4337.

In it, there is a new feature being developed which is Anti-Portal that is suitable for out door object culling (portal is suitable only for in-door object culling). The plugin is wonderful, but I haven't managed to play around with it.
A willow deeply scarred, somebody's broken heart
And a washed-out dream
They follow the pattern of the wind, ya' see
Cause they got no place to be
That's why I'm starting with me
User avatar
_tommo_
Gnoll
Posts: 677
Joined: Tue Sep 19, 2006 6:09 pm
x 5
Contact:

Re: Occlusion Culling

Post by _tommo_ »

xavier wrote: You are not accessing a render texture. The GPU is wired (since the GeForce 3) to treat the HOQ as a first-class command, and the results are returned to the CPU "when convenient", by the drivers. Usually this means "when the bus is not owned by someone else".
But... have HOQs been used in real-world games? I had the idea that games still used CPU to find occlusion...
OverMindGames Blog
IndieVault.it: Il nuovo portale italiano su Game Dev & Indie Games
beaugard
OGRE Contributor
OGRE Contributor
Posts: 265
Joined: Sun Mar 25, 2007 1:48 pm
x 2

Re: Occlusion Culling

Post by beaugard »

AFAIK, CryEngine 2 uses HOQ almost exclusively for culling.
In addition to using lagged results, you need to use some good partitioning system for geometry (like octree) to batch objects for visibility determination, it will never be efficient to have one HOQ per object.
User avatar
Halifax
Halfling
Posts: 49
Joined: Sun Nov 18, 2007 10:30 pm

Re: Occlusion Culling

Post by Halifax »

Well, I have no idea, but I think that conditional rendering is an extension in OpenGL 2.1, and a core function in OpenGL 3.0, right? If so, I'm pretty sure that's meant to keep things purely on the GPU with no need to read back the values to the CPU. Might want to look that up, and implement it in Ogre if it isn't already in there.

Ah, it looks like it is nVidia specific in OpenGL 2.1: http://opengl.org/registry/specs/NV/con ... render.txt
Post Reply