|
| __declspec (property(get=get_x, put=set_x)) int x |
| Property for accessing element 0 of this int_2 as an int. More...
|
|
| __declspec (property(get=get_x, put=set_x)) int r |
| Property for accessing element 0 of this int_2 as an int. More...
|
|
int | get_x () const __GPU |
| Returns element 0 of this int_2. More...
|
|
int & | ref_x () __GPU |
| Returns reference to element 0 of this int_2. More...
|
|
int & | ref_r () __GPU |
| Returns reference to element 0 of this int_2. More...
|
|
void | set_x (int _Value) __GPU |
| Set element 0 of this int_2 with an int. More...
|
|
| __declspec (property(get=get_y, put=set_y)) int y |
| Property for accessing element 1 of this int_2 as an int. More...
|
|
| __declspec (property(get=get_y, put=set_y)) int g |
| Property for accessing element 1 of this int_2 as an int. More...
|
|
int | get_y () const __GPU |
| Returns element 1 of this int_2. More...
|
|
int & | ref_y () __GPU |
| Returns reference to element 1 of this int_2. More...
|
|
int & | ref_g () __GPU |
| Returns reference to element 1 of this int_2. More...
|
|
void | set_y (int _Value) __GPU |
| Set element 1 of this int_2 with an int. More...
|
|
| int_2 () __GPU |
| Default constructor, initializes all elements with 0. More...
|
|
| int_2 (int _V0, int _V1) __GPU |
| Constructor. More...
|
|
| int_2 (int _V) __GPU |
| Constructor. More...
|
|
| int_2 (const uint_2 &_Other) __GPU |
| Constructor. Each element is initialized by casting from the corresponding element in _Other. More...
|
|
| int_2 (const float_2 &_Other) __GPU |
| Constructor. Each element is initialized by casting from the corresponding element in _Other. More...
|
|
| int_2 (const unorm_2 &_Other) __GPU |
| Constructor. Each element is initialized by casting from the corresponding element in _Other. More...
|
|
| int_2 (const norm_2 &_Other) __GPU |
| Constructor. Each element is initialized by casting from the corresponding element in _Other. More...
|
|
| int_2 (const double_2 &_Other) __GPU |
| Constructor. Each element is initialized by casting from the corresponding element in _Other. More...
|
|
int_2 | operator~ () const __GPU |
|
int_2 | operator- () const __GPU |
|
int_2 & | operator++ () __GPU |
|
int_2 | operator++ (int) __GPU |
|
int_2 & | operator-- () __GPU |
|
int_2 | operator-- (int) __GPU |
|
int_2 & | operator+= (const int_2 &_Other) __GPU |
|
int_2 & | operator-= (const int_2 &_Other) __GPU |
|
int_2 & | operator*= (const int_2 &_Other) __GPU |
|
int_2 & | operator/= (const int_2 &_Other) __GPU |
|
int_2 & | operator%= (const int_2 &_Other) __GPU |
|
int_2 & | operator^= (const int_2 &_Other) __GPU |
|
int_2 & | operator|= (const int_2 &_Other) __GPU |
|
int_2 & | operator&= (const int_2 &_Other) __GPU |
|
int_2 & | operator>>= (const int_2 &_Other) __GPU |
|
int_2 & | operator<<= (const int_2 &_Other) __GPU |
|
| __declspec (property(get=get_xy, put=set_xy)) int_2 xy |
| Property for accessing element 0, and 1 of this int_2 as an int_2. More...
|
|
| __declspec (property(get=get_xy, put=set_xy)) int_2 rg |
| Property for accessing element 0, and 1 of this int_2 as an int_2. More...
|
|
int_2 | get_xy () const __GPU |
| Returns an int_2 that is composed of element 0, and element 1 of this int_2. More...
|
|
void | set_xy (const int_2 &_Value) __GPU |
| Set element 0, and 1 of this int_2 with an int_2. More...
|
|
| __declspec (property(get=get_yx, put=set_yx)) int_2 yx |
| Property for accessing element 1, and 0 of this int_2 as an int_2. More...
|
|
| __declspec (property(get=get_yx, put=set_yx)) int_2 gr |
| Property for accessing element 1, and 0 of this int_2 as an int_2. More...
|
|
int_2 | get_yx () const __GPU |
| Returns an int_2 that is composed of element 1, and element 0 of this int_2. More...
|
|
void | set_yx (const int_2 &_Value) __GPU |
| Set element 1, and 0 of this int_2 with an int_2. More...
|
|
Represent a short vector of 2 ints.