AlphaTab.Rendering.ScoreBarRenderer.CreateVoiceGlyphs C# (CSharp) Method

CreateVoiceGlyphs() private method

private CreateVoiceGlyphs ( Voice v ) : void
v AlphaTab.Model.Voice
return void
        private void CreateVoiceGlyphs(Voice v)
        {
            for (int i = 0, j = v.Beats.Count; i < j; i++)
            {
                var b = v.Beats[i];
                var container = new ScoreBeatContainerGlyph(b, GetOrCreateVoiceContainer(v));
                container.PreNotes = new ScoreBeatPreNotesGlyph();
                container.OnNotes = new ScoreBeatGlyph();
                AddBeatGlyph(container);
            }
        }