The Book of Shaders by Patricio Gonzalez Vivo


Ivec2

2 dimensional integer vector

Declaration

bvec2 aIvec2 = ivec2(1, 1);
bvec2 bIvec2 = ivec2(1);

bvec2 cIvec2 = ivec2(aIvec3);
bvec2 dIvec2 = ivec2(aIvec3.x, aIvec3.y);

Description

ivec2 is an integer vector with two components. It can be initialized by:

See Also

bool, int, float, bvec2, bvec3, bvec4, ivec2, ivec3, ivec4, vec2, vec3, vec4, mat2, mat3, mat4