Sync llcommon with Alchemy a bit.
llmath::llround->ll_round LL_ICC->LL_INTELC Add llpredicate Add LL_CPP11 macro Remove llhash Update llinitparam, llsd and all relatives of it.
This commit is contained in:
@@ -68,21 +68,21 @@ inline BOOL to_region_handle(const F32 x_pos, const F32 y_pos, U64 *region_handl
|
||||
U32 x_int, y_int;
|
||||
if (x_pos < 0.f)
|
||||
{
|
||||
// llwarns << "to_region_handle:Clamping negative x position " << x_pos << " to zero!" << llendl;
|
||||
// LL_WARNS() << "to_region_handle:Clamping negative x position " << x_pos << " to zero!" << LL_ENDL;
|
||||
return FALSE;
|
||||
}
|
||||
else
|
||||
{
|
||||
x_int = (U32)llmath::llround(x_pos);
|
||||
x_int = (U32)ll_round(x_pos);
|
||||
}
|
||||
if (y_pos < 0.f)
|
||||
{
|
||||
// llwarns << "to_region_handle:Clamping negative y position " << y_pos << " to zero!" << llendl;
|
||||
// LL_WARNS() << "to_region_handle:Clamping negative y position " << y_pos << " to zero!" << LL_ENDL;
|
||||
return FALSE;
|
||||
}
|
||||
else
|
||||
{
|
||||
y_int = (U32)llmath::llround(y_pos);
|
||||
y_int = (U32)ll_round(y_pos);
|
||||
}
|
||||
*region_handle = to_region_handle(x_int, y_int);
|
||||
return TRUE;
|
||||
|
||||
Reference in New Issue
Block a user