• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

difference between colour and texture depth

IKeelU

Member
In games we can choose between 16-bit and 32-bit colour depth, e.g. 800x600x16 or 800x600x32. Furthermore, we can also choose between 16-bit or 32-bit textures. Umm, what does the first option signify?
 
The first option (color depth) signifies how many different colors the computer can actually display. The second option (texture depth) tells you how many bpp the actual source files of the textures (can) have.
I don't think there's any point in selecting 32bpp textures when displaying them at less than 32bpp. On the other hand, I could imagine it could make sense to use 16bpp textures on a 32bpp display, since the texture colors are modified by the engine, and a 32bpp color depth will result in much more pleasing progressions.
 
Back
Top