Home
last modified time | relevance | path

Searched refs:Float31 (Results 1 – 3 of 3) sorted by relevance

/NW4C-1.3.3/include/nw/ut/
Dut_Float24.h228 class Float31
234 Float31() : m_Float32( 0.0f ) {} in Float31() function
241 /* implicit */ Float31( u32 bits31 ) in Float31() function
251 /* implicit */ Float31( f32 value ) : m_Float32( value ) {} in Float31() function
256 Float31& operator =(f32 value) { this->m_Float32 = value; return *this; }
257 Float31& operator =(u32 bits31) { this->m_Float32 = Bits31ToFloat32( bits31 ); return *this; }
266 Float31& operator +=(f32 rhs) { this->m_Float32 += rhs; return *this; }
267 Float31& operator -=(f32 rhs) { this->m_Float32 -= rhs; return *this; }
268 Float31& operator *=(f32 rhs) { this->m_Float32 *= rhs; return *this; }
269 Float31& operator /=(f32 rhs) { this->m_Float32 /= rhs; return *this; }
/NW4C-1.3.3/include/nw/font/
Dfont_RectDrawerCommand.h100 nw::ut::Float31::Float32ToBits31( 2.0f / (width) ) << 1, \
102 nw::ut::Float31::Float32ToBits31( 2.0f / (height) ) << 1, \
/NW4C-1.3.3/include/nw/gfx/
Dgfx_GraphicsDevice.h625 (ut::Float31::Float32ToBits31( 2.f / viewport.GetBound().GetWidth() ) << 1), in ActivateViewport()
627 (ut::Float31::Float32ToBits31( 2.f / viewport.GetBound().GetHeight() ) << 1), in ActivateViewport()