mirror of
https://github.com/g-truc/glm.git
synced 2024-11-12 21:31:47 +00:00
fixes for linux
This commit is contained in:
parent
cc485cb4c1
commit
ba910c7be2
@ -327,7 +327,7 @@ namespace detail
|
|||||||
# define GLM_RESTRICT_VAR __restrict
|
# define GLM_RESTRICT_VAR __restrict
|
||||||
#elif((GLM_COMPILER & GLM_COMPILER_GCC) && (GLM_COMPILER >= GLM_COMPILER_GCC31))
|
#elif((GLM_COMPILER & GLM_COMPILER_GCC) && (GLM_COMPILER >= GLM_COMPILER_GCC31))
|
||||||
# define GLM_DEPRECATED __attribute__((__deprecated__))
|
# define GLM_DEPRECATED __attribute__((__deprecated__))
|
||||||
# define GLM_ALIGN(x) __attribute__((aligned(x)))
|
# define GLM_ALIGN(x) __attribute__((aligned(x)))
|
||||||
# if(GLM_COMPILER >= GLM_COMPILER_GCC33)
|
# if(GLM_COMPILER >= GLM_COMPILER_GCC33)
|
||||||
# define GLM_RESTRICT __restrict__
|
# define GLM_RESTRICT __restrict__
|
||||||
# define GLM_RESTRICT_VAR __restrict__
|
# define GLM_RESTRICT_VAR __restrict__
|
||||||
|
@ -332,14 +332,14 @@ namespace matrix_transform
|
|||||||
detail::tvec4<U> const & viewport
|
detail::tvec4<U> const & viewport
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
assert(delta.x > 0.0f && delta.y > 0.0f)
|
assert(delta.x > 0.0f && delta.y > 0.0f);
|
||||||
detail::tmat4x4<T> Result(1.0f);
|
detail::tmat4x4<T> Result(1.0f);
|
||||||
|
|
||||||
if(!(delta.x > 0.0f && delta.y > 0.0f))
|
if(!(delta.x > 0.0f && delta.y > 0.0f))
|
||||||
return Result; // Error
|
return Result; // Error
|
||||||
|
|
||||||
// Translate and scale the picked region to the entire window
|
// Translate and scale the picked region to the entire window
|
||||||
Result = translate(Result, (T(viewport[2]) - T(2) * (x - T(viewport[0]))) / delta.x, (T(viewport[3]) - T(2) * (y - T(viewport[1]))) / delta.y, T(0));
|
Result = translate(Result, (T(viewport[2]) - T(2) * (center.x - T(viewport[0]))) / delta.x, (T(viewport[3]) - T(2) * (center.y - T(viewport[1]))) / delta.y, T(0));
|
||||||
return scale(Result, T(viewport[2]) / delta.x, T(viewport[3]) / delta.y, T(1));
|
return scale(Result, T(viewport[2]) / delta.x, T(viewport[3]) / delta.y, T(1));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -403,7 +403,7 @@ namespace quaternion{
|
|||||||
if(flip)
|
if(flip)
|
||||||
alpha = -alpha;
|
alpha = -alpha;
|
||||||
|
|
||||||
return normalize(beta * x + alpha * y2);
|
return normalize(beta * x + alpha * y);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
|
Loading…
Reference in New Issue
Block a user