tree: 9f6cc9afbaf8560d81329f9f0e06f7068fd9c7b6 [path history] [tgz]
  1. encoder/
  2. gltf/
  3. ktx2_encode_test/
  4. texture_test/
  5. transcoder/
  6. video_test/
  7. .htaccess
  8. favicon.ico
  9. index.html
  10. README.md
  11. start_webserver.sh
  12. webserver_cross_origin.py
webgl/README.md

Table of Contents

WebGL Examples

Requires WebAssembly and WebGL support. The WebGL demos are hosted live here.

To build the encoder and transcoder WASM libraries using Emscripten, see the README.md files in the webgl/transcoder and webgl/encoder folders. The JavaScript API wrappers to the C/C++ library are located in webgl/transcoder/basis_wrappers.cpp. The JavaScript API is a thin wrapper layered above our C++ API (however not our C API).


KTX2 Compression, Transcoding, Display (ktx2_encode_test)

Live demo: `ktx2_encode_test/index.html'

This demo shows how to use the compressor and transcoder from JavaScript. To use it, select a .PNG file then hit the “Encode!” button. The compressor will dynamically generate a .ktx2 file in memory which will then be immediately transcoded and rendered as a quad with a WebGL pixel shader used to sample the texture using the GPU. Hit the “Download!” button to locally download the generated .ktx2 file. This sample allows the user to toggle on/off all GPU formats the local device supports and see the results in real-time.

This sample‘s UI exposes a large fraction of the C++ compression and transcoding API to the user. It runs on desktop and mobile browsers (but note the UI on mobile isn’t great).

To view the compressor‘s textual debug output, open your browser’s developer debug console (under Developer Tools in Chrome) and enable the Debug checkbox before hitting the “Encode!” button. WASM multithreading and WASM64 are optionally supported, and a browser supporting both are recommended.

Screenshot showing the encode_test demo


Texture Video Sample (video_test)

See this wiki page.


Simple Transcoding (texture_test)

Live demo: webgl/texture_test/index.html

Renders a single texture, using the transcoder (compiled to WASM with emscripten) to generate one of the following compressed texture formats:

  • ASTC 4x4 LDR or HDR
  • BC1 (no alpha)
  • BC3, BC4 or BC5
  • ETC1 (no alpha)
  • PVRTC 4bpp
  • BC6H, BC7

On browsers that don‘t support any compressed texture formats, there’s a low-quality fallback code path for opaque LDR textures, and a HDR half float or LDR 32bpp fallback code path for HDR textures.

Screenshot showing a basis texture rendered as a 2D image in a webpage.

Note: This sample doesn't support all ASTC/XUASTC LDR block sizes yet, just 4x4. See the “ktx2_encode_test” or “video_test” samples, which do.

glTF 3D Model

Live demo: gltf/index.html

Renders a glTF 3D model with .basis texture files, transcoded into one of the following compressed texture formats:

  • ASTC
    • Tested in Chrome on Android, Pixel 3 XL.
  • DTX (BC1/BC3)
    • Tested in Chrome (Linux and macOS) and Firefox (macOS).
  • ETC1
    • Tested in Chrome on Android, Pixel 3 XL.
  • PVRTC
    • Tested in Chrome and Safari on iOS iPhone 6 Plus.

The glTF model in this demo uses a hypothetical GOOGLE_texture_basis extension. That extension is defined for the sake of example only - the glTF format will officially embed Basis files within a KTX2 wrapper, through a new extension that is currently in development.

Screenshot showing a basis texture rendered as the base color texture for a 3D model in a webpage.

Testing and developing locally

You can locally host the files under the “webgl” folder. One way is to use Python to setup a local webserver in the ‘webgl’ directory:

cd webgl
python3 -m http.server 8000

Note: For WASM multithreading to be available and enabled (which is highly recommended for reasonable compression times), the server must be properly configured. See the webgl/start_webserver.sh and webgl/webserver_cross_origin.py example scripts.