Lines Matching refs:pixelFormat
219 public static int getPixelSize(int pixelFormat) { in getPixelSize() argument
220 checkPixelFormat(pixelFormat); in getPixelSize()
221 return pixelSize[pixelFormat]; in getPixelSize()
240 public static int getRedOffset(int pixelFormat) { in getRedOffset() argument
241 checkPixelFormat(pixelFormat); in getRedOffset()
242 return redOffset[pixelFormat]; in getRedOffset()
261 public static int getGreenOffset(int pixelFormat) { in getGreenOffset() argument
262 checkPixelFormat(pixelFormat); in getGreenOffset()
263 return greenOffset[pixelFormat]; in getGreenOffset()
282 public static int getBlueOffset(int pixelFormat) { in getBlueOffset() argument
283 checkPixelFormat(pixelFormat); in getBlueOffset()
284 return blueOffset[pixelFormat]; in getBlueOffset()
503 private static void checkPixelFormat(int pixelFormat) { in checkPixelFormat() argument
504 if (pixelFormat < 0 || pixelFormat >= NUMPF) in checkPixelFormat()