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

Unified Diff: samples/o3d-webgl/sampler.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/param_object.js ('k') | samples/o3djs/effect.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/o3d-webgl/sampler.js
===================================================================
--- samples/o3d-webgl/sampler.js (revision 52210)
+++ samples/o3d-webgl/sampler.js (working copy)
@@ -250,24 +250,37 @@
/**
+ * A default Sampler that has no texture, thus uses the client's error texture.
+ *
+ * @type {!o3d.Sampler}
+ * @private
+ */
+o3d.Sampler.defaultSampler_ = new o3d.Sampler();
+o3d.Sampler.defaultSampler_.magFilter = o3d.Sampler.POINT;
+
+/**
* Binds the texture for this sampler and sets texParameters according to the
* states of the sampler.
*/
o3d.Sampler.prototype.bindAndSetParameters_ = function() {
+ var currentTexture = null;
if (this.texture) {
- var mip_filter = this.mipFilter;
- if (this.texture.levels == 1) {
- mip_filter = o3d.Sampler.NONE;
- }
-
- this.texture.bindAndSetParameters_(
- this.convertAddressMode_(this.addressModeU),
- this.convertAddressMode_(this.addressModeV),
- this.convertMinFilter_(this.minFilter, mip_filter),
- this.convertMagFilter_(this.magFilter));
+ currentTexture = this.texture;
+ } else if (!this.gl.client.reportErrors_()) {
+ currentTexture = this.gl.client.error_texture_;
} else {
- this.gl.client.error_callback("Sampler used with no texture set.");
- return;
+ currentTexture = this.gl.client.fallback_error_texture_;
+ this.gl.client.error_callback("Missing texture for sampler " + this.name);
}
+
+ var mip_filter = this.mipFilter;
+ if (currentTexture.levels == 1) {
+ mip_filter = o3d.Sampler.NONE;
+ }
+ currentTexture.bindAndSetParameters_(
+ this.convertAddressMode_(this.addressModeU),
+ this.convertAddressMode_(this.addressModeV),
+ this.convertMinFilter_(this.minFilter, mip_filter),
+ this.convertMagFilter_(this.magFilter));
}
« no previous file with comments | « samples/o3d-webgl/param_object.js ('k') | samples/o3djs/effect.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698