Skip to content

Commit 4fb0e09

Browse files
committed
Fix cpu-render.html coordinate space
This should ensure that CPU/GPU diffs are actually useful, and not improperly shifted.
1 parent 1668e3c commit 4fb0e09

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

test/integration/cpu-render.html

+9-4
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,15 @@
5252
return { id, drawable };
5353
}).filter(Boolean);
5454
const color = new Uint8ClampedArray(3);
55-
for (let x = -239; x <= 240; x++) {
56-
for (let y = -180; y< 180; y++) {
57-
render.constructor.sampleColor3b([x, y], drawBits, color);
58-
const offset = (((179-y) * 480) + 239 + x) * 4
55+
const vec = [0, 0];
56+
for (let x = 0; x < 480; x++) {
57+
// leftmost pixel is -240, rightmost is 239
58+
vec[0] = x - 240;
59+
for (let y = 0; y < 360; y++) {
60+
// bottommost pixel is -179, topmost is 180
61+
vec[1] = 180 - y;
62+
render.constructor.sampleColor3b(vec, drawBits, color);
63+
const offset = ((y * 480) + x) * 4;
5964
cpuImageData.data.set(color, offset);
6065
}
6166
}

0 commit comments

Comments
 (0)