mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 01:09:34 +00:00
Changed: Use stdext::make_checked_array_iterator and stdext::make_unchecked_array_iterator with VC++ 2015
This commit is contained in:
parent
2b36178662
commit
27cefa66d5
6 changed files with 24 additions and 2 deletions
|
@ -24,6 +24,8 @@
|
|||
#include "nel/misc/rgba.h"
|
||||
#include "nel/misc/traits_nl.h"
|
||||
|
||||
#include <iterator>
|
||||
|
||||
namespace NL3D {
|
||||
|
||||
/*
|
||||
|
@ -480,7 +482,11 @@ void CPSValueGradientFunc<T>::setValuesUnpacked(const T *valueTab, uint32 numVal
|
|||
_MaxValue = _MinValue = valueTab[0];
|
||||
_NbValues = (numValues - 1) * nbStages;
|
||||
_Tab.resize(_NbValues + 1);
|
||||
#ifdef NL_COMP_VC14
|
||||
std::copy(valueTab, valueTab + _NbValues + 1, stdext::make_checked_array_iterator(&_Tab[0], _Tab.size()));
|
||||
#else
|
||||
std::copy(valueTab, valueTab + _NbValues + 1, &_Tab[0]);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -1101,7 +1101,11 @@ bool CMeshGeom::retrieveTriangles(std::vector<uint32> &indices) const
|
|||
else
|
||||
{
|
||||
// std::copy will convert from 16 bits index to 32 bit index
|
||||
std::copy((uint16 *) iba.getPtr(), ((uint16 *) iba.getPtr()) + pb.getNumIndexes(), &indices[triIdx*3]);
|
||||
#ifdef NL_COMP_VC14
|
||||
std::copy((uint16 *)iba.getPtr(), ((uint16 *)iba.getPtr()) + pb.getNumIndexes(), stdext::make_checked_array_iterator(&indices[triIdx * 3], indices.size() - triIdx * 3));
|
||||
#else
|
||||
std::copy((uint16 *)iba.getPtr(), ((uint16 *)iba.getPtr()) + pb.getNumIndexes(), &indices[triIdx * 3]);
|
||||
#endif
|
||||
}
|
||||
// next
|
||||
triIdx+= pb.getNumIndexes()/3;
|
||||
|
|
|
@ -1113,6 +1113,9 @@ void CPSConstraintMesh::getShapesNames(std::string *shapesNames) const
|
|||
{
|
||||
const_cast<CPSConstraintMesh *>(this)->update();
|
||||
}
|
||||
#ifdef NL_COMP_VC14
|
||||
std::copy(_MeshShapeFileName.begin(), _MeshShapeFileName.end(), stdext::make_unchecked_array_iterator(shapesNames));
|
||||
#else
|
||||
std::copy(_MeshShapeFileName.begin(), _MeshShapeFileName.end(), shapesNames);
|
||||
}
|
||||
|
||||
|
|
|
@ -1463,7 +1463,11 @@ void CPSRibbon::setShape(const CVector *shape, uint32 nbPointsInShape, bool brac
|
|||
///==================================================================================================================
|
||||
void CPSRibbon::getShape(CVector *shape) const
|
||||
{
|
||||
NL_PS_FUNC(CPSRibbon_getShape)
|
||||
NL_PS_FUNC(CPSRibbon_getShape);
|
||||
|
||||
#ifdef NL_COMP_VC14
|
||||
std::copy(_Shape.begin(), _Shape.end(), stdext::make_unchecked_array_iterator(shape));
|
||||
#else
|
||||
std::copy(_Shape.begin(), _Shape.end(), shape);
|
||||
}
|
||||
|
||||
|
|
|
@ -34,6 +34,7 @@
|
|||
#include <functional>
|
||||
#include <iostream>
|
||||
#include <limits>
|
||||
#include <iterator>
|
||||
|
||||
#include "nel/misc/rgba.h"
|
||||
#include "nel/misc/debug.h"
|
||||
|
|
|
@ -305,7 +305,11 @@ void CWaterHeightMap::makeCpy(uint buffer, uint dX, uint dY, uint sX, uint sY,
|
|||
{
|
||||
if (dest < src)
|
||||
{
|
||||
#ifdef NL_COMP_VC14
|
||||
std::copy(src, src + width, stdext::make_unchecked_array_iterator(dest));
|
||||
#else
|
||||
std::copy(src, src + width, dest);
|
||||
#endif
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue