cesium-native  0.41.0
Texture.h
1 // This file was generated by generate-classes.
2 // DO NOT EDIT THIS FILE!
3 #pragma once
4 
5 #include "CesiumGltf/Library.h"
6 #include "CesiumGltf/NamedObject.h"
7 
8 #include <cstdint>
9 
10 namespace CesiumGltf {
14 struct CESIUMGLTF_API Texture final : public CesiumGltf::NamedObject {
15  static inline constexpr const char* TypeName = "Texture";
16 
21  int32_t sampler = -1;
22 
28  int32_t source = -1;
29 };
30 } // namespace CesiumGltf
Classes for working with glTF models.
The base class for objects in a glTF that have a name.
Definition: NamedObject.h:15
A texture and its sampler.
Definition: Texture.h:14