예제 #1
0
파일: App.cs 프로젝트: ousttrue/RectUI
        public virtual void Dispose()
        {
            foreach (var kv in m_windowStateMap)
            {
                kv.Value.Dispose();
            }
            m_windowStateMap.Clear();

            if (m_renderThread != null)
            {
                m_renderThread.Dispose();
                m_renderThread = null;
            }
        }
예제 #2
0
파일: App.cs 프로젝트: ousttrue/RectUI
 public App()
 {
     m_renderThread = new RenderThread();
 }