cesium-native 0.43.0
Loading...
Searching...
No Matches
Image.h
1#pragma once
2
3#include "CesiumGltf/ImageAsset.h"
4#include "CesiumGltf/ImageSpec.h"
5#include "CesiumGltf/Library.h"
6#include "CesiumUtility/IntrusivePointer.h"
7
8namespace CesiumGltf {
10struct CESIUMGLTF_API Image final : public ImageSpec {
11 Image() = default;
12
18};
19} // namespace CesiumGltf
A smart pointer that calls addReference and releaseReference on the controlled object.
Classes for working with glTF models.
Image data used to create a texture. Image MAY be referenced by an URI (or IRI) or a buffer view inde...
Definition ImageSpec.h:17
This class is not meant to be instantiated directly. Use Image instead.
Definition Image.h:10
CesiumUtility::IntrusivePointer< ImageAsset > pAsset
The loaded image asset. When an image is loaded from a URL, multiple Image instances may all point to...
Definition Image.h:17