This commit is contained in:
sbarman 2011-07-07 11:47:49 -07:00
parent 39624e9173
commit f34308efd3

4
pdf.js
View File

@ -4646,11 +4646,11 @@ var SeparationCS = (function() {
} }
constructor.prototype = { constructor.prototype = {
getRgb: function tintcs_getRgb(color) { getRgb: function sepcs_getRgb(color) {
var tinted = this.tintFn.func(color); var tinted = this.tintFn.func(color);
return this.base.getRgb(tinted); return this.base.getRgb(tinted);
}, },
getRgbBuffer: function tintcs_getRgbBuffer(input) { getRgbBuffer: function sepcs_getRgbBuffer(input) {
var tintFn = this.tintFn; var tintFn = this.tintFn;
var base = this.base; var base = this.base;