Searched refs:indexedColorTable (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/macosx/native/sun/awt/
H A DImageSurfaceData.h89 UInt16* indexedColorTable; member in struct:_ImageSDOps
H A DImageSurfaceData.m165 fprintf(stderr, "\t indexedColorTable=%p\n", isdo->indexedColorTable);
776 IMAGE_SURFACE_INLINE UInt16* copyARGB_PRE_bitToIndexed_8bit(jint w, jint h, jint nativePixelsBytesPerRow, Pixel32bit *pixelsSrc, jint javaPixelsBytesPerRow, jint javaPixelBytes, Pixel8bit *pixelsDst, Pixel32bit* lutdata, UInt32 lutDataSize, UInt16 *indexedColorTable)
794 if (indexedColorTable == NULL)
796 indexedColorTable = (UInt16*)malloc(indexSize*sizeof(UInt16)); // 15 bit precision, each entry capable of holding a 2 byte value
799 if (indexedColorTable != NULL)
801 memset((void*)indexedColorTable, invalidIndex, indexSize*sizeof(UInt16));
805 fprintf(stderr, "ERROR: malloc returns NULL for isdo->indexedColorTable in copyARGB_PRE_bitToIndexed_8bit");
847 if (indexedColorTable[cacheIndex] == invalidIndex)
869 indexedColorTable[cacheInde
[all...]

Completed in 31 milliseconds