Home | History | Annotate | Download | only in System

Lines Matching refs:half

23 	class half
26 half() = default;
27 explicit half(float f);
31 half &operator=(half h);
32 half &operator=(float f);
38 inline half shortAsHalf(short s)
42 half h;
101 void toRGB16F(half rgb[3]) const
106 rgb[0] = half(R * factor);
107 rgb[1] = half(G * factor);
108 rgb[2] = half(B * factor);
118 static inline half float11ToFloat16(unsigned short fp11)
123 static inline half float10ToFloat16(unsigned short fp10)
287 void toRGB16F(half rgb[3]) const