Hardware Occlusion Culling - Occlusion Query for Irrlicht
-
- Posts: 41
- Joined: Mon Feb 11, 2008 3:06 pm
Please post here not only patch but the patched files (.h, .cpp) too. I have some troubles with patching. Or mail it to me please (naxart@gmail.com).
Thanks.
Thanks.
-
- Posts: 66
- Joined: Sat Sep 29, 2012 11:58 am
Re: Hardware Occlusion Culling - Occlusion Query for Irrlich
hi everyone , i'm new to irrlicht , i have successfully implemented Occlusion Culling in my irrlicht program. But what is the problem is " Occlusion culling also preventing SHADOWS to be projected". i.e Occluded Object's Shadows are not visible. Occlusion Culling disabling Occluded Objects for DEPTH TEST. So what i need is to disable Occlusion Culling during DEPTH PASS to shader . Is it Possible to Disable Occlusion Culling for particular pass ? or Is It Possible to Disable Occlusion Culling in Particular Camera's View ?
-
- Admin
- Posts: 14143
- Joined: Wed Apr 19, 2006 9:20 pm
- Location: Oldenburg(Oldb), Germany
- Contact:
Re: Hardware Occlusion Culling - Occlusion Query for Irrlich
Well, teh occlusion query just returns a value to you, which says whether pixels where written or not. What you do with that value is up to you.
Re: Hardware Occlusion Culling - Occlusion Query for Irrlich
was wondering how this turned out if it ever made it into irrlicht 1.8 mentions https://sourceforge.net/p/irrlicht/feature-requests/54/.
http://irrlicht.sourceforge.net/docu/example026.html
http://irrlicht.sourceforge.net/docu/example026.html
Live long and phosphor!
-- https://github.com/netpipe/Luna Game Engine Status 95%
-- https://github.com/netpipe/Luna Game Engine Status 95%
Re: Hardware Occlusion Culling - Occlusion Query for Irrlich
It did but internally its a shitty map of <Node,OcclusionMesh> which does a search (linear I believe!) on an array of pairs which if you have 1000 nodes.. results in 25% of your CPU time in a N^2 search