When your question is answered use !solved to mark the question as resolved.
Remember to ask specific questions, provide necessary details, and reduce your question to its simplest form. For tips on how to ask a good question use !howto ask.
10 messages · Page 1 of 1 (latest)
When your question is answered use !solved to mark the question as resolved.
Remember to ask specific questions, provide necessary details, and reduce your question to its simplest form. For tips on how to ask a good question use !howto ask.
What types are those values
If there's a pointer holding data then you won't be able to write it so easily
if (path.extension() == ".obj")
{
std::cout << "File type is - .obj\n";
std::cout << "m_outVertexIndices.size(): " << m_outVertexIndices.size() << '\n';
convert_to_binary_pdd::createPddFileFromObj(path,
tempVertices.size(), tempTextures.size(),
tempNormal.size(), m_outVertexIndices.size(), meshData);
}
``` this is call of this function
I was trying to make m_outVertexIndices.size() as a variable to hold it's count but the error was the same
in fact, the error is only with the 5th parameter specified above
!solved
Thank you and let us know if you have any more questions!
This thread is now set to auto-hide after an hour of inactivity