You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 11, 2022. It is now read-only.
When textures are loaded, they are stored in memory vertically flipped. TextureLoader explicitly flips the images. To resolve this issue, not only TextureLoader has to be modified, but also most of the UV maps in the game (primitives and entity models).
This is a problem both because the UV maps are counter-intuitive to experienced developers and because most libraries, specifically, GLFW, expect a certain memory layout for image data.
The text was updated successfully, but these errors were encountered:
When textures are loaded, they are stored in memory vertically flipped.
TextureLoader
explicitly flips the images. To resolve this issue, not onlyTextureLoader
has to be modified, but also most of the UV maps in the game (primitives and entity models).This is a problem both because the UV maps are counter-intuitive to experienced developers and because most libraries, specifically, GLFW, expect a certain memory layout for image data.
The text was updated successfully, but these errors were encountered: