Made master branch work again regarding clouds

This commit is contained in:
Michaël Lemaire 2013-05-25 16:29:36 +02:00 committed by Michael Lemaire
parent fdf77b095f
commit b7f64c6d79

View file

@ -97,7 +97,6 @@ Color cloudsApplyLayer(CloudsLayerDefinition* definition, Color base, Renderer*
/* TODO Crawl in segments for render */ /* TODO Crawl in segments for render */
col = definition->material.base; col = definition->material.base;
col.a = 0.0;
/*if (definition->transparencydepth == 0 || inside_length >= definition->transparencydepth) /*if (definition->transparencydepth == 0 || inside_length >= definition->transparencydepth)
{ {
col.a = 1.0; col.a = 1.0;
@ -108,6 +107,7 @@ Color cloudsApplyLayer(CloudsLayerDefinition* definition, Color base, Renderer*
}*/ }*/
col = renderer->atmosphere->applyAerialPerspective(renderer, start, col).final; col = renderer->atmosphere->applyAerialPerspective(renderer, start, col).final;
col.a = 0.0;
colorMask(&base, &col); colorMask(&base, &col);