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

Side by Side Diff: samples/o3d-webgl/param_object.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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « samples/o3d-webgl/param_array.js ('k') | samples/o3d-webgl/sampler.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2010, Google Inc. 2 * Copyright 2010, Google Inc.
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 o3d.ParamObject.prototype.createParam = 102 o3d.ParamObject.prototype.createParam =
103 function(param_name, param_type_name) { 103 function(param_name, param_type_name) {
104 if (this.params_[param_name]) 104 if (this.params_[param_name])
105 return null; 105 return null;
106 param_type_name = o3d.filterTypeName_(param_type_name); 106 param_type_name = o3d.filterTypeName_(param_type_name);
107 if (!o3d.global.o3d[param_type_name]) 107 if (!o3d.global.o3d[param_type_name])
108 throw ('Invalid param type name: ' + param_type_name); 108 throw ('Invalid param type name: ' + param_type_name);
109 var param = new o3d.global.o3d[param_type_name]; 109 var param = new o3d.global.o3d[param_type_name];
110 param.gl = this.gl; 110 param.gl = this.gl;
111 param.owner_ = this; 111 param.owner_ = this;
112 param.name = param_name;
112 this.params_[param_name] = param; 113 this.params_[param_name] = param;
113 return this.filterResult_(this.params_[param_name]); 114 return this.filterResult_(this.params_[param_name]);
114 }; 115 };
115 116
116 117
117 /** 118 /**
118 * Searches by name for a Param defined in the object. 119 * Searches by name for a Param defined in the object.
119 * 120 *
120 * @param {string} param_name Name to search for. 121 * @param {string} param_name Name to search for.
121 * @return {!o3d.Param} The Param with the given name, or null otherwise. 122 * @return {!o3d.Param} The Param with the given name, or null otherwise.
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 var param = this.getParam(o3dParamName); 241 var param = this.getParam(o3dParamName);
241 return param.value; 242 return param.value;
242 }); 243 });
243 constructor.prototype.__defineSetter__(fieldName, 244 constructor.prototype.__defineSetter__(fieldName,
244 function(v) { 245 function(v) {
245 var param = this.getParam(o3dParamName); 246 var param = this.getParam(o3dParamName);
246 param.value = v; 247 param.value = v;
247 }); 248 });
248 }; 249 };
249 250
OLDNEW
« no previous file with comments | « samples/o3d-webgl/param_array.js ('k') | samples/o3d-webgl/sampler.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698