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

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

Issue 2493853002: cc/blimp: Proto Cleanup. (Closed)
Patch Set: Rebase Created 4 years, 1 month 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
« no previous file with comments | « cc/proto/region.proto ('k') | cc/proto/synced_property.proto » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 syntax = "proto2";
6
7 package cc.proto;
8
9 option optimize_for = LITE_RUNTIME;
10
11 message BufferToTextureTarget {
12 optional uint32 buffer_usage = 1;
13 optional uint32 buffer_format = 2;
14 optional uint32 texture_target = 3;
15 };
16
17 message RendererSettings {
18 optional bool allow_antialiasing = 1;
19 optional bool force_antialiasing = 2;
20 optional bool force_blending_with_shaders = 3;
21 optional bool partial_swap_enabled = 4;
22 optional bool finish_rendering_on_resize = 5;
23 optional bool should_clear_root_render_pass = 6;
24 optional bool disable_display_vsync = 7;
25 optional bool release_overlay_resources_after_gpu_query = 8;
26 optional double refresh_rate = 9;
27 optional uint32 highp_threshold_min = 10;
28 optional uint32 texture_id_allocation_chunk_size = 11;
29 optional bool use_gpu_memory_buffer_resources = 12;
30 optional uint32 preferred_tile_format = 13;
31 repeated BufferToTextureTarget buffer_to_texture_target = 14;
32 }
OLDNEW
« no previous file with comments | « cc/proto/region.proto ('k') | cc/proto/synced_property.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698