aboutsummaryrefslogtreecommitdiff
path: root/NvCloth/src/dx/DxDeviceVector.h
diff options
context:
space:
mode:
Diffstat (limited to 'NvCloth/src/dx/DxDeviceVector.h')
-rw-r--r--NvCloth/src/dx/DxDeviceVector.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/NvCloth/src/dx/DxDeviceVector.h b/NvCloth/src/dx/DxDeviceVector.h
index 17b7d6e..d045633 100644
--- a/NvCloth/src/dx/DxDeviceVector.h
+++ b/NvCloth/src/dx/DxDeviceVector.h
@@ -257,7 +257,7 @@ class DxDeviceVector
}
template <typename Alloc>
- DxDeviceVector& operator = (const physx::shdfnd::Array<T, Alloc>& other)
+ DxDeviceVector& operator = (const ps::Array<T, Alloc>& other)
{
assign(other.begin(), other.end());
return *this;
@@ -316,8 +316,8 @@ class DxDeviceVector
void swap(DxDeviceVector& other)
{
- physx::shdfnd::swap(mBuffer, other.mBuffer);
- physx::shdfnd::swap(mSize, other.mSize);
+ nv::cloth::swap(mBuffer, other.mBuffer);
+ nv::cloth::swap(mSize, other.mSize);
}
T* map(D3D11_MAP mapType)