AlphaTab.Rendering.EffectBarRenderer.CreateBeatGlyphs C# (CSharp) 메소드

CreateBeatGlyphs() 보호된 메소드

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