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

Unified Diff: samples/o3djs/effect.js

Issue 2803007: o3d-webgl: convolution shader and error texture. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: '' Created 10 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « samples/o3d-webgl/sampler.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/o3djs/effect.js
===================================================================
--- samples/o3djs/effect.js (revision 52210)
+++ samples/o3djs/effect.js (working copy)
@@ -617,16 +617,16 @@
var p = o3djs.effect;
var varyingDecls = p.BEGIN_OUT_STRUCT +
p.VARYING + p.FLOAT4 + ' ' +
- p.VERTEX_VARYING_PREFIX + 'position' +
+ p.VARYING_DECLARATION_PREFIX + 'position' +
p.semanticSuffix('POSITION') + ';\n' +
p.VARYING + p.FLOAT2 + ' ' +
- p.VERTEX_VARYING_PREFIX + 'texCoord' +
+ p.VARYING_DECLARATION_PREFIX + 'texCoord' +
p.semanticSuffix('TEXCOORD0') + ';\n' +
p.VARYING + p.FLOAT3 + ' ' +
- p.VERTEX_VARYING_PREFIX + 'normal' +
+ p.VARYING_DECLARATION_PREFIX + 'normal' +
p.semanticSuffix('TEXCOORD1') + ';\n' +
p.VARYING + p.FLOAT3 + ' ' +
- p.VERTEX_VARYING_PREFIX + 'worldPosition' +
+ p.VARYING_DECLARATION_PREFIX + 'worldPosition' +
p.semanticSuffix('TEXCOORD2') + ';\n' +
p.END_STRUCT;
« no previous file with comments | « samples/o3d-webgl/sampler.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698