OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:halfToFloat
(Results
1 - 2
of
2
) sorted by null
/external/deqp/modules/glshared/
glsVertexArrayTests.hpp
325
inline Half operator+ (const Half& other) const { return create(
halfToFloat
(m_value) +
halfToFloat
(other.getValue())); }
326
inline Half operator* (const Half& other) const { return create(
halfToFloat
(m_value) *
halfToFloat
(other.getValue())); }
327
inline Half operator/ (const Half& other) const { return create(
halfToFloat
(m_value) /
halfToFloat
(other.getValue())); }
328
inline Half operator% (const Half& other) const { return create(deFloatMod(
halfToFloat
(m_value),
halfToFloat
(other.getValue()))); }
329
inline Half operator- (const Half& other) const { return create(
halfToFloat
(m_value) -
halfToFloat
(other.getValue()));
[
all
...]
glsDrawTest.cpp
443
inline Half operator+ (const Half& other) const { return create(
halfToFloat
(m_value) +
halfToFloat
(other.getValue())); }
444
inline Half operator* (const Half& other) const { return create(
halfToFloat
(m_value) *
halfToFloat
(other.getValue())); }
445
inline Half operator/ (const Half& other) const { return create(
halfToFloat
(m_value) /
halfToFloat
(other.getValue())); }
446
inline Half operator- (const Half& other) const { return create(
halfToFloat
(m_value) -
halfToFloat
(other.getValue())); }
448
inline Half& operator+= (const Half& other) { m_value = floatToHalf(
halfToFloat
(other.getValue()) +
halfToFloat
(m_value)); return *this;
[
all
...]
Completed in 155 milliseconds