The iTwin.js Display System

The iTwin.js display system is responsible for producing and rendering graphics to enable visualization of the contents of an iTwin. Those contents can include iModels, reality models, IoT sensor data, map imagery, and other data sources. Applications can also provide their own graphics via Decorators and TiledGraphicsProviders.

The display system is divided into two subsystems:

  • The WebGL-based tile renderer running on the frontend, responsible for displaying the contents of Viewports; and
  • The native-code tile generator running on the backend, responsible for producing tiles in iMdl format from the contents of an iModel.

A caching layer may be introduced between the frontend and backend subsystems to supply previously-generated tiles; or the backend may maintain its own internal cache.

This documentation concerns itself primarily with the frontend portion of the display system; documentation for the backend tile generator is limited to an overview of the iModel tile format.

Features

Configuration

The renderer's responsibilities are divided between two objects:

WebGL

Because the renderer runs in a browser environment, it uses WebGL under the hood to communicate with graphics hardware. However, the WebGL context is not exposed for use by applications. Instead, abstractions like GraphicBuilder and RenderSystem provide higher-level APIs for working indirectly with WebGL resources.

The renderer supports an arbitrary number of Viewports, all sharing a single WebGL context to reduce duplication of resources like shaders, textures, and tiles. Viewports can be positioned freely relative to one another, with or without overlap.

The renderer will attempt to use WebGL 2, which provides more features and better performance than WebGL 1; but will fall back to WebGL 1 on devices that lack support for WebGL 2. At the time of writing, the Safari browser has finally received official support for WebGL 2 (in macOS Monterey and iOS 15), making WebGL 2 support nearly universal. Still, some advanced features of the renderer may be unsupported on some devices; consult the compatibility checker to determine which features may be unavailable on your device.

Major modern browsers are supported, including Firefox, Safari, and chromium-based browsers (Chrome, Electron, Brave, "new" Edge, etc). Optimal graphics performance is observed in chromium-based browsers. Internet Explorer and "old" Edge are not supported.

Last Updated: 12 February, 2024