This is most relevant to most people using the library in that you might have code that needs to be changed:
old:
app->settings().depthGuardBandThickness
settings.depthGuardBandThickness = Vector2int16(64, 64);
settings.colorGuardBandThickness = Vector2int16(0, 0);
new:
app->settings().hdrFramebuffer.depthGuardBandThickness
settings.hdrFramebuffer.depthGuardBandThickness = Vector2int16(64, 64);
settings.hdrFramebuffer.colorGuardBandThickness = Vector2int16(0, 0);
-m
Prof. Morgan McGuire
Department of Computer Science
Williams College