Axiom.Scripting.Compiler.ScriptCompiler.PassTranslator._translateShadowCasterVertexProgramRef C# (CSharp) Method

_translateShadowCasterVertexProgramRef() protected method

protected _translateShadowCasterVertexProgramRef ( ScriptCompiler compiler, Axiom.Scripting.Compiler.AST.ObjectAbstractNode node ) : void
compiler ScriptCompiler
node Axiom.Scripting.Compiler.AST.ObjectAbstractNode
return void
			protected void _translateShadowCasterVertexProgramRef( ScriptCompiler compiler, ObjectAbstractNode node )
			{
				string createdProgramName;
				Pass pass = _commonProgramChecks( compiler, node, out createdProgramName );

				if ( pass == null )
					return;

				pass.SetShadowCasterVertexProgram( createdProgramName );

				if ( GpuProgramManager.Instance.GetByName( createdProgramName ).IsSupported )
				{
#warning this need GpuProgramParametersShared implementation
					//    GpuProgramParametersSharedPtr params = pass->getShadowCasterVertexProgramParameters();
					//    GpuProgramTranslator::translateProgramParameters(compiler, params, node);
				}
			}