@@ -235,10 +235,10 @@ OMVoxelManager::OMVoxelManager(OMRenderer *renderer, OMRendererRenderTarget *res
235235 chunkoffs = renderer->allocateBuffer (UniformTexel, 3 * sizeof (float ));
236236 debugoffs = renderer->allocateBuffer (VertexData, 12 * 2 * 3 * sizeof (float ));
237237 skydisc = renderer->allocateBuffer (Uniform, sizeof (OMVoxelSkyDisc));
238- OMVoxelSkyDisc disc = {{0.470 , 0.654 , 1.0 }, 256 , {0.198 , 0.371 , 1.0 }, -16 };
238+ OMVoxelSkyDisc disc = {{0.02 , 0.02 , 0.06 }, 256 , {0.02 , 0.03 , 0.14 }, -16 };
239239 skydisc->updateData (&disc);
240240 fogdata = renderer->allocateBuffer (Uniform, sizeof (float ) * 5 );
241- std::array<float , 5 > d = {0.0005 , 0.0006 , 0.470 , 0.654 , 1.0 };
241+ std::array<float , 5 > d = {0.0005 , 0.0006 , 0.02 , 0.02 , 0.06 };
242242 fogdata->updateData (d.data ());
243243
244244 textureAtlas = tex;
@@ -394,7 +394,7 @@ auto OMVoxelManager::submit(OMRendererTask *task, OMRendererTempTarget *resolveT
394394 composePipeline->bindInput (0 , (samples == 1 ? cutoutTargetMS : cutoutTarget)->colorTexture );
395395 composePipeline->bindInput (1 , (samples == 1 ? translucentTargetMS : translucentTarget)->colorTexture );
396396
397- auto tsk = task->clearColor ({0 .198f , 0 .371f , 1 . 0f , 1 .0f })
397+ auto tsk = task->clearColor ({0 .02f , 0 .03f , 0 . 14f , 1 .0f })
398398 ->clearDepth (0 .0f )
399399 ->target (cutoutTargetMS->target )
400400 ->pipeline (skyDiscPipeline)
0 commit comments