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

Side by Side Diff: src/core/SkRemote_protocol.h

Issue 1774013002: Archive SkRemote-related code. I want to start fresh. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « src/core/SkRemote.cpp ('k') | tools/dm_flags.json » ('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 /*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #ifndef SkRemote_protocol_DEFINED
9 #define SkRemote_protocol_DEFINED
10
11 // ATTENTION! Changes to this file can break protocol compatibility. Tread car efully.
12
13 namespace SkRemote {
14
15 // It is safe to append to this enum without breaking protocol compatibility .
16 // Resorting, deleting, or inserting anywhere but the end will break compati bility.
17 enum class Type : uint8_t {
18 kMatrix,
19 kMisc,
20 kPath,
21 kStroke,
22 kTextBlob,
23 kPathEffect,
24 kShader,
25 kXfermode,
26 kMaskFilter,
27 kColorFilter,
28 kRasterizer,
29 kDrawLooper,
30 kImageFilter,
31 };
32
33 } // namespace SkRemote
34
35 #endif//SkRemote_protocol_DEFINED
OLDNEW
« no previous file with comments | « src/core/SkRemote.cpp ('k') | tools/dm_flags.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698