mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-08-09 02:07:04 +08:00
22 lines
843 B
XML
22 lines
843 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
|
|
<Type Name="entt::basic_process<*>">
|
|
<DisplayString>{{ state={ current,en } }}</DisplayString>
|
|
<Expand>
|
|
<Item Name="[state]">current,en</Item>
|
|
<Item Name="[child]" Condition="next.first_base::value != nullptr">*next.first_base::value</Item>
|
|
</Expand>
|
|
</Type>
|
|
<Type Name="entt::basic_scheduler<*>">
|
|
<Intrinsic Name="size" Expression="handlers.first_base::value.size()"/>
|
|
<DisplayString>{{ size={ size() } }}</DisplayString>
|
|
<Expand>
|
|
<Item Name="[capacity]" ExcludeView="simple">handlers.first_base::value.capacity()</Item>
|
|
<IndexListItems>
|
|
<Size>size()</Size>
|
|
<ValueNode>*handlers.first_base::value[$i]</ValueNode>
|
|
</IndexListItems>
|
|
</Expand>
|
|
</Type>
|
|
</AutoVisualizer>
|