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

Side by Side Diff: cc/proto/renderer_settings.proto

Issue 1379783002: Allow one-copy task tile worker pool to use compressed textures. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove needs_conversion, fix tile size unit test and move modulo 4 DCHECK (for tests) Created 5 years 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 syntax = "proto2"; 5 syntax = "proto2";
6 6
7 package cc.proto; 7 package cc.proto;
8 8
9 option optimize_for = LITE_RUNTIME; 9 option optimize_for = LITE_RUNTIME;
10 10
11 message RendererSettings { 11 message RendererSettings {
12 optional bool allow_antialiasing = 1; 12 optional bool allow_antialiasing = 1;
13 optional bool force_antialiasing = 2; 13 optional bool force_antialiasing = 2;
14 optional bool force_blending_with_shaders = 3; 14 optional bool force_blending_with_shaders = 3;
15 optional bool partial_swap_enabled = 4; 15 optional bool partial_swap_enabled = 4;
16 optional bool finish_rendering_on_resize = 5; 16 optional bool finish_rendering_on_resize = 5;
17 optional bool should_clear_root_render_pass = 6; 17 optional bool should_clear_root_render_pass = 6;
18 optional bool disable_display_vsync = 7; 18 optional bool disable_display_vsync = 7;
19 optional bool delay_releasing_overlay_resources = 8; 19 optional bool delay_releasing_overlay_resources = 8;
20 optional double refresh_rate = 9; 20 optional double refresh_rate = 9;
21 optional uint32 highp_threshold_min = 10; 21 optional uint32 highp_threshold_min = 10;
22 optional bool use_rgba_4444_textures = 11; 22 optional uint32 texture_id_allocation_chunk_size = 11;
23 optional uint32 texture_id_allocation_chunk_size = 12; 23 optional bool use_gpu_memory_buffer_resources = 12;
24 optional bool use_gpu_memory_buffer_resources = 13; 24 optional uint32 preferred_tile_format = 13;
25 } 25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698