Merge pull request #1713 from Azaezel/c4189_cleanup

adresses C4189 warnings
This commit is contained in:
Anis 2016-08-07 00:38:51 +02:00 committed by GitHub
commit e13513f059
8 changed files with 8 additions and 51 deletions

View file

@ -2795,18 +2795,4 @@ void ImposterVertFeatureGLSL::determineFeature( Material *material,
{
if ( features.hasFeature( MFT_ImposterVert ) )
outFeatureData->features.addFeature( MFT_ImposterVert );
}
//****************************************************************************
// Vertex position
//****************************************************************************
void DeferredSkyGLSL::processVert( Vector<ShaderComponent*> &componentList,
const MaterialFeatureData &fd )
{
Var *outPosition = (Var*)LangElement::find( "gl_Position" );
MultiLine *meta = new MultiLine;
//meta->addStatement( new GenOp( " @.w = @.z;\r\n", outPosition, outPosition ) );
output = meta;
}
}