remove filter

This commit is contained in:
HF 2022-09-19 02:50:15 +02:00
parent 94c04ba53a
commit 223e957f83

View File

@ -79,7 +79,6 @@ class ChunkRGB {
fromImage(img) {
this.ready = true;
const ctx = this.image.getContext('2d');
ctx.filter = 'contrast(1.5) brightness(0.5)';
ctx.drawImage(img, 0, 0);
}