Axiom.Core.MeterManager.Report C# (CSharp) Method

Report() public static method

public static Report ( string title ) : void
title string
return void
		public static void Report( string title )
		{
			Report( title, null, 0, "" );
		}

Same methods

MeterManager::Report ( string title, StreamWriter writer, int start, string optionsString ) : void

Usage Example

Ejemplo n.º 1
0
        public bool ToggleMeteringLongestFrame()
        {
            bool value = false;

            if (meterLongestFrame)
            {
                if (longestFrameMeterEvents != null)
                {
                    MeterManager.Report("Longest Frame", longestFrameMeterEvents);
                    longestFrameMeterEvents = null;
                    value = true;
                }
            }
            longestFrameTime  = 0;
            meterLongestFrame = !meterLongestFrame;
            return(value);
        }
All Usage Examples Of Axiom.Core.MeterManager::Report