Searched refs:ShortLookupTable (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/image/
H A DShortLookupTable.java43 public class ShortLookupTable extends LookupTable { class in inherits:LookupTable
52 * Constructs a ShortLookupTable object from an array of short
63 public ShortLookupTable(int offset, short data[][]) { method in class:ShortLookupTable
75 * Constructs a ShortLookupTable object from an array
84 public ShortLookupTable(int offset, short data[]) { method in class:ShortLookupTable
93 * Returns the lookup table data by reference. If this ShortLookupTable
96 * @return ShortLookupTable data array.
H A DLookupOp.java299 else if (ltable instanceof ShortLookupTable) {
300 shortFilter ((ShortLookupTable) ltable, src, dst, width,
394 else if (ltable instanceof ShortLookupTable) {
522 private final void shortFilter(ShortLookupTable lookup, Raster src,
H A DRescaleOp.java220 * Creates a ShortLookupTable to implement the rescale.
226 private ShortLookupTable createShortLut(float scale[],
250 return new ShortLookupTable(0, lutData);
517 ShortLookupTable lut = createShortLut(scaleFactors, offsets,
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DBufferedBufImgOps.java41 import java.awt.image.ShortLookupTable;
311 } else if (table instanceof ShortLookupTable) {
312 short[][] data = ((ShortLookupTable)table).getTable();
344 if (table instanceof ShortLookupTable) {
345 short[][] data = ((ShortLookupTable)table).getTable();
372 short[][] data = ((ShortLookupTable)table).getTable();
/openjdk7/jdk/test/sun/java2d/OpenGL/
H A DDrawBufImgOp.java134 ShortLookupTable lut1 = new ShortLookupTable(offset, invert);
136 ShortLookupTable lut3 =
137 new ShortLookupTable(offset,
140 ShortLookupTable lut4 =
141 new ShortLookupTable(offset,
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/
H A DImageTests.java67 import java.awt.image.ShortLookupTable;
820 new LookupOp(new ShortLookupTable(0, invert),
826 new LookupOp(new ShortLookupTable(0, yellowInvert),

Completed in 30 milliseconds