Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Common/helper_math.h
Original file line number Diff line number Diff line change
Expand Up @@ -263,27 +263,27 @@ inline __host__ __device__ uint4 make_uint4(int4 a)
// negate
////////////////////////////////////////////////////////////////////////////////

inline __host__ __device__ float2 operator-(float2 &a)
inline __host__ __device__ float2 operator-(float2 a)
{
return make_float2(-a.x, -a.y);
}
inline __host__ __device__ int2 operator-(int2 &a)
inline __host__ __device__ int2 operator-(int2 a)
{
return make_int2(-a.x, -a.y);
}
inline __host__ __device__ float3 operator-(float3 &a)
inline __host__ __device__ float3 operator-(float3 a)
{
return make_float3(-a.x, -a.y, -a.z);
}
inline __host__ __device__ int3 operator-(int3 &a)
inline __host__ __device__ int3 operator-(int3 a)
{
return make_int3(-a.x, -a.y, -a.z);
}
inline __host__ __device__ float4 operator-(float4 &a)
inline __host__ __device__ float4 operator-(float4 a)
{
return make_float4(-a.x, -a.y, -a.z, -a.w);
}
inline __host__ __device__ int4 operator-(int4 &a)
inline __host__ __device__ int4 operator-(int4 a)
{
return make_int4(-a.x, -a.y, -a.z, -a.w);
}
Expand Down