FlatBuffers - 创建结构向量时出错

FlatBuffers - Error when creating Vector of struct

我对 flatbuffers 很陌生,我相信我正确地遵循了教程,但根据我的需要对其进行了修改,但我终究无法弄清楚为什么会出现此错误:

 error: could not convert ‘_Positions’ from ‘flatbuffers::Offset<flatbuffers::Vector<Renderer::Import::Vec3> >’ to ‘flatbuffers::Offset<flatbuffers::Vector<const Renderer::Import::Vec3*> >’
                                        _Materials, _Faces);

此外,我刚刚注意到它还抛出了 error: static assertion failed: T must be a scalar type 三次

平面缓冲区架构:

namespace Renderer.Import;
struct Vec3 {
...
}


struct Face {
...
}
struct Material{
...
}

table Mesh{
  Name:string;
  Positions:[Vec3];
  Normals:[Vec3];
  Materials:[Material];
  Faces:[Face];
}

C++代码:

  flatbuffers::FlatBufferBuilder builder(4096);

  std::vector<Renderer::Import::Vec3> Normals;
  // Populate

  std::vector<Renderer::Import::Vec3> Positions;
  // Populate

  std::vector<Renderer::Import::Material> Materials;
  // Populate

 std::vector<Renderer::Import::Face> Faces;
 // Populate

    auto _Name = builder.CreateString(shapes[0].name);
    auto _Normals = builder.CreateVector(Normals);
    auto _Positions = builder.CreateVector(Positions);
    auto _Materials = builder.CreateVector(Materials);
    auto _Faces = builder.CreateVector(Faces);
    // Errors with `_Position` argument, but maybe the other three are incorrect too
    auto mesh = Renderer::Import::CreateMesh(builder, _Name, _Positions, _Normals, _Materials, _Faces);

非常感谢对此问题的任何帮助

与结构一起使用时,使用 CreateVectorOfStructs 而不是 CreateVector

API 因使用 CreateVector 接受结构向量而受到指责,我们必须解决这个问题。