OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:floatToHalf
(Results
1 - 3
of
3
) 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
440
static Half create (float value) { Half h; h.m_value =
floatToHalf
(value); return h; }
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; }
451
inline Half& operator-= (const Half& other) { m_value =
floatToHalf
(halfToFloat(other.getValue()) - halfToFloat(m_value)); return *this; }
463
inline static deFloat16
floatToHalf
(float f);
534
inline deFloat16 GLValue::Half::
floatToHalf
(float f)
[
all
...]
/external/deqp/external/openglcts/modules/common/
glcInternalformatTests.cpp
181
static GLhalf
floatToHalf
(float f);
518
dstHalf[i] =
floatToHalf
(inColor[i]);
624
GLhalf InternalformatCaseBase::
floatToHalf
(float f)
[
all
...]
Completed in 772 milliseconds