Searched refs:clearColor (Results 1 – 2 of 2) sorted by relevance
114 clearColor[ index ] = 0.0f; in ColorBuffer()159 u32 clearColor = 0; in MakeClearRequest() local168 … clearColor = ( 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()177 … clearColor = ( ( ( 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 …]
92 f32 clearColor[ 4 ]; variable