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
(107)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: native_client_sdk/src/examples/api/graphics_3d/fragment_shader_es2.frag
Issue
23838002
:
[NaCl SDK] Simplify graphics3d example. (Closed)
Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add stddef.h for offsetof
Created 7 years, 3 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:
native_client_sdk/src/examples/api/graphics_3d/example.dsc
native_client_sdk/src/examples/api/graphics_3d/example.js
native_client_sdk/src/examples/api/graphics_3d/fragment_shader_es2.frag
native_client_sdk/src/examples/api/graphics_3d/graphics_3d.cc
native_client_sdk/src/examples/api/graphics_3d/index.html
native_client_sdk/src/examples/api/graphics_3d/texture.cc
native_client_sdk/src/examples/api/graphics_3d/vertex_shader_es2.vert
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« no previous file with comments
|
« native_client_sdk/src/examples/api/graphics_3d/example.js
('k') |
native_client_sdk/src/examples/api/graphics_3d/graphics_3d.cc »
('j') |
native_client_sdk/src/examples/api/graphics_3d/graphics_3d.cc »
('J')
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
precision mediump float;
2
varying vec3 v_color;
3
varying vec2 v_texCoord;
4
uniform sampler2D s_texture;
5
void main()
6
{
7
gl_FragColor = texture2D( s_texture, vec2(v_texCoord.x,1.0 - v_texCoord. y) ) + vec4(v_color.x,v_color.y,v_color.z,1);
8
}
OLD
NEW
« no previous file with comments
|
« native_client_sdk/src/examples/api/graphics_3d/example.js
('k') |
native_client_sdk/src/examples/api/graphics_3d/graphics_3d.cc »
('j') |
native_client_sdk/src/examples/api/graphics_3d/graphics_3d.cc »
('J')
Issue 23838002: [NaCl SDK] Simplify graphics3d example. (Closed)
Created 7 years, 3 months ago by binji
Modified 7 years, 3 months ago
Reviewers: noelallen1, Sam Clegg
Base URL: svn://svn.chromium.org/chrome/trunk/src
Comments: 2
This is Rietveld
408576698