@xterm/addon-webgl 0.19.0-beta.84 → 0.19.0-beta.86

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xterm/addon-webgl",
3
- "version": "0.19.0-beta.84",
3
+ "version": "0.19.0-beta.86",
4
4
  "author": {
5
5
  "name": "The xterm.js authors",
6
6
  "url": "https://xtermjs.org/"
@@ -24,7 +24,7 @@
24
24
  "start": "node ../../demo/start"
25
25
  },
26
26
  "peerDependencies": {
27
- "@xterm/xterm": "^5.6.0-beta.84"
27
+ "@xterm/xterm": "^5.6.0-beta.86"
28
28
  },
29
- "commit": "9e206415b891058a3db772fd070ea299325dc647"
29
+ "commit": "85992928a7458eeff55946d7deadc1265004baea"
30
30
  }
@@ -238,9 +238,9 @@ export class GlyphRenderer extends Disposable {
238
238
 
239
239
  // Get the glyph
240
240
  if (chars && chars.length > 1) {
241
- $glyph = this._atlas.getRasterizedGlyphCombinedChar(chars, bg, fg, ext, false);
241
+ $glyph = this._atlas.getRasterizedGlyphCombinedChar(chars, bg, fg, ext, false, this._terminal.element);
242
242
  } else {
243
- $glyph = this._atlas.getRasterizedGlyph(code, bg, fg, ext, false);
243
+ $glyph = this._atlas.getRasterizedGlyph(code, bg, fg, ext, false, this._terminal.element);
244
244
  }
245
245
 
246
246
  $leftCellPadding = Math.floor((this._dimensions.device.cell.width - this._dimensions.device.char.width) / 2);