Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
73 lines
2.5 KiB
TypeScript
73 lines
2.5 KiB
TypeScript
/**
|
|
* Watches for devicePixelRatio changes (e.g. moving the window between monitors
|
|
* with different DPI, or changing the OS display scaling on Windows) and invokes
|
|
* a callback so the renderer can be repaired.
|
|
*
|
|
* The WebGL renderer caches rasterized glyphs in a texture atlas keyed to the
|
|
* device pixel ratio at creation time. When the ratio changes the cached glyphs
|
|
* are drawn at the wrong scale, producing the persistent "garbled / 花屏"
|
|
* corruption reported in issue #1049 that only goes away when a brand-new
|
|
* terminal is opened. xterm.js recommends calling `clearTextureAtlas()` on DPR
|
|
* change so glyphs re-rasterize at the new scale.
|
|
*
|
|
* `matchMedia('(resolution: Ndppx)')` only matches a single ratio, so after each
|
|
* change we must re-register the listener against the new ratio.
|
|
*/
|
|
export interface MediaQueryListLike {
|
|
addEventListener?: (type: "change", listener: () => void) => void;
|
|
removeEventListener?: (type: "change", listener: () => void) => void;
|
|
// Legacy API (older Safari / Electron) where addEventListener is unavailable.
|
|
addListener?: (listener: () => void) => void;
|
|
removeListener?: (listener: () => void) => void;
|
|
}
|
|
|
|
export interface WatchDevicePixelRatioOptions {
|
|
getDevicePixelRatio: () => number;
|
|
matchMedia: (query: string) => MediaQueryListLike;
|
|
onChange: () => void;
|
|
}
|
|
|
|
/**
|
|
* Start watching for devicePixelRatio changes. Returns a cleanup function that
|
|
* removes the active listener.
|
|
*/
|
|
export function watchDevicePixelRatio(
|
|
options: WatchDevicePixelRatioOptions,
|
|
): () => void {
|
|
const { getDevicePixelRatio, matchMedia, onChange } = options;
|
|
let current: { mql: MediaQueryListLike; listener: () => void } | null = null;
|
|
|
|
const detach = () => {
|
|
if (!current) return;
|
|
const { mql, listener } = current;
|
|
if (mql.removeEventListener) {
|
|
mql.removeEventListener("change", listener);
|
|
} else if (mql.removeListener) {
|
|
mql.removeListener(listener);
|
|
}
|
|
current = null;
|
|
};
|
|
|
|
const attach = () => {
|
|
const dpr = getDevicePixelRatio();
|
|
const mql = matchMedia(`(resolution: ${dpr}dppx)`);
|
|
const listener = () => {
|
|
// A media query only matches the ratio it was created with, so detach the
|
|
// stale listener and re-register against the new ratio before notifying.
|
|
detach();
|
|
attach();
|
|
onChange();
|
|
};
|
|
if (mql.addEventListener) {
|
|
mql.addEventListener("change", listener);
|
|
} else if (mql.addListener) {
|
|
mql.addListener(listener);
|
|
}
|
|
current = { mql, listener };
|
|
};
|
|
|
|
attach();
|
|
|
|
return detach;
|
|
}
|