Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ Run `rdc --help` for the full list, or `rdc <command> --help` for details. See
| Diff | `diff` (with `--draws`, `--stats`, `--framebuffer`, `--pipeline`, etc.) |
| VFS | `ls`, `cat`, `tree` |
| Remote | `remote connect`, `remote list`, `remote capture` |
| Capture file | `sections`, `section`, `callstacks`, `gpus`, `thumbnail` |
| Utility | `doctor`, `completion`, `capture`, `count`, `script`, `install-skill` |

All list commands output TSV. All commands support `--json`. Footer/summary goes to stderr — stdout is always clean data.
Expand Down
12 changes: 9 additions & 3 deletions docs-astro/src/data/commands.json
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
"name": "passes",
"id": "passes",
"help": "List render passes.",
"usage": "rdc passes [--json] [--no-header] [--jsonl] [-q]"
"usage": "rdc passes [--deps] [--dot] [--graph] [--json] [--no-header] [--jsonl] [-q]"
},
{
"name": "pass",
Expand Down Expand Up @@ -402,8 +402,14 @@
{
"name": "section",
"id": "section",
"help": "Extract named section contents.",
"usage": "rdc section <NAME> [--json]"
"help": "Read or write named section contents.",
"usage": "rdc section <NAME> [--write <FILE>] [--json]"
},
{
"name": "callstacks",
"id": "callstacks",
"help": "Resolve CPU callstack for an event.",
"usage": "rdc callstacks [--eid INTEGER] [--json]"
}
]
},
Expand Down
16 changes: 13 additions & 3 deletions docs-astro/src/pages/docs/vfs.astro
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,29 @@ import Docs from '../../layouts/Docs.astro';
│ ├── bindings/
│ │ └── &lt;set&gt;/
│ │ └── &lt;binding&gt;
│ └── descriptors/
│ ├── descriptors/
│ └── pixel/
│ └── &lt;x&gt;/
│ └── &lt;y&gt; # pixel history at (x,y)
├── resources/ # all resources
│ └── &lt;id&gt;/
│ ├── info
│ ├── usage
│ └── data # binary content
├── passes/ # render passes
│ └── &lt;id&gt;/
│ └── &lt;name&gt;/
│ └── attachments/
│ ├── color0, color1… # color output targets
│ └── depth # depth target
├── textures/ # texture resources
│ └── &lt;id&gt;/
├── buffers/ # buffer resources
│ └── &lt;id&gt;/
└── shaders/ # shader resources</code></pre>
└── shaders/ # shader resources
└── &lt;id&gt;/
├── info
├── disasm
└── used-by # EIDs that use this shader</code></pre>

<h2>Browsing</h2>

Expand Down