HiDPI support
the main canvas is now DPI-aware; it should no longer be pixelated on 4k this couldn't be done for the brush preview, so it's just kinda pixelated also fixed the horrendous scrollbar that could appear on HiDPI for some reason
This commit is contained in:
parent
273eaa6ce3
commit
39886291cf
2 changed files with 39 additions and 6 deletions
|
@ -34,16 +34,25 @@ class CanvasRenderer extends HTMLElement {
|
||||||
// Rendering
|
// Rendering
|
||||||
|
|
||||||
#updateSize() {
|
#updateSize() {
|
||||||
this.canvas.width = this.clientWidth;
|
let { width, height } = this.getBoundingClientRect();
|
||||||
this.canvas.height = this.clientHeight;
|
this.width = width;
|
||||||
|
this.height = height;
|
||||||
|
|
||||||
|
// To properly handle DPI scaling, we want the canvas's layout size to be equal to that of
|
||||||
|
// its parent container,
|
||||||
|
this.style.width = `${width}px`;
|
||||||
|
this.style.height = `${height}px`;
|
||||||
|
this.canvas.width = width * window.devicePixelRatio;
|
||||||
|
this.canvas.height = height * window.devicePixelRatio;
|
||||||
|
|
||||||
// Rerender immediately after the canvas is resized, as its contents have now been invalidated.
|
// Rerender immediately after the canvas is resized, as its contents have now been invalidated.
|
||||||
this.#render();
|
this.#render();
|
||||||
}
|
}
|
||||||
|
|
||||||
getWindowSize() {
|
getWindowSize() {
|
||||||
return {
|
return {
|
||||||
width: this.clientWidth,
|
width: this.width,
|
||||||
height: this.clientHeight,
|
height: this.height,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -250,10 +259,15 @@ class CanvasRenderer extends HTMLElement {
|
||||||
|
|
||||||
this.gl.useProgram(this.renderChunksProgram.id);
|
this.gl.useProgram(this.renderChunksProgram.id);
|
||||||
|
|
||||||
let translationX = this.canvas.width / 2 - this.viewport.panX * this.viewport.zoom;
|
let translationX = this.width / 2 - this.viewport.panX * this.viewport.zoom;
|
||||||
let translationY = this.canvas.height / 2 - this.viewport.panY * this.viewport.zoom;
|
let translationY = this.height / 2 - this.viewport.panY * this.viewport.zoom;
|
||||||
let scale = this.viewport.zoom;
|
let scale = this.viewport.zoom;
|
||||||
|
|
||||||
|
let dpiScale = window.devicePixelRatio;
|
||||||
|
translationX *= dpiScale;
|
||||||
|
translationY *= dpiScale;
|
||||||
|
scale *= dpiScale;
|
||||||
|
|
||||||
this.gl.uniformMatrix4fv(
|
this.gl.uniformMatrix4fv(
|
||||||
this.renderChunksProgram.u_projection,
|
this.renderChunksProgram.u_projection,
|
||||||
false,
|
false,
|
||||||
|
|
|
@ -3,6 +3,16 @@
|
||||||
|
|
||||||
/* Main container layout */
|
/* Main container layout */
|
||||||
|
|
||||||
|
html {
|
||||||
|
/* Don't want any scrollbars to ruin our layout.
|
||||||
|
Technically this will cause jank in case the view _does_ scroll somehow, but that's less of
|
||||||
|
an annoying bug than browser layout triggering scrollbars and ruining the page size...
|
||||||
|
I'm not sure what caused the browser to show scrollbars when I switched my displays to 4k,
|
||||||
|
but it did, and I didn't like it.
|
||||||
|
CSS remains a mystery, as it always has. */
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
|
@ -148,6 +158,11 @@ rkgk-canvas-renderer {
|
||||||
|
|
||||||
& > canvas {
|
& > canvas {
|
||||||
display: block;
|
display: block;
|
||||||
|
|
||||||
|
/* Fill the parent, don't overflow it.
|
||||||
|
This is important because under HiDPI, the canvas's pixel size is larger than the layout size. */
|
||||||
|
max-width: 100%;
|
||||||
|
max-height: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -360,6 +375,10 @@ rkgk-brush-preview {
|
||||||
|
|
||||||
& > canvas {
|
& > canvas {
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
|
||||||
|
/* The brush preview doesn't scale with DPI as easily as the canvas renderer does,
|
||||||
|
so instead we pixelate it. */
|
||||||
|
image-rendering: pixelated;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.error {
|
&.error {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue