@babylonjs/core
Version:
Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.
10 lines (9 loc) • 372 B
TypeScript
import type { DataCursor } from "./exrLoader.core.js";
import type { IEXRHeader } from "./exrLoader.interfaces.js";
/**
* Gets the EXR header
* @param dataView defines the data view to read from
* @param offset defines the offset to start reading from
* @returns the header
*/
export declare function GetExrHeader(dataView: DataView, offset: DataCursor): IEXRHeader;