* Added Eizo, thanks Jonas.

* Added comment to monitor_info::name retrieval via EDID1_MONITOR_NAME.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32040 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2009-07-31 22:22:28 +00:00
parent d7a16b238f
commit ca9e658bd9
2 changed files with 5 additions and 0 deletions

View File

@ -358,6 +358,9 @@ ScreenMode::GetMonitorInfo(monitor_info& info, float* _diagonalInches)
case 'EMA\0':
strcpy(info.vendor, "eMachines");
break;
case 'ENC\0':
strcpy(info.vendor, "Eizo");
break;
case 'FUS\0':
strcpy(info.vendor, "Fujitsu-Siemens");
break;

View File

@ -944,6 +944,8 @@ AccelerantHWInterface::GetMonitorInfo(monitor_info* info)
break;
case EDID1_MONITOR_NAME:
// There can be several of these; in this case we'll just
// overwrite the previous entries
strlcpy(info->name, monitor->data.monitor_name,
sizeof(info->name));
break;