OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/browser/renderer_host/compositor_impl_android.h" | 5 #include "content/browser/renderer_host/compositor_impl_android.h" |
6 | 6 |
7 #include <android/bitmap.h> | 7 #include <android/bitmap.h> |
8 #include <android/native_window_jni.h> | 8 #include <android/native_window_jni.h> |
9 | 9 |
10 #include "base/android/jni_android.h" | 10 #include "base/android/jni_android.h" |
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
425 void CompositorImpl::CreateLayerTreeHost() { | 425 void CompositorImpl::CreateLayerTreeHost() { |
426 DCHECK(!host_); | 426 DCHECK(!host_); |
427 DCHECK(!WillCompositeThisFrame()); | 427 DCHECK(!WillCompositeThisFrame()); |
428 needs_composite_ = false; | 428 needs_composite_ = false; |
429 pending_swapbuffers_ = 0; | 429 pending_swapbuffers_ = 0; |
430 cc::LayerTreeSettings settings; | 430 cc::LayerTreeSettings settings; |
431 settings.renderer_settings.refresh_rate = 60.0; | 431 settings.renderer_settings.refresh_rate = 60.0; |
432 settings.renderer_settings.allow_antialiasing = false; | 432 settings.renderer_settings.allow_antialiasing = false; |
433 settings.renderer_settings.highp_threshold_min = 2048; | 433 settings.renderer_settings.highp_threshold_min = 2048; |
434 settings.use_zero_copy = true; | 434 settings.use_zero_copy = true; |
435 settings.use_one_copy = false; | |
436 | 435 |
437 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); | 436 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); |
438 settings.initial_debug_state.SetRecordRenderingStats( | 437 settings.initial_debug_state.SetRecordRenderingStats( |
439 command_line->HasSwitch(cc::switches::kEnableGpuBenchmarking)); | 438 command_line->HasSwitch(cc::switches::kEnableGpuBenchmarking)); |
440 settings.initial_debug_state.show_fps_counter = | 439 settings.initial_debug_state.show_fps_counter = |
441 command_line->HasSwitch(cc::switches::kUIShowFPSCounter); | 440 command_line->HasSwitch(cc::switches::kUIShowFPSCounter); |
442 // TODO(enne): Update this this compositor to use the scheduler. | 441 // TODO(enne): Update this this compositor to use the scheduler. |
443 settings.single_thread_proxy_scheduler = false; | 442 settings.single_thread_proxy_scheduler = false; |
444 | 443 |
445 if (command_line->HasSwitch( | 444 if (command_line->HasSwitch( |
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
763 | 762 |
764 void CompositorImpl::SetNeedsAnimate() { | 763 void CompositorImpl::SetNeedsAnimate() { |
765 needs_animate_ = true; | 764 needs_animate_ = true; |
766 if (!host_) | 765 if (!host_) |
767 return; | 766 return; |
768 | 767 |
769 host_->SetNeedsAnimate(); | 768 host_->SetNeedsAnimate(); |
770 } | 769 } |
771 | 770 |
772 } // namespace content | 771 } // namespace content |
OLD | NEW |