Ошибка припсання коду 75 строкі і тому в вас визникає ошибка відправляю на переробку самого коду #143784
Replies: 1 comment
-
Hi @StanislavUhimenko , thanks for participating! We take our Code of Conduct very seriously and want to help ensure that everyone has a good experience free of antagonism and harassment. Unfortunately, we don’t currently have moderators for languages other than English. Until that changes, we need to ask that everyone use English here in the GitHub Community when posting. We’ll be closing and locking any posts in languages other than English for now, including this one. Please note: You are more likely to get a useful response if you are posting your question in the applicable category. The Accessibility category is a place for our community to discuss and provide feedback on the digital accessibility of GitHub products. Digital accessibility means that GitHub tools, and technologies, are designed and developed so that people with disabilities can use them. |
Beta Was this translation helpful? Give feedback.
-
Select Topic Area
Question
GitHub Feature Area
Actions
Body
/*---------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------/
import { getActiveWindow } from '../../../base/browser/dom.js';
import { BugIndicatingError } from '../../../base/common/errors.js';
import { Disposable } from '../../../base/common/lifecycle.js';
import { EditorOption } from '../../common/config/editorOptions.js';
import { CursorColumns } from '../../common/core/cursorColumns.js';
import type { IViewLineTokens } from '../../common/tokens/lineTokens.js';
import type { ViewportData } from '../../common/viewLayout/viewLinesViewportData.js';
import type { ViewLineRenderingData } from '../../common/viewModel.js';
import type { ViewContext } from '../../common/viewModel/viewContext.js';
import type { ViewLineOptions } from '../viewParts/viewLines/viewLineOptions.js';
import type { ITextureAtlasPageGlyph } from './atlas/atlas.js';
import type { TextureAtlas } from './atlas/textureAtlas.js';
import { fullFileRenderStrategyWgsl } from './fullFileRenderStrategy.wgsl.js';
import { BindingId, type IGpuRenderStrategy } from './gpu.js';
import { GPULifecycle } from './gpuDisposable.js';
import { quadVertices } from './gpuUtils.js';
import { GlyphRasterizer } from './raster/glyphRasterizer.js';
import { ViewGpuContext } from './viewGpuContext.js';
const enum Constants {
IndicesPerCell = 6,
}
const enum CellBufferInfo {
FloatsPerEntry = 6,
BytesPerEntry = CellBufferInfo.FloatsPerEntry * 4,
Offset_X = 0,
Offset_Y = 1,
Offset_Unused1 = 2,
Offset_Unused2 = 3,
GlyphIndex = 4,
TextureIndex = 5,
}
export class FullFileRenderStrategy extends Disposable implements IGpuRenderStrategy {
}
Beta Was this translation helpful? Give feedback.
All reactions