mirror of
				https://github.com/RetroDECK/Duckstation.git
				synced 2025-04-10 19:15:14 +00:00 
			
		
		
		
	
		
			
	
	
		
			60 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			60 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
|   | <?xml version="1.0" encoding="utf-8"?> | ||
|  | <!--  | ||
|  |     This will make GitHub and some editors recognize this code as XML:  | ||
|  |     vim: syntax=xml | ||
|  | --> | ||
|  | <AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010"> | ||
|  |     <!-- These types are from the gsl_assert header. --> | ||
|  |     <Type Name="gsl::fail_fast"> | ||
|  |         <!-- na hides the address, otherwise it would appear as 0x.... "Message" --> | ||
|  |         <DisplayString>{_Data._What,nasb}</DisplayString> | ||
|  |     </Type> | ||
|  | 
 | ||
|  |     <!-- These types are from the gsl_util header. --> | ||
|  |     <Type Name="gsl::final_action<*>"> | ||
|  |         <DisplayString>{{ invoke = {invoke_}, action = {f_} }}</DisplayString> | ||
|  |         <Expand> | ||
|  |             <Item Name="[invoke]">invoke_</Item> | ||
|  |             <Item Name="[callback]">f_</Item> | ||
|  |         </Expand> | ||
|  |     </Type> | ||
|  | 
 | ||
|  |     <Type Name="gsl::span<*, *>"> | ||
|  |         <DisplayString>{{ extent = {storage_.size_} }}</DisplayString> | ||
|  |         <Expand> | ||
|  |             <ArrayItems> | ||
|  |                 <Size>storage_.size_</Size> | ||
|  |                 <ValuePointer>storage_.data_</ValuePointer> | ||
|  |             </ArrayItems> | ||
|  |         </Expand> | ||
|  |     </Type> | ||
|  | 
 | ||
|  |     <Type Name="gsl::basic_string_span<*, *>"> | ||
|  |         <DisplayString>{span_.storage_.data_,[span_.storage_.size_]na}</DisplayString> | ||
|  |         <Expand> | ||
|  |             <Item Name="[size]">span_.storage_.size_</Item> | ||
|  |             <ArrayItems> | ||
|  |                 <Size>span_.storage_.size_</Size> | ||
|  |                 <ValuePointer>span_.storage_.data_</ValuePointer> | ||
|  |             </ArrayItems> | ||
|  |         </Expand> | ||
|  |     </Type> | ||
|  | 
 | ||
|  |     <Type Name="gsl::basic_zstring_span<*, *>"> | ||
|  |         <DisplayString>{span_.storage_.data_,[span_.storage_.size_]na}</DisplayString> | ||
|  |         <Expand> | ||
|  |             <Item Name="[size]">span_.storage_.size_</Item> | ||
|  |             <ArrayItems> | ||
|  |                 <Size>span_.storage_.size_</Size> | ||
|  |                 <ValuePointer>span_.storage_.data_</ValuePointer> | ||
|  |             </ArrayItems> | ||
|  |         </Expand> | ||
|  |     </Type> | ||
|  | 
 | ||
|  |     <!-- These types are from the gsl header. --> | ||
|  |     <Type Name="gsl::not_null<*>"> | ||
|  |         <!-- We can always dereference this since it's an invariant. --> | ||
|  |         <DisplayString>value = {*ptr_}</DisplayString> | ||
|  |     </Type> | ||
|  | </AutoVisualizer>   |