mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 11:43:49 +00:00
Merge pull request #710 from lukaspj/3-Textures-Blending-Fix
3 textures blending fix
This commit is contained in:
commit
9e4446046f
4 changed files with 15 additions and 6 deletions
|
|
@ -446,7 +446,7 @@ void TerrainDetailMapFeatHLSL::processPix( Vector<ShaderComponent*> &component
|
|||
}
|
||||
|
||||
// Add to the blend total.
|
||||
meta->addStatement( new GenOp( " @ = max( @, @ );\r\n", blendTotal, blendTotal, detailBlend ) );
|
||||
meta->addStatement( new GenOp( " @ += @;\r\n", blendTotal, detailBlend ) );
|
||||
|
||||
// If we had a parallax feature... then factor in the parallax
|
||||
// amount so that it fades out with the layer blending.
|
||||
|
|
|
|||
|
|
@ -170,9 +170,10 @@ bool TerrainBlock::_initBaseShader()
|
|||
desc.zDefined = true;
|
||||
desc.zWriteEnable = false;
|
||||
desc.zEnable = false;
|
||||
desc.setBlend( true, GFXBlendSrcAlpha, GFXBlendInvSrcAlpha );
|
||||
desc.setBlend( true, GFXBlendSrcAlpha, GFXBlendOne );
|
||||
desc.cullDefined = true;
|
||||
desc.cullMode = GFXCullNone;
|
||||
desc.colorWriteAlpha = false;
|
||||
mBaseShaderSB = GFX->createStateBlock( desc );
|
||||
|
||||
return true;
|
||||
|
|
@ -251,6 +252,8 @@ void TerrainBlock::_updateBaseTexture(bool writeToCache)
|
|||
mBaseTarget->attachTexture( GFXTextureTarget::Color0, blendTex );
|
||||
GFX->setActiveRenderTarget( mBaseTarget );
|
||||
|
||||
GFX->clear( GFXClearTarget, ColorI(0,0,0,255), 1.0f, 0 );
|
||||
|
||||
GFX->setTexture( 0, mLayerTex );
|
||||
mBaseShaderConsts->setSafe( mBaseLayerSizeConst, (F32)mLayerTex->getWidth() );
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue