Skip to content

Commit

Permalink
Merge pull request #238139 from microsoft/tyriar/238138_wrap_support
Browse files Browse the repository at this point in the history
Render wrapped lines on GPU
Tyriar authored Jan 17, 2025
2 parents 34e23ed + e2207e5 commit e567381
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/vs/editor/browser/gpu/viewGpuContext.ts
Original file line number Diff line number Diff line change
@@ -163,7 +163,6 @@ export class ViewGpuContext extends Disposable {
if (
data.containsRTL ||
data.maxColumn > GpuRenderLimits.maxGpuCols ||
data.continuesWithWrappedLine ||
lineNumber >= GpuRenderLimits.maxGpuLines
) {
return false;
@@ -212,9 +211,6 @@ export class ViewGpuContext extends Disposable {
if (data.maxColumn > GpuRenderLimits.maxGpuCols) {
reasons.push('maxColumn > maxGpuCols');
}
if (data.continuesWithWrappedLine) {
reasons.push('continuesWithWrappedLine');
}
if (data.inlineDecorations.length > 0) {
let supported = true;
const problemTypes: InlineDecorationType[] = [];

0 comments on commit e567381

Please sign in to comment.