int_2 Class

Represents a short vector of two integers.

Syntax

class int_2;

Members

Public Typedefs

Name Description
value_type

Public Constructors

Name Description
int_2 Constructor Overloaded. Default constructor, initializes all elements with 0.

Public Methods

Name Description
int_2::get_x
int_2::get_xy
int_2::get_y
int_2::get_yx
int_2::ref_g
int_2::ref_r
int_2::ref_x
int_2::ref_y
int_2::set_x
int_2::set_xy
int_2::set_y
int_2::set_yx

Public Operators

Name Description
int_2::operator-
int_2::operator--
int_2::operator%=
int_2::operator&=
int_2::operator*=
int_2::operator/=
int_2::operator^=
int_2::operator|=
int_2::operator~
int_2::operator++
int_2::operator+=
int_2::operator<<=
int_2::operator=
int_2::operator-=
int_2::operator>>=

Public Constants

Name Description
size Constant

Public Data Members

Name Description
int_2::g
int_2::gr
int_2::r
int_2::rg
int_2::x
int_2::xy
int_2::y
int_2::yx

Inheritance Hierarchy

int_2

Requirements

Header: amp_short_vectors.h

Namespace: Concurrency::graphics

int_2

Default constructor, initializes all elements with 0.

int_2() restrict(amp,
    cpu);

int_2(
    int _V0,
    int _V1) restrict(amp,
    cpu);

int_2(
    int _V) restrict(amp,
    cpu);

int_2(
    const int_2& _Other) restrict(amp,
    cpu);

explicit inline int_2(
    const uint_2& _Other) restrict(amp,
    cpu);

explicit inline int_2(
    const float_2& _Other) restrict(amp,
    cpu);

explicit inline int_2(
    const unorm_2& _Other) restrict(amp,
    cpu);

explicit inline int_2(
    const norm_2& _Other) restrict(amp,
    cpu);

explicit inline int_2(
    const double_2& _Other) restrict(amp,
    cpu);

Parameters

_V0
The value to initialize element 0.

_V1
The value to initialize element 1.

_V
The value for initialization.

_Other
The object used to initialize.

size

static const int size = 2;

See also

Concurrency::graphics Namespace