Home
last modified time | relevance | path

Searched refs:byteLut (Results 1 – 4 of 4) sorted by relevance

/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/src/com/lightcrafts/model/ImageEditor/
H A DContrastMaskOperation.java33 private LookupTableJAI byteLut = null; field in ContrastMaskOperation
63 byteLut = null; in setSliderValue()
74 if (byteLut != null) in computeGammaTable()
75 return byteLut; in computeGammaTable()
79 return byteLut = new LookupTableJAI(tableDataByte); in computeGammaTable()
H A DHDROperation.java35 private LookupTableJAI byteLut = null; field in HDROperation
71 byteLut = null; in setSliderValue()
83 if (byteLut != null) in computeGammaTable()
84 return byteLut; in computeGammaTable()
88 return byteLut = new LookupTableJAI(tableDataByte); in computeGammaTable()
H A DZoneOperationImpl.java186 private LookupTableJAI byteLut = null; field in ZoneOperationImpl
193 if (byteLut != null) in computeGammaTable()
194 return byteLut; in computeGammaTable()
198 return byteLut = new LookupTableJAI(tableDataByte); in computeGammaTable()
/dports/graphics/mapserver/mapserver-7.6.4/
H A Dmapdrawgdal.c1177 GByte byteLut[256]; in ApplyLUT() local
1203 err = ParseGimpLUT( lut_def, byteLut, iColorIndex ); in ApplyLUT()
1206 err = ParseDefaultLUT( lut_def, byteLut, 255 ); in ApplyLUT()
1227 pabyOutBuffer[i] = byteLut[((GByte*)pInBuffer)[i]]; in ApplyLUT()