Searched refs:clearColor (Results 1 – 2 of 2) sorted by relevance
114 clearColor[ index ] = 0.0f; in ColorBuffer()159 u32 clearColor = 0; in MakeClearRequest() local163 u8 red = FloatToUnsignedByte( colorBuffer.clearColor[ 0 ] ); in MakeClearRequest()164 u8 green = FloatToUnsignedByte( colorBuffer.clearColor[ 1 ] ); in MakeClearRequest()165 u8 blue = FloatToUnsignedByte( colorBuffer.clearColor[ 2 ] ); in MakeClearRequest()169 u8 alpha = FloatToUnsignedByte( colorBuffer.clearColor[ 3 ] ); in MakeClearRequest()174 clearColor = ( red << 24 ) | in MakeClearRequest()181 u8 alpha = FloatToUnsignedByte( colorBuffer.clearColor[ 3 ] ); in MakeClearRequest()185 clearColor = ( ( ( red >> 3 ) & 0x1f ) << 11 ) | in MakeClearRequest()194 clearColor = ( ( ( red >> 3 ) & 0x1f ) << 11 ) | in MakeClearRequest()[all …]
92 f32 clearColor[ 4 ]; variable