Difference between revisions of "PixelFormat"

m
m
Line 198: Line 198:
 
Unlike regular color formats, these stay compressed in RAM and VRAM. This is good for saving memory space as well as improving performance, since the graphics card will be able to keep more of the image's pixels in its fast-access cache when drawing it.
 
Unlike regular color formats, these stay compressed in RAM and VRAM. This is good for saving memory space as well as improving performance, since the graphics card will be able to keep more of the image's pixels in its fast-access cache when drawing it.
  
=== Constants ===
+
=== Constants (desktop GPUs) ===
 
{| class="wikitable"
 
{| class="wikitable"
 
! Name
 
! Name
Line 245: Line 245:
 
|2
 
|2
 
|8
 
|8
|[1, 1]
+
|[-1, 1]
 
|Less precision than BC5 but allows negative numbers. Often used for normal maps on desktop systems.
 
|Less precision than BC5 but allows negative numbers. Often used for normal maps on desktop systems.
 
|-
 
|-
Line 265: Line 265:
 
|[0, 1]
 
|[0, 1]
 
|Very good at representing opaque or transparent images, but requires a DX11 / OpenGL 4-capable GPU.
 
|Very good at representing opaque or transparent images, but requires a DX11 / OpenGL 4-capable GPU.
 +
|}
 +
 +
=== Constants (mobile GPUs) ===
 +
{| class="wikitable"
 +
! Name
 +
! Components
 +
! Bits per pixel
 +
! Range
 +
! Note(s)
 +
|-
 +
|ETC1
 +
|3
 +
|4
 +
|[0, 1]
 +
|Suitable for fully opaque images on older Android devices.
 +
|-
 +
|ETC2rgb
 +
|3
 +
|4
 +
|[0, 1]
 +
|Suitable for fully opaque images on newer mobile devices
 +
|-
 +
|ETC2rgba
 +
|4
 +
|8
 +
|[0, 1]
 +
|Recommended for images with varying opacity on newer mobile devices.
 +
|-
 +
|ETC2rgba1
 +
|4
 +
|4
 +
|[0, 1]
 +
|RGBA variant of the ETC2 format where pixels are either fully transparent or fully opaque.
 +
|-
 +
|EACr
 +
|1
 +
|4
 +
|[0, 1]
 +
|Stores just the red channel.
 +
|-
 +
|EACrs
 +
|1
 +
|4
 +
|[-1, 1]
 +
|Less precision than EACr but allows negative numbers.
 +
|-
 +
|EACrg
 +
|2
 +
|8
 +
|[0, 1]
 +
|Stores red and green channels.
 +
|-
 +
|EACrgs
 +
|2
 +
|8
 +
|[-1, 1]
 +
|Less precision than EACrg but allows negative numbers.
 +
|-
 +
|PVR1rgb2
 +
|3
 +
|2
 +
|[0, 1]
 +
|Images using this format must be square and power-of-two sized.
 +
|-
 +
|PVR1rgb4
 +
|3
 +
|4
 +
|[0, 1]
 +
|Images using this format must be square and power-of-two sized.
 +
|-
 +
|PVR1rgba2
 +
|4
 +
|2
 +
|[0, 1]
 +
|Images using this format must be square and power-of-two sized.
 +
|-
 +
|PVR1rgba4
 +
|4
 +
|4
 +
|[0, 1]
 +
|Images using this format must be square and power-of-two sized.
 +
|-
 +
|ASTC4x4
 +
|4
 +
|8
 +
|[0, 1]
 +
|
 +
|-
 +
|ASTC5x4
 +
|4
 +
|6.4
 +
|[0, 1]
 +
|
 +
|-
 +
|ASTC5x5
 +
|4
 +
|5.12
 +
|[0, 1]
 +
|
 +
|-
 +
|ASTC6x5
 +
|4
 +
|4.27
 +
|[0, 1]
 +
|
 +
|-
 +
|ASTC6x6
 +
|4
 +
|3.56
 +
|[0, 1]
 +
|
 +
|-
 +
|ASTC8x5
 +
|4
 +
|3.2
 +
|[0, 1]
 +
|
 +
|-
 +
|ASTC8x6
 +
|4
 +
|2.67
 +
|[0, 1]
 +
|
 +
|-
 +
|ASTC8x8
 +
|4
 +
|2
 +
|[0, 1]
 +
|
 +
|-
 +
|ASTC10x5
 +
|4
 +
|2.56
 +
|[0, 1]
 +
|
 +
|-
 +
|ASTC10x6
 +
|4
 +
|2.13
 +
|[0, 1]
 +
|
 +
|-
 +
|ASTC10x8
 +
|4
 +
|1.6
 +
|[0, 1]
 +
|
 +
|-
 +
|ASTC10x10
 +
|4
 +
|1.28
 +
|[0, 1]
 +
|
 +
|-
 +
|ASTC12x10
 +
|4
 +
|1.07
 +
|[0, 1]
 +
|
 +
|-
 +
|ASTC12x12
 +
|4
 +
|0.89
 +
|[0, 1]
 +
|
 
|}
 
|}
  

Revision as of 00:35, 5 September 2018

Available since LÖVE 11.0
This enum replaces CanvasFormat and CompressedImageFormat.

Pixel formats for Textures, ImageData, and CompressedImageData.

O.png This page is a work-in-progress.  


Normal color formats

Constants

Name Components Bits per pixel Range Usable with Canvases Usable with ImageData Note(s)
r8 1 8 [0, 1] Yes
rg8 2 16 [0, 1] Yes
rgba8 4 32 [0, 1] Yes Yes
srgba8 4 32 [0, 1] Yes gamma-correct version of rgba8.
rgba16 4 64 [0, 1] Yes
r16f 1 16 [-65504, +65504] Yes
rg16f 2 32 [-65504, +65504] Yes
rgba16f 4 64 [-65504, +65504] Yes Yes
r32f 1 32 [-infinity, +infinity] Yes
rg32f 2 64 [-infinity, +infinity] Yes
rgba32f 4 128 [-infinity, +infinity] Yes Yes
rgba4 4 16 [0, 1] Yes
rgb5a1 4 16 [0, 1] Yes
rgb565 3 16 [0, 1] Yes
rgb10a2 4 32 [0, 1] Yes
rg11b10f 3 32 [0, 65024] Yes

Depth / stencil formats

All depth and stencil pixel formats are only usable in Canvases.

They are non-readable by default, and Canvases with a depth/stencil format created with the readable flag can only access the depth values of their pixels in shaders (stencil values are not readable no matter what).

Constants

Name Bits per pixel Has depth Has stencil Note(s)
stencil8 8 Yes
depth16 16 Yes
depth24 24 Yes
depth32f 32 Yes
depth24stencil8 32 Yes Yes
depth32fstencil8 40 Yes Yes

Compressed formats

All compressed pixel formats are only usable in Images via CompressedImageData (compressed textures).

Unlike regular color formats, these stay compressed in RAM and VRAM. This is good for saving memory space as well as improving performance, since the graphics card will be able to keep more of the image's pixels in its fast-access cache when drawing it.

Constants (desktop GPUs)

Name Components Bits per pixel Range Note(s)
DXT1 3 4 [0, 1] Suitable for fully opaque images on desktop systems.
DXT3 4 8 [0, 1] Smooth variations in opacity do not mix well with this format. DXT1 or DXT5 is generally better in every situation.
DXT5 4 8 [0, 1] Recommended for images with varying opacity on desktop systems.
BC4 1 4 [0, 1] Also known as 3Dc+ or ATI1. Stores just the red channel.
BC4s 1 4 [-1, 1] Less precision than BC4 but allows negative numbers.
BC5 2 8 [0, 1] Also known as 3Dc or ATI2. Often used for normal maps on desktop systems.
BC5s 2 8 [-1, 1] Less precision than BC5 but allows negative numbers. Often used for normal maps on desktop systems.
BC6h 3 8 [0, +infinity] Stores half-precision floating point RGB data. Suitable for HDR images on desktop systems.
BC6hs 3 8 [-infinity, +infinity] Less precision than BC6h but allows negative numbers.
BC7 4 8 [0, 1] Very good at representing opaque or transparent images, but requires a DX11 / OpenGL 4-capable GPU.

Constants (mobile GPUs)

Name Components Bits per pixel Range Note(s)
ETC1 3 4 [0, 1] Suitable for fully opaque images on older Android devices.
ETC2rgb 3 4 [0, 1] Suitable for fully opaque images on newer mobile devices
ETC2rgba 4 8 [0, 1] Recommended for images with varying opacity on newer mobile devices.
ETC2rgba1 4 4 [0, 1] RGBA variant of the ETC2 format where pixels are either fully transparent or fully opaque.
EACr 1 4 [0, 1] Stores just the red channel.
EACrs 1 4 [-1, 1] Less precision than EACr but allows negative numbers.
EACrg 2 8 [0, 1] Stores red and green channels.
EACrgs 2 8 [-1, 1] Less precision than EACrg but allows negative numbers.
PVR1rgb2 3 2 [0, 1] Images using this format must be square and power-of-two sized.
PVR1rgb4 3 4 [0, 1] Images using this format must be square and power-of-two sized.
PVR1rgba2 4 2 [0, 1] Images using this format must be square and power-of-two sized.
PVR1rgba4 4 4 [0, 1] Images using this format must be square and power-of-two sized.
ASTC4x4 4 8 [0, 1]
ASTC5x4 4 6.4 [0, 1]
ASTC5x5 4 5.12 [0, 1]
ASTC6x5 4 4.27 [0, 1]
ASTC6x6 4 3.56 [0, 1]
ASTC8x5 4 3.2 [0, 1]
ASTC8x6 4 2.67 [0, 1]
ASTC8x8 4 2 [0, 1]
ASTC10x5 4 2.56 [0, 1]
ASTC10x6 4 2.13 [0, 1]
ASTC10x8 4 1.6 [0, 1]
ASTC10x10 4 1.28 [0, 1]
ASTC12x10 4 1.07 [0, 1]
ASTC12x12 4 0.89 [0, 1]

See Also

Other Languages