UNPKG
@kibeo/loaders.gl-textures
Version:
from-package (3.0.15)
latest (3.0.17)
3.0.17
3.0.16
3.0.15
Framework-independent loaders for compressed and super compressed (basis) textures
@kibeo/loaders.gl-textures
/
src
/
lib
/
encoders
/
encode-ktx.ts
8 lines
(6 loc)
•
133 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{read}
from
'ktx-parse'
;
export
function
encodeKTX
(
texture
) {
const
ktx =
read
(texture);
// post process
return
ktx; }