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

Unified Diff: samples/o3d-webgl-samples/pool.html

Issue 1748017: Fixed problem with some parameters being optimized away by the GLSL... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/o3d/
Patch Set: Created 10 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/o3d-webgl-samples/pool.html
===================================================================
--- samples/o3d-webgl-samples/pool.html (revision 46005)
+++ samples/o3d-webgl-samples/pool.html (working copy)
@@ -1011,6 +1011,14 @@
}
+function setOptionalParam(material, name, value) {
+ var param = material.getParam(name);
+ if (param) {
+ param.value = value;
+ }
+}
+
+
function initMaterials() {
g_materials = {
'solid':{},
@@ -1045,9 +1053,9 @@
var target = [0, 0, 0];
g_cameraInfo.getEyeAndTarget(eye, target);
- material.getParam('factor').value = 2 / g_tableWidth;
- material.getParam('lightWorldPosition').value = g_light;
- material.getParam('eyeWorldPosition').value = eye;
+ setOptionalParam(material, 'factor', 2 / g_tableWidth);
+ setOptionalParam(material, 'lightWorldPosition', g_light);
+ setOptionalParam(material, 'eyeWorldPosition', eye);
}
g_solidMaterial = g_materials['solid'];
@@ -1070,7 +1078,7 @@
var eye = [0, 0, 0];
var target = [0, 0, 0];
g_cameraInfo.getEyeAndTarget(eye, target);
- g_materials[name].getParam('eyeWorldPosition').value = eye;
+ setOptionalParam(g_materials[name], 'eyeWorldPosition', eye);
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698