Home
last modified time | relevance | path

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

/NW4C-1.2.23/sources/libraries/gfx/
Dgfx_ActivateCommand.cpp70 (ut::Float24::Float32ToBits24( 1.0f ) << 8),
77 (ut::Float24::Float32ToBits24( 1.0f ) << 8),
84 (ut::Float24::Float32ToBits24( 1.0f ) << 8),
91 (ut::Float24::Float32ToBits24( 1.0f ) << 8),
98 (ut::Float24::Float32ToBits24( 1.0f ) << 8),
105 (ut::Float24::Float32ToBits24( 1.0f ) << 8),
112 (ut::Float24::Float32ToBits24( 1.0f ) << 8),
119 (ut::Float24::Float32ToBits24( 1.0f ) << 8),
126 (ut::Float24::Float32ToBits24( 1.0f ) << 8),
133 (ut::Float24::Float32ToBits24( 1.0f ) << 8),
[all …]
Dgfx_GraphicsDevice.cpp42 u32 GraphicsDevice::s_DepthRange24 = ut::Float24::Float32ToBits24( -1.0f );
Dgfx_ParticleShape.cpp161 data[j] = ut::Float24::Float32ToBits24(fdata[j]); in SetupParticleVertexAttributeCommand()
/NW4C-1.2.23/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.2.23/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.2.23/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()
625 nw::ut::Float24::Float32ToBits24( s_Viewport.GetBound().GetWidth() / 2.f ), in ActivateViewport()
628 nw::ut::Float24::Float32ToBits24( s_Viewport.GetBound().GetHeight()/2.f ), in ActivateViewport()
1001 COMMAND[4] = ut::Float24::Float32ToBits24(zBias); in ActivatePolygonOffset()
Dgfx_ParticleShape.h309 data[j] = ut::Float24::Float32ToBits24(fdata[j]); in SetVertexParameter()