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

Unified Diff: samples/o3d-webgl/client.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/base.js ('k') | samples/o3d-webgl/effect.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/o3d-webgl/client.js
===================================================================
--- samples/o3d-webgl/client.js (revision 52210)
+++ samples/o3d-webgl/client.js (working copy)
@@ -652,6 +652,31 @@
height: canvas.height};
o3d.State.createDefaultState_(gl).push_();
+ // Create the default error texture.
+ var defaultTexture = new o3d.Texture2D();
+ defaultTexture.gl = this.gl;
+ defaultTexture.init_(8, 8, o3d.Texture.ARGB8, 1, false);
+ var r = [1, 0, 0, 1];
+ var Y = [1, 1, 0, 1];
+ var error = [r, r, r, r, r, r, r, r,
+ r, r, Y, Y, Y, Y, r, r,
+ r, Y, r, r, r, Y, Y, r,
+ r, Y, r, r, Y, r, Y, r,
+ r, Y, r, Y, r, r, Y, r,
+ r, Y, Y, r, r, r, Y, r,
+ r, r, Y, Y, Y, Y, r, r,
+ r, r, r, r, r, r, r, r];
+ var pixels = [];
+ for (var i = 0; i < error.length; i++) {
+ for (var j = 0; j < 4; j++) {
+ pixels[i * 4 + j] = error[i][j];
+ }
+ }
+ defaultTexture.set(0, pixels);
+ defaultTexture.name = 'DefaultTexture';
+ this.fallback_error_texture_ = defaultTexture;
+ this.error_texture_ = defaultTexture;
+
return true;
};
@@ -917,7 +942,7 @@
*/
o3d.Client.prototype.setErrorTexture =
function(texture) {
- o3d.notImplemented();
+ this.error_texture_ = texture;
};
@@ -978,14 +1003,32 @@
function(error_callback) {
// Other code expects to not see a null error callback.
if (error_callback) {
- this.error_callback = error_callback;
+ this.error_callback = this.wrapErrorCallback_(error_callback);
} else {
- this.error_callback = function(string) {};
+ this.error_callback = function(string) {
+ this.last_error_ = string;
+ };
}
};
/**
+ * Wraps a callback function, saving the error string so that the
+ * lastError variable can access it.
+ *
+ * @param {function} error_callback User-defined error callback.
+ * @return {function} Wrapped error callback.
+ * @private
+ */
+o3d.Client.prototype.wrapErrorCallback_ = function(error_callback) {
+ return function(string) {
+ this.last_error_ = string;
+ error_callback(string);
+ }
+}
+
+
+/**
* Clears the Error callback
*
* NOTE: The client takes ownership of the ErrorCallback you
@@ -1102,7 +1145,6 @@
o3d.Client.prototype.renderer_init_status = 0;
-
/**
* Gets / Sets the cursor's shape.
*
@@ -1112,12 +1154,49 @@
/**
+ * The current error texture.
+ *
+ * @type {o3d.Texture}
+ * @private
+ */
+o3d.Client.prototype.error_texture_ = null;
+
+
+/**
+ * The fallback error texture. Should only be initialized once per client and
+ * is read-only.
+ *
+ * @type {!o3d.Texture}
+ * @private
+ */
+o3d.Client.prototype.fallback_error_texture_ = null;
+
+
+/**
* The last error reported by the plugin.
*
* @type {string}
+ * @private
*/
o3d.Client.prototype.last_error_ = '';
+o3d.Client.prototype.__defineGetter__('lastError',
+ function() {
+ return this.last_error_;
+ }
+);
+/**
+ * Returns true if missing textures, samplers or ParamSamplers should be
+ * reported by calling the error callback. We assume that if the user
+ * explicitly sets the error texture to null, then they want such errors to
+ * trigger the error callback.
+ *
+ * @return {boolean}
+ * @private
+ */
+o3d.Client.prototype.reportErrors_ = function() {
+ return (this.error_texture_ == null);
+}
/**
@@ -1146,7 +1225,7 @@
* Clears the error returned in lastError.
*/
o3d.Client.prototype.clearLastError = function () {
- o3d.notImplemented();
+ this.last_error_ = '';
};
@@ -1190,5 +1269,3 @@
* @type {Element}
*/
o3d.Client.prototype.canvas = null;
-
-
« no previous file with comments | « samples/o3d-webgl/base.js ('k') | samples/o3d-webgl/effect.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698