Searched refs:m_FrameValue (Results 1 – 2 of 2) sorted by relevance
91 ut::ResU32 m_FrameValue; // u12 m_Frame; u20 m_Value * scale + offset; member93 u32 GetFrame() const { return m_FrameValue & 0x00000FFF; } in GetFrame()95 f32 GetValue() const { return static_cast<f32>(m_FrameValue >> 12); } in GetValue()116 ut::ResU32 m_FrameValue; // u12 m_Frame; u20 m_Value * scale + offset; member120 u32 GetFrame() const { return m_FrameValue & 0x00000FFF; } in GetFrame()122 f32 GetValue() const { return static_cast<f32>( m_FrameValue >> 12 ); } in GetValue()130 ut::ResU8 m_FrameValue[3]; // u8 m_Frame; u16 m_Value * scale + offset; member133 u32 GetFrame() const { return m_FrameValue[0]; } in GetFrame()135 …f32 GetValue() const { return static_cast<f32>( u16(m_FrameValue[1]) + (u16(m_FrameValue[2]) <<… in GetValue()
102 … static FrameType GetFrame( const KeyType* pKey ) { return (pKey->m_FrameValue & 0x00000FFF); } in GetFrame()