docs: update RHI API docs

This commit is contained in:
2026-03-20 02:35:45 +08:00
parent ea756c0177
commit 070b444f8f
501 changed files with 13493 additions and 2022 deletions

View File

@@ -15,7 +15,7 @@ virtual const RHIDeviceInfo& GetDeviceInfo() const = 0;
```cpp
const RHIDeviceInfo& info = device->GetDeviceInfo();
printf("GPU: %ls\n", info.description.c_str());
printf("GPU: %ls\n", info.renderer.c_str());
printf("Vendor: %ls\n", info.vendor.c_str());
printf("Driver: %ls\n", info.version.c_str());
printf("VRAM: %llu MB\n", info.dedicatedVideoMemory / 1024 / 1024);