Skip to content

Commit b6ca62f

Browse files
committed
Remove hard-coded flip for iPad videos
1 parent 6e80d57 commit b6ca62f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/spatialCapture/Shaders.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ varying vec4 pos;
227227
228228
void main() {
229229
// Sample the proper color for this pixel from the color image
230-
vec4 color = texture2D(map, vec2(1.0, 1.0) - vUv);
230+
vec4 color = texture2D(map, vUv);
231231
232232
gl_FragColor = vec4(color.rgb, 1.0);
233233
}`;

0 commit comments

Comments
 (0)