- fix for index overrun when building TexturedTriangleArray
- fix for ws2.0 zero area triangles - drop them when loading
This commit is contained in:
parent
ddd9691439
commit
beeaef3868
@ -274,6 +274,15 @@ static void read_indices(char* buffer,
|
|||||||
if (vaMask & SG_VA_FLOAT_3) vas[7].push_back(*src++);
|
if (vaMask & SG_VA_FLOAT_3) vas[7].push_back(*src++);
|
||||||
}
|
}
|
||||||
} // of elements in the index
|
} // of elements in the index
|
||||||
|
|
||||||
|
// WS2.0 fix : toss zero area triangles
|
||||||
|
if ( ( count == 3 ) && (indexMask & SG_IDX_VERTICES) ) {
|
||||||
|
if ( (vertices[0] == vertices[1]) ||
|
||||||
|
(vertices[1] == vertices[2]) ||
|
||||||
|
(vertices[2] == vertices[0]) ) {
|
||||||
|
vertices.clear();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
@ -468,12 +477,15 @@ void SGBinObject::read_object( gzFile fp,
|
|||||||
read_indices<uint16_t>(ptr, nbytes, idx_mask, vertex_attrib_mask, vs, ns, cs, tcs, vas );
|
read_indices<uint16_t>(ptr, nbytes, idx_mask, vertex_attrib_mask, vs, ns, cs, tcs, vas );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Fix for WS2.0 - ignore zero area triangles
|
||||||
|
if ( !vs.empty() ) {
|
||||||
vertices.push_back( vs );
|
vertices.push_back( vs );
|
||||||
normals.push_back( ns );
|
normals.push_back( ns );
|
||||||
colors.push_back( cs );
|
colors.push_back( cs );
|
||||||
texCoords.push_back( tcs );
|
texCoords.push_back( tcs );
|
||||||
vertexAttribs.push_back( vas );
|
vertexAttribs.push_back( vas );
|
||||||
materials.push_back( material );
|
materials.push_back( material );
|
||||||
|
}
|
||||||
} // of element iteration
|
} // of element iteration
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -104,34 +104,35 @@ private:
|
|||||||
// not an advantage on modern hardware.
|
// not an advantage on modern hardware.
|
||||||
class DrawElementsFacade {
|
class DrawElementsFacade {
|
||||||
public:
|
public:
|
||||||
DrawElementsFacade(unsigned numVerts) :
|
DrawElementsFacade(void) : count(0)
|
||||||
_ushortElements(0), _uintElements(0)
|
|
||||||
{
|
{
|
||||||
if (numVerts > 65535)
|
_uintElements = new osg::DrawElementsUInt(osg::PrimitiveSet::TRIANGLES);
|
||||||
_uintElements
|
_ushortElements = new osg::DrawElementsUShort(osg::PrimitiveSet::TRIANGLES);
|
||||||
= new osg::DrawElementsUInt(osg::PrimitiveSet::TRIANGLES);
|
|
||||||
else
|
|
||||||
_ushortElements
|
|
||||||
= new osg::DrawElementsUShort(osg::PrimitiveSet::TRIANGLES);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void push_back(unsigned val)
|
void push_back(unsigned val)
|
||||||
{
|
{
|
||||||
if (_uintElements)
|
count++;
|
||||||
_uintElements->push_back(val);
|
if (count < 65536) {
|
||||||
else
|
|
||||||
_ushortElements->push_back(val);
|
_ushortElements->push_back(val);
|
||||||
}
|
}
|
||||||
|
_uintElements->push_back(val);
|
||||||
|
}
|
||||||
|
|
||||||
osg::DrawElements* getDrawElements()
|
osg::DrawElements* getDrawElements()
|
||||||
{
|
{
|
||||||
if (_uintElements)
|
if (count > 65535) {
|
||||||
|
free (_ushortElements);
|
||||||
return _uintElements;
|
return _uintElements;
|
||||||
|
} else {
|
||||||
|
free (_uintElements);
|
||||||
return _ushortElements;
|
return _ushortElements;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
protected:
|
protected:
|
||||||
osg::DrawElementsUShort* _ushortElements;
|
osg::DrawElementsUShort* _ushortElements;
|
||||||
osg::DrawElementsUInt* _uintElements;
|
osg::DrawElementsUInt* _uintElements;
|
||||||
|
unsigned count;
|
||||||
};
|
};
|
||||||
|
|
||||||
class SGTexturedTriangleBin : public SGTriangleBin<SGVertNormTex> {
|
class SGTexturedTriangleBin : public SGTriangleBin<SGVertNormTex> {
|
||||||
@ -398,7 +399,7 @@ public:
|
|||||||
const unsigned invalid = ~unsigned(0);
|
const unsigned invalid = ~unsigned(0);
|
||||||
std::vector<unsigned> indexMap(getNumVertices(), invalid);
|
std::vector<unsigned> indexMap(getNumVertices(), invalid);
|
||||||
|
|
||||||
DrawElementsFacade deFacade(vertices->size());
|
DrawElementsFacade deFacade;
|
||||||
for (index_type i = 0; i < triangles.size(); ++i) {
|
for (index_type i = 0; i < triangles.size(); ++i) {
|
||||||
triangle_ref triangle = triangles[i];
|
triangle_ref triangle = triangles[i];
|
||||||
if (indexMap[triangle[0]] == invalid) {
|
if (indexMap[triangle[0]] == invalid) {
|
||||||
|
Loading…
Reference in New Issue
Block a user