HomeSort by relevance Sort by last modified time
    Searched refs:floatToHalf (Results 1 - 2 of 2) sorted by null

  /external/deqp/modules/glshared/
glsVertexArrayTests.hpp 321 static Half create (float value) { Half h; h.m_value = floatToHalf(value); return h; }
322 static Half fromFloat (float value) { Half h; h.m_value = floatToHalf(value); return h; }
331 inline Half& operator+= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) + halfToFloat(m_value)); return *this; }
332 inline Half& operator*= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) * halfToFloat(m_value)); return *this; }
333 inline Half& operator/= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) / halfToFloat(m_value)); return *this; }
334 inline Half& operator-= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) - halfToFloat(m_value)); return *this; }
346 inline static deFloat16 floatToHalf (float f);
493 inline deFloat16 GLValue::Half::floatToHalf (float f)
glsDrawTest.cpp 439 static Half create (float value) { Half h; h.m_value = floatToHalf(value); return h; }
447 inline Half& operator+= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) + halfToFloat(m_value)); return *this; }
448 inline Half& operator*= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) * halfToFloat(m_value)); return *this; }
449 inline Half& operator/= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) / halfToFloat(m_value)); return *this; }
450 inline Half& operator-= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) - halfToFloat(m_value)); return *this; }
462 inline static deFloat16 floatToHalf (float f);
533 inline deFloat16 GLValue::Half::floatToHalf (float f)
    [all...]

Completed in 54 milliseconds