Revert "Update to latest proto definitions from SteamDatabase/Protobufs"

This reverts commit 9946f23749 for BC reasons.
This commit is contained in:
Robin Appelman 2025-10-19 14:53:08 +02:00
commit 70a102b373
127 changed files with 28656 additions and 40688 deletions

View file

@ -1,26 +0,0 @@
import "enums.proto";
option optimize_for = SPEED;
option cc_generic_services = false;
message CMsgChildProcessQueryResponse {
oneof response {
.CMsgChildProcessQueryGpuTopology gpu_topology = 1;
}
}
message CMsgChildProcessQueryGpuTopology {
message GpuInfo {
optional uint32 id = 1;
optional string name = 2;
optional uint64 vram_size_bytes = 3;
optional .EGpuDriverId driver_id = 4 [default = k_EGpuDriverId_Invalid];
optional int32 driver_version_major = 5;
optional int32 driver_version_minor = 6;
optional int32 driver_version_patch = 7;
optional uint64 luid = 8;
}
repeated .CMsgChildProcessQueryGpuTopology.GpuInfo gpus = 1;
optional uint32 default_gpu_id = 2;
}