Searched defs:numColorsOut (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_gfx_impl.c74 /* scale a number on the range of 0..numColorsIn-1 to 0..numColorsOut-1
75 0 maps to 0 and numColorsIn-1 maps to numColorsOut-1
76 intermediate values are spread evenly between 0 and numColorsOut-1 */
78 scaleColor(int color, int numColorsIn, int numColorsOut) argument
80 return (color * (numColorsOut - 1) + (numColorsIn - 1) / 2)

Completed in 48 milliseconds