17 lines
		
	
	
	
		
			312 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			312 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Ryujinx.Debugger.Profiler
 | |
| {
 | |
|     public enum TimingFlagType
 | |
|     {
 | |
|         FrameSwap   = 0,
 | |
|         SystemFrame = 1,
 | |
| 
 | |
|         // Update this for new flags
 | |
|         Count       = 2,
 | |
|     }
 | |
| 
 | |
|     public struct TimingFlag
 | |
|     {
 | |
|         public TimingFlagType FlagType;
 | |
|         public long Timestamp;
 | |
|     }
 | |
| }
 | 
