Chromium Code Reviews| Index: gpu/command_buffer/service/gpu_tracer.cc |
| diff --git a/gpu/command_buffer/service/gpu_tracer.cc b/gpu/command_buffer/service/gpu_tracer.cc |
| index 364159ba4ccd02842b84ab5ad503d80a4d45fda8..3549fbac8bf53ab3861fb30c59c93e43fa9160ad 100644 |
| --- a/gpu/command_buffer/service/gpu_tracer.cc |
| +++ b/gpu/command_buffer/service/gpu_tracer.cc |
| @@ -180,7 +180,7 @@ bool GPUTrace::IsAvailable() { |
| return false; |
| GLint done = 0; |
| - glGetQueryObjectiv(queries_[1], GL_QUERY_RESULT_AVAILABLE, &done); |
| + glGetQueryObjectivARB(queries_[1], GL_QUERY_RESULT_AVAILABLE, &done); |
|
no sievers
2015/01/21 23:24:45
So ignoring everything we do in other places (like
|
| return !!done; |
| } |