mirror of
https://git.mirrors.martin98.com/https://github.com/syoyo/tinygltf.git
synced 2025-09-23 16:23:14 +08:00
Missing indices print.
This commit is contained in:
parent
8c6774c6db
commit
fbc6118c6a
@ -146,6 +146,8 @@ static void DumpNode(const tinygltf::Node &node, int indent) {
|
|||||||
static void DumpPrimitive(const tinygltf::Primitive &primitive, int indent) {
|
static void DumpPrimitive(const tinygltf::Primitive &primitive, int indent) {
|
||||||
std::cout << Indent(indent) << "material : " << primitive.material
|
std::cout << Indent(indent) << "material : " << primitive.material
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
|
std::cout << Indent(indent) << "indices : " << primitive.indices
|
||||||
|
<< std::endl;
|
||||||
std::cout << Indent(indent) << "mode : " << PrintMode(primitive.mode)
|
std::cout << Indent(indent) << "mode : " << PrintMode(primitive.mode)
|
||||||
<< "(" << primitive.mode << ")" << std::endl;
|
<< "(" << primitive.mode << ")" << std::endl;
|
||||||
std::cout << Indent(indent)
|
std::cout << Indent(indent)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user