ShaderTools.Hlsl.Binding.BoundTreeWalker.VisitInterfaceType C# (CSharp) Method

VisitInterfaceType() protected method

protected VisitInterfaceType ( BoundInterfaceType node ) : void
node ShaderTools.Hlsl.Binding.BoundNodes.BoundInterfaceType
return void
        protected virtual void VisitInterfaceType(BoundInterfaceType node)
        {
            foreach (var method in node.Methods)
                VisitFunction(method);
        }