Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. For each IBakeInputSystem, call IBake::BakeSystemFinalGather.
  2. Extract the FP16 output textures from the resulting IBakeOutputSystemFinalGather objects.


Excerpt
hiddentrue



Ambient occlusion

  1. For each BakeSystemResource, call IBake::BakeSystemAO.
  2. Extract the FP16 output textures from the resulting IBakeOutputSystemAO objects.


Excerpt
hiddentrue



Direct light baking for probes

  1. First, copy lighting information into an IBakeInputLighting object.
  2. Now, for each probe set represented by an IPrecompInputProbeSet, create an IBakeVisibilityBuffer with the IBake API. You also need to pass in a BakeSystemResource object, with all the systems that can influence the direct lighting for the probes. This operation is slow; therefore if only the lights have changed (and not the geometry) you can pass in an IBakeVisibilityBuffer from a previous run and it will be updated.
  3. Call IBake::BakeProbeSetDirect() to create the IBakeOutputProbeSet. Use the IBakeOutputProbeSet::GetOutput() method to retrieve the SH coefficients of all probes in the probe set.


Excerpt
hiddentrue



Indirect light baking for probes

  1. First follow the steps described in Indirect light baking.
  2. Now, for each probe in a probe set, use the IBakeSolvedRuntime::GetSolvedProbe() method of IBakeSolvedRuntime to retrieve the SH coefficients.


Excerpt
hiddentrue



Baked Radiosity Normal Texture

...

  1. For each BakeInputSystem, call IBake::BakeSystemRadiosityNormal, providing the BakeSolvedRuntime for all Enlighten systems.
  2. Extract the FP16 output textures from the resulting IBakeOutputSystemRadiosityNormal objects.


Excerpt
hiddentrue



Message reporting and error handling

...