Skip to content

Commit

Permalink
Merge pull request #4919 from Tyriar/tyriar/noisy
Browse files Browse the repository at this point in the history
Remove tracing drawToCache call
  • Loading branch information
Tyriar committed Dec 19, 2023
2 parents 0904078 + 7c5ad6b commit 805823d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/browser/renderer/shared/TextureAtlas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import { IdleTaskQueue } from 'common/TaskQueue';
import { IColor } from 'common/Types';
import { AttributeData } from 'common/buffer/AttributeData';
import { Attributes, DEFAULT_COLOR, DEFAULT_EXT, UnderlineStyle } from 'common/buffer/Constants';
import { traceCall } from 'common/services/LogService';
import { IUnicodeService } from 'common/services/Services';

/**
Expand Down Expand Up @@ -424,7 +423,6 @@ export class TextureAtlas implements ITextureAtlas {
return this._config.colors.contrastCache;
}

@traceCall
private _drawToCache(codeOrChars: number | string, bg: number, fg: number, ext: number, restrictToCellHeight: boolean = false): IRasterizedGlyph {
const chars = typeof codeOrChars === 'number' ? String.fromCharCode(codeOrChars) : codeOrChars;

Expand Down

0 comments on commit 805823d

Please sign in to comment.