Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(335)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: sky/compositor/layer_client.h
Issue
740923002
:
Add a simple compositor for Sky (Closed)
Base URL: git@github.com:domokit/mojo.git@master
Patch Set: git cl format
Created 6 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.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
examples/BUILD.gn
examples/ganesh_app/texture_uploader.cc
examples/sky_compositor_app/BUILD.gn
examples/sky_compositor_app/sky_compositor_app.cc
mojo/converters/geometry/geometry_type_converters.h
mojo/converters/geometry/geometry_type_converters.cc
sky/compositor/BUILD.gn
sky/compositor/layer.h
sky/compositor/layer.cc
sky/compositor/layer_client.h
sky/compositor/layer_client.cc
sky/compositor/layer_host.h
sky/compositor/layer_host.cc
sky/compositor/layer_host_client.h
sky/compositor/layer_host_client.cc
sky/compositor/resource_manager.h
sky/compositor/resource_manager.cc
sky/compositor/surface_allocator.h
sky/compositor/surface_allocator.cc
sky/compositor/surface_holder.h
sky/compositor/surface_holder.cc
View unified diff
|
Download patch
« sky/compositor/layer.h
('K') |
« sky/compositor/layer.cc
('k') |
sky/compositor/layer_client.cc »
('j') |
sky/compositor/layer_client.cc »
('J')
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
// Copyright 2014 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
#ifndef SKY_COMPOSITOR_LAYER_CLIENT_H_
6
#define SKY_COMPOSITOR_LAYER_CLIENT_H_
7
8
class SkCanvas;
9
10
namespace gfx {
11
class Rect;
12
}
13
14
namespace sky {
15
16
class LayerClient {
17
public:
18
virtual void PaintContents(SkCanvas* canvas, const gfx::Rect& clip) = 0;
19
20
protected:
21
virtual ~LayerClient();
22
};
23
24
} // namespace sky
25
26
#endif // SKY_COMPOSITOR_LAYER_CLIENT_H_
OLD
NEW
« sky/compositor/layer.h
('K') |
« sky/compositor/layer.cc
('k') |
sky/compositor/layer_client.cc »
('j') |
sky/compositor/layer_client.cc »
('J')
Issue 740923002: Add a simple compositor for Sky (Closed)
Created 6 years, 1 month ago by abarth-chromium
Modified 6 years ago
Reviewers: eseidel, jamesr, ojan, rafaelw
Base URL: git@github.com:domokit/mojo.git@master
Comments: 22
This is Rietveld
408576698