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.
2 parents 1d21b60 + 5dbf607 commit 55e05efCopy full SHA for 55e05ef
1 file changed
Backends/Kore-HL/kha/Image.hx
@@ -93,10 +93,16 @@ class Image implements Canvas implements Resource {
93
return 0;
94
case RGBA64: // Target64BitFloat
95
return 1;
96
+ case A32: // Target32BitRedFloat
97
+ return 2;
98
case RGBA128: // Target128BitFloat
99
return 3;
100
case DEPTH16: // Target16BitDepth
101
return 4;
102
+ case L8: // Target8BitRed
103
+ return 5;
104
+ case A16: // Target16BitRedFloat
105
+ return 6;
106
default:
107
108
}
0 commit comments