/// @ref core
/// @file glm/ext/vector_int2_precision.hpp
#pragma once
#include "../detail/type_vec2.hpp"
namespace glm
{
/// @addtogroup core_vector_precision
/// @{
/// 2 components vector of high qualifier signed integer numbers.
///
/// @see GLSL 4.20.8 specification, section 4.1.5 Vectors
/// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
typedef vec<2, int, highp> highp_ivec2;
/// 2 components vector of medium qualifier signed integer numbers.
///
/// @see GLSL 4.20.8 specification, section 4.1.5 Vectors
/// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
typedef vec<2, int, mediump> mediump_ivec2;
/// 2 components vector of low qualifier signed integer numbers.
///
/// @see GLSL 4.20.8 specification, section 4.1.5 Vectors
/// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
typedef vec<2, int, lowp> lowp_ivec2;
/// @}
}//namespace glm