Skip to content

Commit e567381

Browse files
authored
Merge pull request microsoft#238139 from microsoft/tyriar/238138_wrap_support
Render wrapped lines on GPU
2 parents 34e23ed + e2207e5 commit e567381

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/vs/editor/browser/gpu/viewGpuContext.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,6 @@ export class ViewGpuContext extends Disposable {
163163
if (
164164
data.containsRTL ||
165165
data.maxColumn > GpuRenderLimits.maxGpuCols ||
166-
data.continuesWithWrappedLine ||
167166
lineNumber >= GpuRenderLimits.maxGpuLines
168167
) {
169168
return false;
@@ -212,9 +211,6 @@ export class ViewGpuContext extends Disposable {
212211
if (data.maxColumn > GpuRenderLimits.maxGpuCols) {
213212
reasons.push('maxColumn > maxGpuCols');
214213
}
215-
if (data.continuesWithWrappedLine) {
216-
reasons.push('continuesWithWrappedLine');
217-
}
218214
if (data.inlineDecorations.length > 0) {
219215
let supported = true;
220216
const problemTypes: InlineDecorationType[] = [];

0 commit comments

Comments
 (0)