Here you can find the source of clipColor(final int compIn, final boolean allowRGB555)
public static int clipColor(final int compIn, final boolean allowRGB555)
//package com.java2s; public class Main { public static int clipColor(final int compIn, final boolean allowRGB555) { final int compOut; if (5 < compIn || !allowRGB555) { compOut = 8;/*from ww w . j a v a 2 s . com*/ } else { compOut = 5; } return compOut; } }