OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PF_BGRX
(Results
1 - 6
of
6
) sorted by null
/external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
TJ.java
151
public static final int
PF_BGRX
= 3;
178
* BGRA pixel format. This is the same as {@link #
PF_BGRX
}, except that when
234
* of format <code>TJ.
PF_BGRX
</code> is stored in <code>char pixel[]</code>,
236
* <code>pixel[TJ.getRedOffset(TJ.
PF_BGRX
)]</code>.
256
* of format <code>TJ.
PF_BGRX
</code> is stored in <code>char pixel[]</code>,
258
* <code>pixel[TJ.getGreenOffset(TJ.
PF_BGRX
)]</code>.
278
* of format <code>TJ.
PF_BGRX
</code> is stored in <code>char pixel[]</code>,
280
* <code>pixel[TJ.getBlueOffset(TJ.
PF_BGRX
)]</code>.
TJCompressor.java
229
pixelFormat = TJ.
PF_BGRX
;
TJDecompressor.java
[
all
...]
/external/libjpeg-turbo/java/
TJExample.java
292
bmpBuf = tjd.decompress(width, 0, height, TJ.
PF_BGRX
, flags);
329
tjc.setSourceImage(bmpBuf, 0, 0, width, 0, height, TJ.
PF_BGRX
);
TJUnitTest.java
78
TJ.PF_RGBX, TJ.
PF_BGRX
, TJ.PF_XBGR, TJ.PF_XRGB, TJ.PF_CMYK
120
return TJ.
PF_BGRX
;
873
tjc.setSourceImage(srcBuf, 0, 0, w, 0, h, TJ.
PF_BGRX
);
889
tjc.setSourceImage(srcBuf, 0, 0, h, 0, w, TJ.
PF_BGRX
);
[
all
...]
TJBench.java
729
pf = TJ.
PF_BGRX
;
[
all
...]
Completed in 200 milliseconds