VRAM tips
From Unify Community Wiki
(Difference between revisions)
Isaiah Kelly (Talk | contribs) m (marked as stub) |
|||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | DXTC1 RGB | + | {{stub}} |
− | DXTC3 RGBA 1 Bpp | + | |
− | RGB 16bit 2 Bpp | + | {| cellpadding="2" cellspacing="0" border="1" |
− | RGB 24bit 4 Bpp | + | !Compression !! Memory consumption |
− | Alpha 8bit 1 Bpp | + | |- |
− | RGBA 16bit 2 Bpp | + | | DXTC1 RGB || .5 Bpp (bytes/pixel) |
− | RGBA 32bit 4 Bpp | + | |- |
+ | | DXTC3 RGBA || 1 Bpp | ||
+ | |- | ||
+ | | RGB 16bit || 2 Bpp | ||
+ | |- | ||
+ | | RGB 24bit || 4 Bpp | ||
+ | |- | ||
+ | | Alpha 8bit || 1 Bpp | ||
+ | |- | ||
+ | | RGBA 16bit || 2 Bpp | ||
+ | |- | ||
+ | |RGBA 32bit || 4 Bpp | ||
+ | |} | ||
+ | |||
+ | To figure out total texture size: | ||
+ | width * height * bpp | ||
+ | |||
+ | Add 33% if you have Mipmaps. |
Latest revision as of 20:46, 8 December 2018
You can help UnifyWiki by expanding it.
Compression | Memory consumption |
---|---|
DXTC1 RGB | .5 Bpp (bytes/pixel) |
DXTC3 RGBA | 1 Bpp |
RGB 16bit | 2 Bpp |
RGB 24bit | 4 Bpp |
Alpha 8bit | 1 Bpp |
RGBA 16bit | 2 Bpp |
RGBA 32bit | 4 Bpp |
To figure out total texture size: width * height * bpp
Add 33% if you have Mipmaps.