Home
last modified time | relevance | path

Searched refs:clearColor (Results 1 – 2 of 2) sorted by relevance

/CTR-SDK-0.14.4/sources/libraries/gr/CTR/
Dgr_FrameBuffer.cpp114 clearColor[ index ] = 0.0f; in ColorBuffer()
159 u32 clearColor = 0; in MakeClearRequest() local
168clearColor = ( FloatToUnsignedByte( colorBuffer.clearColor[ 0 ] ) << 24 ) | in MakeClearRequest()
169 … ( FloatToUnsignedByte( colorBuffer.clearColor[ 1 ] ) << 16 ) | in MakeClearRequest()
170 … ( FloatToUnsignedByte( colorBuffer.clearColor[ 2 ] ) << 8 ) | in MakeClearRequest()
171 … ( FloatToUnsignedByte( colorBuffer.clearColor[ 3 ] ) << 0 ) ; in MakeClearRequest()
177clearColor = ( ( ( FloatToUnsignedByte( colorBuffer.clearColor[ 0 ] ) >> 3 ) & 0x1f ) << 11 ) | in MakeClearRequest()
178 … ( ( ( FloatToUnsignedByte( colorBuffer.clearColor[ 1 ] ) >> 3 ) & 0x1f ) << 6 ) | in MakeClearRequest()
179 … ( ( ( FloatToUnsignedByte( colorBuffer.clearColor[ 2 ] ) >> 3 ) & 0x1f ) << 1 ) | in MakeClearRequest()
180 … ( ( FloatToUnsignedByte( colorBuffer.clearColor[ 3 ] ) > 0x7f ) ? 0x1 : 0 ); in MakeClearRequest()
[all …]
/CTR-SDK-0.14.4/include/nn/gr/CTR/
Dgr_FrameBuffer.h92 f32 clearColor[ 4 ]; variable