cesium-native 0.43.0
Loading...
Searching...
No Matches
ExtensionExtMeshGpuInstancingReader.h
1// This file was generated by generate-classes.
2// DO NOT EDIT THIS FILE!
3#pragma once
4
5#include <CesiumGltf/ExtensionExtMeshGpuInstancing.h>
6#include <CesiumGltfReader/Library.h>
7#include <CesiumJsonReader/JsonReader.h>
8#include <CesiumJsonReader/JsonReaderOptions.h>
9
10#include <rapidjson/fwd.h>
11
12#include <span>
13#include <vector>
14
15namespace CesiumGltf {
16struct ExtensionExtMeshGpuInstancing;
17} // namespace CesiumGltf
18
19namespace CesiumGltfReader {
20
25class CESIUMGLTFREADER_API ExtensionExtMeshGpuInstancingReader {
26public:
31
36
41
50 readFromJson(const std::span<const std::byte>& data) const;
51
60 readFromJson(const rapidjson::Value& value) const;
61
70 std::vector<CesiumGltf::ExtensionExtMeshGpuInstancing>>
71 readArrayFromJson(const rapidjson::Value& value) const;
72
73private:
75};
76
77} // namespace CesiumGltfReader
Reads ExtensionExtMeshGpuInstancing instances from JSON.
CesiumJsonReader::JsonReaderOptions & getOptions()
Gets the options controlling how the JSON is read.
const CesiumJsonReader::JsonReaderOptions & getOptions() const
Gets the options controlling how the JSON is read.
CesiumJsonReader::ReadJsonResult< CesiumGltf::ExtensionExtMeshGpuInstancing > readFromJson(const std::span< const std::byte > &data) const
Reads an instance of ExtensionExtMeshGpuInstancing from a byte buffer.
CesiumJsonReader::ReadJsonResult< std::vector< CesiumGltf::ExtensionExtMeshGpuInstancing > > readArrayFromJson(const rapidjson::Value &value) const
Reads an array of instances of ExtensionExtMeshGpuInstancing from a rapidJson::Value.
CesiumJsonReader::ReadJsonResult< CesiumGltf::ExtensionExtMeshGpuInstancing > readFromJson(const rapidjson::Value &value) const
Reads an instance of ExtensionExtMeshGpuInstancing from a rapidJson::Value.
ExtensionExtMeshGpuInstancingReader()
Constructs a new instance.
Holds options for reading statically-typed data structures from JSON.
Classes for reading glTF models.
Definition GltfReader.h:24
Classes for working with glTF models.
The result of JsonReader::readJson.
Definition JsonReader.h:23