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
(306)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: include/gpu/GrTypesPriv.h
Issue
12462008
:
Add GrEllipseEdgeEffect (Closed)
Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: rebase again
Created 7 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.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
gyp/gpu.gypi
include/core/SkTArray.h
include/gpu/GrBackendEffectFactory.h
include/gpu/GrEffect.h
include/gpu/GrEffectStage.h
include/gpu/GrTBackendEffectFactory.h
include/gpu/GrTypesPriv.h
src/gpu/GrContext.cpp
src/gpu/GrDrawState.h
src/gpu/GrDrawState.cpp
src/gpu/GrDrawTarget.cpp
src/gpu/GrEffect.cpp
src/gpu/GrSWMaskHelper.cpp
src/gpu/GrTextContext.cpp
src/gpu/effects/GrEllipseEdgeEffect.h
src/gpu/effects/GrEllipseEdgeEffect.cpp
src/gpu/gl/GrGLEffect.h
src/gpu/gl/GrGLEffect.cpp
src/gpu/gl/GrGLProgram.cpp
src/gpu/gl/GrGLSL.h
src/gpu/gl/GrGLShaderBuilder.h
src/gpu/gl/GrGLShaderBuilder.cpp
tests/GLProgramsTest.cpp
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« no previous file with comments
|
« include/gpu/GrTBackendEffectFactory.h
('k') |
src/gpu/GrContext.cpp »
('j') |
no next file with comments »
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
/*
2
* Copyright 2013 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 GrTypesPriv_DEFINED
9
#define GrTypesPriv_DEFINED
10
11
/**
12
* Types of shader-language-specific boxed variables we can create.
13
* (Currently only GrGLShaderVars, but should be applicable to other shader
14
* languages.)
15
*/
16
enum GrSLType {
17
kVoid_GrSLType,
18
kFloat_GrSLType,
19
kVec2f_GrSLType,
20
kVec3f_GrSLType,
21
kVec4f_GrSLType,
22
kMat33f_GrSLType,
23
kMat44f_GrSLType,
24
kSampler2D_GrSLType
25
};
26
27
#endif
OLD
NEW
« no previous file with comments
|
« include/gpu/GrTBackendEffectFactory.h
('k') |
src/gpu/GrContext.cpp »
('j') |
no next file with comments »
Issue 12462008: Add GrEllipseEdgeEffect (Closed)
Created 7 years, 9 months ago by jvanverth1
Modified 7 years, 9 months ago
Reviewers: bsalomon, robertphillips
Base URL: http://skia.googlecode.com/svn/trunk/
Comments: 44
This is Rietveld
408576698