Draft Khronos extensions are not ratified yet.
glTF extensions extend the base glTF model format. Extensions can introduce new properties (including properties that reference external data, and the extension can define the format of those data), new parameter semantics, reserved IDs, and new container formats. Extensions are written against a specific version of glTF and may be promoted to core glTF in a later glTF version.
All glTF object properties (see glTFProperty.schema.json) have an optional extensions
object property that can contain new extension-specific properties. This allows extensions to extend any part of glTF, including geometry, materials, animations, etc. Extensions can also introduce new parameter semantics, reserved IDs, and new formats containing glTF.
Extensions can’t remove existing glTF properties or redefine existing glTF properties to mean something else.
Examples include:
KHR_binary_glTF
introduces a bufferView
property for shaders, e.g.,
{
"shaders": {
"a_shader": {
"extensions": {
"KHR_binary_glTF": {
"bufferView": "a_shader_bufferView"
}
}
}
}
}
CESIUM_RTC
introduces the CESIUM_RTC_MODELVIEW
semantic.KHR_binary_glTF
introduces an explicitly named buffer
called binary_glTF
.KHR_binary_glTF
introduces a binary format that contains the glTF JSON and geometry, textures, etc.All extensions used in a model are listed as strings in the top-level extensionsUsed
array; all required extensions are listed as strings in the top-level extensionsRequired
array, e.g.,
{
"extensionsUsed": [
"KHR_binary_glTF", "VENDOR_physics"
],
"extensionsRequired": [
"KHR_binary_glTF"
]
}
This allows an engine to quickly determine if it supports the extensions needed to render the model without inspecting the the extensions
property of all objects.
To create a new extension, use the extension template and open a pull request into this repo. Make sure to add the extension to the glTF Extension Registry (top of this file).
If lack of extension support prevents proper geometry loading, extension specification must state that (and such extension must be mentioned in extensionsRequired
top-level glTF property).
Extensions start as a vendor extension, then can become a multi-vendor extensions if there are multiple implementations, and can become a ratified Khronos extension (the multi-vendor extension is an optional step).
A list of vendor prefixes is maintained in Prefixes.md. Any vendor, not just Khronos members, can request an extension prefix by submitting an issue on GitHub requesting one. Requests should include:
extension
GitHub label.Vendor extension names start with the prefix followed by an underscore, e.g., CESIUM_
.
Vendor extensions are not covered by the Khronos IP framework.
When an extension is implemented by more than one vendor, its name can use the reserved EXT
prefix. To promote a vendor extension to a multi-vendor extension, open a pull request labled extension
that contains a new copy of the extension (even if there aren’t any changes) with the new name using the EXT
prefix, e.g., KHR_binary_glTF
.
Multi-vendor extensions are not covered by the Khronos IP framework.
Khronos extensions use the reserved KHR
prefix and are ratified by Khronos and therefore are covered by the Khronos IP framework. Extensions that are intended to be ratified can also use the KHR
prefix to avoid name/code/version thrashing. Khronos members can submit an extension for ratification, which is then voted on by the Khronos Board of Promoters.
In addition to extensions, the extras
object can also be used to extend glTF. This is completely separate from extensions.
All glTF object properties allow adding new properties to an extras
object sub-property, e.g.,
{
"shaders": {
"a-vertex-shader-id": {
"name": "user-defined-name",
"uri" : "vertex-shader.glsl",
"type": 35633,
"extras" : {
"precompiled_binary" : "path_to_precompiled_shader"
}
}
}
}
This enables glTF models to contain application-specific properties without creating a full glTF extension. This may be preferred for niche use cases where an extension would not be widely adopted.