Lines Matching refs:params
48 private static final EnumMap<Format, DecodeParams> params
142 params.put(Format.ABGR8, new DecodeParams(4, mx___, m___x, m__x_, m_x__,
145 params.put(Format.ARGB4444, new DecodeParams(2, m4x___, m4_x__, m4__x_, m4___x,
148 params.put(Format.Alpha16, new DecodeParams(2, mxxxx, sxxxx, mxxxx, sxxxx, true));
149 params.put(Format.Alpha8, new DecodeParams(1, mxxxx, sxxxx, mxxxx, sxxxx, true));
150 params.put(Format.BGR8, new DecodeParams(3, 0, m___x, m__x_, m_x__,
153 params.put(Format.Luminance16, new DecodeParams(2, mxxxx, sxxxx, mxxxx, sxxxx, false));
154 params.put(Format.Luminance8, new DecodeParams(1, mxxxx, sxxxx, mxxxx, sxxxx, false));
155 params.put(Format.Luminance16Alpha16, new DecodeParams(4, m__xx, mxx__, 0, 0,
158 params.put(Format.Luminance16F, new DecodeParams(2, mxxxx, sxxxx, mxxxx, sxxxx, false));
159 params.put(Format.Luminance16FAlpha16F, new DecodeParams(4, m__xx, mxx__, 0, 0,
162 params.put(Format.Luminance32F, new DecodeParams(4, mxxxx, sxxxx, mxxxx, sxxxx, false));
163 params.put(Format.Luminance8, new DecodeParams(1, mxxxx, sxxxx, mxxxx, sxxxx, false));
164 params.put(Format.RGB5A1, new DecodeParams(2, m___1, m5___, m_5__, m__5_,
167 params.put(Format.RGB565, new DecodeParams(2, 0, m5__ , m_6_ , m__5,
170 params.put(Format.RGB8, new DecodeParams(3, 0, m_x__, m__x_, m___x,
173 params.put(Format.RGBA8, new DecodeParams(4, m___x, mx___, m_x__, m__x_,
206 DecodeParams p = params.get(format);
302 DecodeParams inParams = params.get(input.getFormat());
303 DecodeParams outParams = params.get(output.getFormat());
369 DecodeParams p = params.get(image.getFormat());