Home
last modified time | relevance | path

Searched refs:Float24 (Results 1 – 7 of 7) sorted by relevance

/NW4C-1.3.3/include/nw/font/
Dfont_RectDrawerCommand.h98 nw::ut::Float24::Float32ToBits24( (width) / 2.0f ), \
101 nw::ut::Float24::Float32ToBits24( (height) / 2.0f ), \
172 nw::ut::Float24::Float32ToBits24( \
175 nw::ut::Float24::Float32ToBits24( \
/NW4C-1.3.3/include/nw/ut/
Dut_Float24.h71 class Float24
77 Float24() : m_Float32( 0.0f ) {} in Float24() function
84 /* implicit */ Float24( u32 bits24 ) in Float24() function
94 /* implicit */ Float24( f32 value ) : m_Float32( value ) {} in Float24() function
99 Float24& operator =(f32 value) { this->m_Float32 = value; return *this; }
100 Float24& operator =(u32 bits24) { this->m_Float32 = Bits24ToFloat32( bits24 ); return *this; }
109 Float24& operator +=(f32 rhs) { this->m_Float32 += rhs; return *this; }
110 Float24& operator -=(f32 rhs) { this->m_Float32 -= rhs; return *this; }
111 Float24& operator *=(f32 rhs) { this->m_Float32 *= rhs; return *this; }
112 Float24& operator /=(f32 rhs) { this->m_Float32 /= rhs; return *this; }
/NW4C-1.3.3/include/nw/gfx/
Dgfx_GraphicsDevice.h148 s_DepthRange24 = ut::Float24::Float32ToBits24(s_DepthRangeNear - s_DepthRangeFar); in SetDepthRange()
162 s_WScale24 = ut::Float24::Float32ToBits24(-wscale); in SetWScale()
623 nw::ut::Float24::Float32ToBits24( viewport.GetBound().GetWidth() / 2.f ), in ActivateViewport()
626 nw::ut::Float24::Float32ToBits24( viewport.GetBound().GetHeight()/2.f ), in ActivateViewport()
993 COMMAND[4] = ut::Float24::Float32ToBits24(zBias); in ActivatePolygonOffset()
Dgfx_ParticleShape.h309 data[j] = ut::Float24::Float32ToBits24(fdata[j]); in SetVertexParameter()
/NW4C-1.3.3/sources/libraries/gfx/
Dgfx_GraphicsDevice.cpp42 u32 GraphicsDevice::s_DepthRange24 = ut::Float24::Float32ToBits24( -1.0f );
Dgfx_ActivateCommand.cpp448 data[j] = ut::Float24::Float32ToBits24( fdata[j] ); in SetupActivateVertexAttributeCommand_()
478 command[commandIndex + 2] = (ut::Float24::Float32ToBits24( 1.0f ) << 8); in SetupActivateVertexAttributeCommand_()
Dgfx_ParticleShape.cpp161 data[j] = ut::Float24::Float32ToBits24(fdata[j]); in SetupParticleVertexAttributeCommand()