Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Backends/Kore-HL/kha/Image.hx
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,16 @@ class Image implements Canvas implements Resource {
return 0;
case RGBA64: // Target64BitFloat
return 1;
case A32: // Target32BitRedFloat
return 2;
case RGBA128: // Target128BitFloat
return 3;
case DEPTH16: // Target16BitDepth
return 4;
case L8: // Target8BitRed
return 5;
case A16: // Target16BitRedFloat
return 6;
default:
return 0;
}
Expand Down
Loading