video_core: Add GPU vendor name to window title bar

This commit is contained in:
ameerj 2021-06-20 17:26:55 -04:00
parent ed3e7788a1
commit 59d6951aeb
9 changed files with 75 additions and 10 deletions

View file

@ -47,6 +47,10 @@ public:
return &rasterizer;
}
[[nodiscard]] std::string GetDeviceVendor() const override {
return device.GetDriverName();
}
private:
void Report() const;