babylon.anaglyphPostProcess.js 797 B

12345678910111213141516171819
  1. var __extends = this.__extends || function (d, b) {
  2. for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
  3. function __() { this.constructor = d; }
  4. __.prototype = b.prototype;
  5. d.prototype = new __();
  6. };
  7. var BABYLON;
  8. (function (BABYLON) {
  9. var AnaglyphPostProcess = (function (_super) {
  10. __extends(AnaglyphPostProcess, _super);
  11. //ANY
  12. function AnaglyphPostProcess(name, ratio, camera, samplingMode, engine, reusable) {
  13. _super.call(this, name, "anaglyph", null, ["leftSampler"], ratio, camera, samplingMode, engine, reusable);
  14. }
  15. return AnaglyphPostProcess;
  16. })(BABYLON.PostProcess);
  17. BABYLON.AnaglyphPostProcess = AnaglyphPostProcess;
  18. })(BABYLON || (BABYLON = {}));
  19. //# sourceMappingURL=babylon.anaglyphPostProcess.js.map