cesium-native  0.41.0
BufferCesium.h
1 #pragma once
2 
3 #include "CesiumGltf/Library.h"
4 
5 #include <cstddef>
6 #include <vector>
7 
8 namespace CesiumGltf {
13 struct CESIUMGLTF_API BufferCesium final {
17  std::vector<std::byte> data;
18 };
19 } // namespace CesiumGltf
Classes for working with glTF models.
Holds Buffer properties that are specific to the glTF loader rather than part of the glTF spec.
Definition: BufferCesium.h:13
std::vector< std::byte > data
The buffer's data.
Definition: BufferCesium.h:17