The occlusion-culling tag has no wiki summary.
4
votes
2answers
355 views
OPENGL ARB_occlusion_query Occlusion Culling
for (int i = 0; i < Number_Of_queries; i++)
{
glBeginQueryARB(GL_SAMPLES_PASSED_ARB, queries[i]);
Box[i]
glEndQueryARB(GL_SAMPLES_PASSED_ARB);
}
I'm curious about the method ...
3
votes
1answer
515 views
XNA, occlusing culling and collision detection
I've put together a quadtree/BSP hybrid prototype to test collision detection and occlusion culling in the engine for an XNA game I'm putting together.
As I understand it, one of the optimizations ...
2
votes
3answers
1k views
C++, OpenGL Z-buffer prepass
I'm making a simple voxel engine (think Minecraft) and am currently at the stage of getting rid of occluded faces to gain some precious fps. I'm not very experimented in OpenGL and do not quite ...