Use white backdrop when possible.

This commit is contained in:
Brendan Dahl 2013-03-29 13:26:25 -07:00
parent 04f6e17e11
commit ec311f303b
5 changed files with 32 additions and 12 deletions

View file

@ -384,11 +384,11 @@ var PDFPageProxy = (function PDFPageProxyClosure() {
var stats = this.stats;
stats.time('Rendering');
gfx.beginDrawing(viewport);
var operatorList = this.operatorList;
gfx.beginDrawing(viewport, operatorList.transparency);
var startIdx = 0;
var length = this.operatorList.fnArray.length;
var operatorList = this.operatorList;
var length = operatorList.fnArray.length;
var stepper = null;
if (PDFJS.pdfBug && 'StepperManager' in globalScope &&
globalScope['StepperManager'].enabled) {