We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74d9373 commit 4912f12Copy full SHA for 4912f12
api/init.lua
@@ -3389,6 +3389,10 @@ return {
3389
name = "rgba8",
3390
description = "Four 8-bit channels. 4 bytes per pixel."
3391
},
3392
+ {
3393
+ name = "bgra8",
3394
+ description = "Four 8-bit channels. 4 bytes per pixel."
3395
+ },
3396
{
3397
name = "r16",
3398
description = "One 16-bit channel. 2 bytes per pixel."
api/lovr/data/TextureFormat.lua
@@ -26,6 +26,10 @@ return {
26
name = 'rgba8',
27
description = 'Four 8-bit channels. 4 bytes per pixel.'
28
29
30
+ name = 'bgra8',
31
+ description = 'Four 8-bit channels. 4 bytes per pixel.'
32
33
34
name = 'r16',
35
description = 'One 16-bit channel. 2 bytes per pixel.'
0 commit comments