diff options
Diffstat (limited to 'chrome/common/gpu_info.cc')
-rw-r--r-- | chrome/common/gpu_info.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/common/gpu_info.cc b/chrome/common/gpu_info.cc index 43aa189..b1add77 100644 --- a/chrome/common/gpu_info.cc +++ b/chrome/common/gpu_info.cc @@ -4,6 +4,11 @@ #include "chrome/common/gpu_info.h" +GPUInfo::GPUInfo() + : vendor_id_(0), device_id_(0), driver_version_(L""), + pixel_shader_version_(0), vertex_shader_version_(0) { +} + uint32 GPUInfo::vendor_id() const { return vendor_id_; } |