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
4 changes: 4 additions & 0 deletions en/15_GLTF_KTX2_Migration.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,8 @@ Let's compare traditional image formats with KTX2:

== Migrating from tinyobjloader to tinygltf

For loading glTF models (instead of obj) we'll be using the open source link:https://github.com/syoyo/tinygltf[headery only C{pp} tiny glTF library].

=== Setting Up tinygltf

First, we need to include the tinygltf library instead of tinyobjloader:
Expand Down Expand Up @@ -261,6 +263,8 @@ For a complete application, you would typically process these additional feature

== Migrating from stb_image to KTX

For loading KTX files (instead of formats like png or jpeg) we'll be using the open source link:https://github.com/KhronosGroup/KTX-Software[KTX (Khronos Texture) Library and Tools].

=== Setting Up KTX

First, we need to include the KTX library:
Expand Down
Loading