Lines Matching refs:pixelFormat
216 * @param pixelFormat the pixel format (one of <code>PF_*</code>)
220 public static int getPixelSize(int pixelFormat) throws Exception {
221 if (pixelFormat < 0 || pixelFormat >= NUMPF)
223 return pixelSize[pixelFormat];
238 * @param pixelFormat the pixel format (one of <code>PF_*</code>)
242 public static int getRedOffset(int pixelFormat) throws Exception {
243 if (pixelFormat < 0 || pixelFormat >= NUMPF)
245 return redOffset[pixelFormat];
260 * @param pixelFormat the pixel format (one of <code>PF_*</code>)
264 public static int getGreenOffset(int pixelFormat) throws Exception {
265 if (pixelFormat < 0 || pixelFormat >= NUMPF)
267 return greenOffset[pixelFormat];
282 * @param pixelFormat the pixel format (one of <code>PF_*</code>)
286 public static int getBlueOffset(int pixelFormat) throws Exception {
287 if (pixelFormat < 0 || pixelFormat >= NUMPF)
289 return blueOffset[pixelFormat];