blender/source/gameengine/Rasterizer
Benoit Bolsee 51b4145841 BGE Scenegraph and View frustrum culling improvement.
This commit contains a number of performance improvements for the
BGE in the Scenegraph (parent relation between objects in the
scene) and view frustrum culling.

The scenegraph improvement consists in avoiding position update
if the object has not moved since last update and the removal
of redundant updates and synchronization with the physics engine.

The view frustrum culling improvement consists in using the DBVT
broadphase facility of Bullet to build a tree of graphical objects
in the scene. The elements of the tree are Aabb boxes (Aligned 
Axis Bounding Boxes) enclosing the objects. This provides good
precision in closed and opened scenes. This new culling system
is enabled by default but just in case, it can be disabled with
a button in the World settings. There is no do_version in this
commit but it will be added before the 2.49 release. For now you
must manually enable the DBVT culling option in World settings
when you open an old file.

The above improvements speed up scenegraph and culling up to 5x.
However, this performance improvement is only visible when
you have hundreds or thousands of objects.

The main interest of the DBVT tree is to allow easy occlusion
culling and automatic LOD system. This will be the object of further
improvements.
2009-04-07 22:14:06 +00:00
..
RAS_OpenGLFilters
RAS_OpenGLRasterizer
CMakeLists.txt
Makefile
RAS_2DFilterManager.cpp
RAS_2DFilterManager.h
RAS_BucketManager.cpp
RAS_BucketManager.h
RAS_CameraData.h
RAS_Deformer.h
RAS_FramingManager.cpp
RAS_FramingManager.h
RAS_ICanvas.h
RAS_IPolygonMaterial.cpp
RAS_IPolygonMaterial.h
RAS_IRasterizer.h
RAS_IRenderTools.cpp
RAS_IRenderTools.h
RAS_LightObject.h
RAS_MaterialBucket.cpp
RAS_MaterialBucket.h
RAS_MeshObject.cpp
RAS_MeshObject.h
RAS_ObjectColor.h
RAS_Polygon.cpp
RAS_Polygon.h
RAS_Rect.h
RAS_texmatrix.cpp
RAS_TexMatrix.h
RAS_TexVert.cpp
RAS_TexVert.h
SConscript