There were two updates submitted as Github pull requests: - one for 41.0.2272.118 - one for 42.0.2311.90, based on the first update. Submitted by: Timothy Vaccarelli <tmvfroid@gmail.com> (41.0.2272.118) Submitted by: Christoph Moench-Tegeder <cmt@burggraben.net> (42.0.2311.90) MFH: 2015Q2 Security: http://vuxml.freebsd.org/freebsd/b57f690e-ecc9-11e4-876c-00262d5ed8ee.html
15 lines
440 B
C++
15 lines
440 B
C++
--- gpu/config/gpu_util.cc.orig 2015-04-19 16:27:01.000000000 +0200
|
|
+++ gpu/config/gpu_util.cc 2015-04-19 16:27:30.000000000 +0200
|
|
@@ -54,10 +54,12 @@
|
|
}
|
|
|
|
void ApplyGpuDriverBugWorkarounds(base::CommandLine* command_line) {
|
|
+#ifndef __FreeBSD__
|
|
GPUInfo gpu_info;
|
|
CollectBasicGraphicsInfo(&gpu_info);
|
|
|
|
ApplyGpuDriverBugWorkarounds(gpu_info, command_line);
|
|
+#endif
|
|
}
|
|
|
|
void ApplyGpuDriverBugWorkarounds(const GPUInfo& gpu_info,
|