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
(635)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: src/gpu/GrTextureToYUVPlanes.h
Issue
1513393002
:
Add ability to extract YUV planes from SkImage (Closed)
Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rename
Created 4 years, 10 months 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:
gm/imagetoyuvplanes.cpp
gm/yuvtorgbeffect.cpp
gyp/gpu.gypi
gyp/utils.gypi
include/core/SkImage.h
src/core/SkColorMatrixFilterRowMajor255.h
src/core/SkColorMatrixFilterRowMajor255.cpp
src/gpu/GrTextureToYUVPlanes.h
src/gpu/GrTextureToYUVPlanes.cpp
src/gpu/GrYUVProvider.cpp
src/gpu/SkGr.cpp
src/gpu/effects/GrYUVEffect.h
src/gpu/effects/GrYUVEffect.cpp
src/gpu/effects/GrYUVtoRGBEffect.h
src/gpu/effects/GrYUVtoRGBEffect.cpp
src/image/SkImage.cpp
src/image/SkImage_Gpu.cpp
src/utils/SkRGBAToYUV.h
src/utils/SkRGBAToYUV.cpp
View unified diff
|
Download patch
« gm/imagetoyuvplanes.cpp
('K') |
« src/core/SkColorMatrixFilterRowMajor255.cpp
('k') |
src/gpu/GrTextureToYUVPlanes.cpp »
('j') |
src/gpu/GrTextureToYUVPlanes.cpp »
('J')
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
/*
2
* Copyright 2016 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 GrTextureToYUVPlanes_DEFINED
9
#define GrTextureToYUVPlanes_DEFINED
10
11
#include "SkImageInfo.h"
12
#include "SkSize.h"
13
14
class GrTexture;
15
16
bool GrTextureToYUVPlanes(GrTexture* texture, const SkISize[3], void* const plan es[3],
17
const size_t rowBytes[3], SkYUVColorSpace);
18
19
#endif
OLD
NEW
« gm/imagetoyuvplanes.cpp
('K') |
« src/core/SkColorMatrixFilterRowMajor255.cpp
('k') |
src/gpu/GrTextureToYUVPlanes.cpp »
('j') |
src/gpu/GrTextureToYUVPlanes.cpp »
('J')
Issue 1513393002: Add ability to extract YUV planes from SkImage (Closed)
Created 5 years ago by bsalomon
Modified 4 years, 10 months ago
Reviewers: robertphillips, reed1
Base URL: https://skia.googlesource.com/skia.git@master
Comments: 45
This is Rietveld
408576698