Struct Rgba1010102
- Namespace
- Microsoft.Xna.Framework.Graphics.PackedVector
- Assembly
- MonoGame.Framework.dll
Packed vector type containing unsigned normalized values ranging from 0 to 1. The x, y and z components use 10 bits, and the w component uses 2 bits.
public struct Rgba1010102 : IPackedVector<uint>, IEquatable<Rgba1010102>, IPackedVector
- Implements
- Inherited Members
Constructors
Rgba1010102(Vector4)
Initializes a new instance of this structure.
public Rgba1010102(Vector4 vector)
Parameters
Rgba1010102(float, float, float, float)
Initializes a new instance of this structure.
public Rgba1010102(float x, float y, float z, float w)
Parameters
x
floatThe initial x-component value for this structure.
y
floatThe initial y-component value for this structure.
z
floatThe initial z-component value for this structure.
w
floatThe initial 2-component value for this structure.
Properties
PackedValue
Directly gets or sets the packed representation of the value.
public uint PackedValue { get; set; }
Property Value
Methods
Equals(Rgba1010102)
Indicates whether the current object is equal to another object of the same type.
public bool Equals(Rgba1010102 other)
Parameters
other
Rgba1010102An object to compare with this object.
Returns
Equals(object)
Indicates whether this instance and a specified object are equal.
public override bool Equals(object obj)
Parameters
obj
objectThe object to compare with the current instance.
Returns
- bool
true if
obj
and this instance are the same type and represent the same value; otherwise, false.
GetHashCode()
Returns the hash code for this instance.
public override int GetHashCode()
Returns
- int
A 32-bit signed integer that is the hash code for this instance.
ToString()
Returns the fully qualified type name of this instance.
public override string ToString()
Returns
- string
The fully qualified type name.
ToVector4()
Expands the packed representation into a Vector4.
public Vector4 ToVector4()
Returns
Operators
operator ==(Rgba1010102, Rgba1010102)
Returns a value that indicates whether the two values are equal.
public static bool operator ==(Rgba1010102 lhs, Rgba1010102 rhs)
Parameters
lhs
Rgba1010102The value on the left of the equality operator.
rhs
Rgba1010102The value on the right of the equality operator.
Returns
- bool
true if the two values are equal; otherwise, false.
operator !=(Rgba1010102, Rgba1010102)
Returns a value that indicates whether the two value are not equal.
public static bool operator !=(Rgba1010102 lhs, Rgba1010102 rhs)
Parameters
lhs
Rgba1010102The value on the left of the inequality operator.
rhs
Rgba1010102The value on the right of the inequality operator.
Returns
- bool
true if the two value are not equal; otherwise, false.