AlphaTab.Rendering.EffectBarRenderer.CreateBeatGlyphs C# (CSharp) Method

CreateBeatGlyphs() protected method

protected CreateBeatGlyphs ( ) : void
return void
        protected override void CreateBeatGlyphs()
        {
            foreach (var voice in Bar.Voices)
            {
                _effectGlyphs.Add(new FastDictionary<int, EffectGlyph>());
                _uniqueEffectGlyphs.Add(new FastList<EffectGlyph>());
                CreateVoiceGlyphs(voice);
            }
        }