[cogl] Improving Cogl journal to minimize driver overheads + GPU state changes
authorRobert Bragg <robert@linux.intel.com>
Wed, 17 Jun 2009 17:46:42 +0000 (18:46 +0100)
committerRobert Bragg <robert@linux.intel.com>
Tue, 30 Jun 2009 16:13:34 +0000 (17:13 +0100)
commit845ff67301da767926f96c56026a8dd9c7964f01
treeac0be9c504b0ce65d1f3351579b9b34a66e40e48
parent04bb7899416063994af8730866f390e68ecc4d65
[cogl] Improving Cogl journal to minimize driver overheads + GPU state changes

Previously the journal was always flushed at the end of
_cogl_rectangles_with_multitexture_coords, (i.e.  the end of any
cogl_rectangle* calls) but now we have broadened the potential for batching
geometry.  In ideal circumstances we will only flush once per scene.

In summary the journal works like this:

When you use any of the cogl_rectangle* APIs then nothing is emitted to the
GPU at this point, we just log one or more quads into the journal.  A
journal entry consists of the quad coordinates, an associated material
reference, and a modelview matrix.  Ideally the journal only gets flushed
once at the end of a scene, but in fact there are things to consider that
may cause unwanted flushing, including:

- modifying materials mid-scene
    This is because each quad in the journal has an associated material
    reference (i.e. not copy), so if you try and modify a material that is
    already referenced in the journal we force a flush first)

    NOTE: For now this means you should avoid using cogl_set_source_color()
      since that currently uses a single shared material. Later we
  should change it to use a pool of materials that is recycled
  when the journal is flushed.

- modifying any state that isn't currently logged, such as depth, fog and
  backface culling enables.

The first thing that happens when flushing, is to upload all the vertex data
associated with the journal into a single VBO.

We then go through a process of splitting up the journal into batches that
have compatible state so they can be emitted to the GPU together.  This is
currently broken up into 3 levels so we can stagger the state changes:

1) we break the journal up according to changes in the number of material layers
   associated with logged quads. The number of layers in a material determines
   the stride of the associated vertices, so we have to update our vertex
   array offsets at this level. (i.e. calling gl{Vertex,Color},Pointer etc)
2) we further split batches up according to material compatability. (e.g.
   materials with different textures) We flush material state at this level.
3) Finally we split batches up according to modelview changes. At this level
   we update the modelview matrix and actually emit the actual draw command.

This commit is largely about putting the initial design in-place; this will be
followed by other changes that take advantage of the extended batching.
26 files changed:
clutter/clutter-main.c
clutter/cogl/cogl-debug.h
clutter/cogl/cogl-material.h
clutter/cogl/cogl.h.in
clutter/cogl/common/cogl-clip-stack.c
clutter/cogl/common/cogl-debug.c
clutter/cogl/common/cogl-material-private.h
clutter/cogl/common/cogl-material.c
clutter/cogl/common/cogl-primitives.c
clutter/cogl/common/cogl-primitives.h
clutter/cogl/common/cogl-vertex-buffer.c
clutter/cogl/common/cogl.c
clutter/cogl/gl/cogl-context.c
clutter/cogl/gl/cogl-context.h
clutter/cogl/gl/cogl-fbo.c
clutter/cogl/gl/cogl-primitives.c
clutter/cogl/gl/cogl-program.c
clutter/cogl/gl/cogl-texture-private.h
clutter/cogl/gl/cogl-texture.c
clutter/eglnative/clutter-backend-egl.c
clutter/eglx/clutter-backend-egl.c
clutter/fruity/clutter-backend-fruity.c
clutter/glx/clutter-backend-glx.c
clutter/osx/clutter-stage-osx.c
clutter/sdl/clutter-backend-sdl.c
clutter/win32/clutter-backend-win32.c