Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Side by Side Diff: content/renderer/render_thread_impl.h

Issue 536283002: Disable low res tilings on desktop. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nolowres: compile Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #ifndef CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_THREAD_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 } 222 }
223 223
224 bool is_gpu_rasterization_forced() const { 224 bool is_gpu_rasterization_forced() const {
225 return is_gpu_rasterization_forced_; 225 return is_gpu_rasterization_forced_;
226 } 226 }
227 227
228 bool is_impl_side_painting_enabled() const { 228 bool is_impl_side_painting_enabled() const {
229 return is_impl_side_painting_enabled_; 229 return is_impl_side_painting_enabled_;
230 } 230 }
231 231
232 bool is_low_res_tiling_enabled() const { return is_low_res_tiling_enabled_; }
233
234 bool is_lcd_text_enabled() const { return is_lcd_text_enabled_; } 232 bool is_lcd_text_enabled() const { return is_lcd_text_enabled_; }
235 233
236 bool is_distance_field_text_enabled() const { 234 bool is_distance_field_text_enabled() const {
237 return is_distance_field_text_enabled_; 235 return is_distance_field_text_enabled_;
238 } 236 }
239 237
240 bool is_zero_copy_enabled() const { return is_zero_copy_enabled_; } 238 bool is_zero_copy_enabled() const { return is_zero_copy_enabled_; }
241 239
242 bool is_one_copy_enabled() const { return is_one_copy_enabled_; } 240 bool is_one_copy_enabled() const { return is_one_copy_enabled_; }
243 241
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
576 scoped_ptr<MemoryObserver> memory_observer_; 574 scoped_ptr<MemoryObserver> memory_observer_;
577 575
578 scoped_refptr<base::SingleThreadTaskRunner> 576 scoped_refptr<base::SingleThreadTaskRunner>
579 main_thread_compositor_task_runner_; 577 main_thread_compositor_task_runner_;
580 scoped_refptr<base::SingleThreadTaskRunner> main_thread_input_task_runner_; 578 scoped_refptr<base::SingleThreadTaskRunner> main_thread_input_task_runner_;
581 579
582 // Compositor settings 580 // Compositor settings
583 bool is_gpu_rasterization_enabled_; 581 bool is_gpu_rasterization_enabled_;
584 bool is_gpu_rasterization_forced_; 582 bool is_gpu_rasterization_forced_;
585 bool is_impl_side_painting_enabled_; 583 bool is_impl_side_painting_enabled_;
586 bool is_low_res_tiling_enabled_;
587 bool is_lcd_text_enabled_; 584 bool is_lcd_text_enabled_;
588 bool is_distance_field_text_enabled_; 585 bool is_distance_field_text_enabled_;
589 bool is_zero_copy_enabled_; 586 bool is_zero_copy_enabled_;
590 bool is_one_copy_enabled_; 587 bool is_one_copy_enabled_;
591 588
592 std::map<int, mojo::MessagePipeHandle> pending_render_frame_connects_; 589 std::map<int, mojo::MessagePipeHandle> pending_render_frame_connects_;
593 590
594 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); 591 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl);
595 }; 592 };
596 593
597 } // namespace content 594 } // namespace content
598 595
599 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ 596 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/gpu/render_widget_compositor.cc ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698