Skip to content

Commit

Permalink
Merge pull request obsproject#179 from amazon-contributing/ruwen/add-…
Browse files Browse the repository at this point in the history
…gpu-vendor-device-id

UI: Add GPU `vendor_id` and `device_id` to go live request
  • Loading branch information
palana authored Mar 7, 2024
2 parents 8a703cc + 3738126 commit 527ca5b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions UI/system-info-windows.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ OBSDataArrayAutoRelease system_gpu_data()
OBSDataAutoRelease data = obs_data_create();
obs_data_set_string(data, "model", name);

obs_data_set_int(data, "vendor_id", desc.VendorId);
obs_data_set_int(data, "device_id", desc.DeviceId);

obs_data_set_int(data, "dedicated_video_memory",
desc.DedicatedVideoMemory);
obs_data_set_int(data, "shared_system_memory",
Expand Down

0 comments on commit 527ca5b

Please sign in to comment.