All Projects → KhronosGroup → Gltf Ibl Sampler

KhronosGroup / Gltf Ibl Sampler

Licence: apache-2.0
Sampler to create the glTF sample environments

glTF IBL Sampler

Introduction

This project pre-filters an environment High Dynamic Range (HDR) panorama image and stores diffuse and specular parts in cube maps respectively. Considering different material characteristics, the specular part consists of several mip-map levels corresponding to different roughness values of the modeled material. The final basis compression into a KTX2 file ensures small file sizes while maintaining reasonable image quality.

Algorithm references:

Workflow

The individual transformations can be executed separately in the library, enabling the use of a cube map as input in future releases.

  • Environment HDR image → Cube Map
  • Cube Map → Filtered Cube Map
  • Filtered Cube Map → KTX2 Output File

This separation of shader passes ensures both, flexibility and extensibility. The pre-filtering will use the algorithms noted in the glTF Sample Environments repository.

Workflow

Building

The project provides a cmake file to generate respective build files.

Third Party Requirements:

CMake option IBLSAMPLER_EXPORT_SHADERS can be used to automatically copy the shader folder to the executable folder when generating the project files. By default, shaders will be loaded from their source location in lib/shaders.

The glTF-IBL-Sampler consists of two projects: lib (shared library) and cli (executable).

Usage

The CLI takes an environment HDR image as input. The filtered specular and diffuse cube maps can be stored as KTX1 or KTX2 (with basis compression).

  • -inputPath: path to panorama image (default) or cube map (if inputIsCubeMap flag ist set)
  • -specularOutput: output path for specular term of filtered cube map
  • -diffuseOutput: output path for diffuse term of filtered cube map
  • -sampleCount: number of samples used for filtering (default = 1024)
  • -mipLevelCount: number of mip levels of specular cube map
  • -cubeMapResolution: resolution of output cube map (default = 1024)
  • -targetFormat: specify output texture format (R8G8B8A8_UNORM, R16G16B16A16_SFLOAT, R32G32B32A32_SFLOAT)
  • -lodBias: level of detail bias applied to filtering (default = 1 )
  • -inputIsCubeMap: if set, a cube map in ktx1 format is expected at input path

Example

.\cli.exe -inputPath ..\cubemap_in.hdr -inputIsCubeMap -specularOutput ..\..\specular_out.ktx2 -diffuseOutput ..\diffuse_out.ktx2 -sampleCount 1024 -mipLevelCount 5 -cubeMapResolution 1024 -targetFormat R16G16B16A16_SFLOAT
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].