Searched refs:clearColor (Results 1 – 2 of 2) sorted by relevance
128 clearColor[ index ] = 0.0f; in ColorBuffer()173 u32 clearColor = 0; in MakeClearRequest() local177 u8 red = FloatToUnsignedByte( colorBuffer.clearColor[ 0 ] ); in MakeClearRequest()178 u8 green = FloatToUnsignedByte( colorBuffer.clearColor[ 1 ] ); in MakeClearRequest()179 u8 blue = FloatToUnsignedByte( colorBuffer.clearColor[ 2 ] ); in MakeClearRequest()183 u8 alpha = FloatToUnsignedByte( colorBuffer.clearColor[ 3 ] ); in MakeClearRequest()188 clearColor = ( red << 24 ) | in MakeClearRequest()195 u8 alpha = FloatToUnsignedByte( colorBuffer.clearColor[ 3 ] ); in MakeClearRequest()199 clearColor = ( ( ( red >> 3 ) & 0x1f ) << 11 ) | in MakeClearRequest()208 clearColor = ( ( ( red >> 3 ) & 0x1f ) << 11 ) | in MakeClearRequest()[all …]
93 f32 clearColor[ 4 ]; variable