OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bitmapConfig
(Results
1 - 4
of
4
) sorted by null
/external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/decoder/
CompatDecoderFactory.java
17
private final Bitmap.Config
bitmapConfig
;
30
* @param
bitmapConfig
bitmap configuration to be used when loading images.
32
public CompatDecoderFactory(@NonNull Class<? extends T> clazz, Bitmap.Config
bitmapConfig
) {
34
this.
bitmapConfig
=
bitmapConfig
;
39
if (
bitmapConfig
== null) {
43
return ctor.newInstance(
bitmapConfig
);
SkiaImageDecoder.java
30
private final Bitmap.Config
bitmapConfig
;
39
public SkiaImageDecoder(Bitmap.Config
bitmapConfig
) {
41
if (
bitmapConfig
!= null) {
42
this.
bitmapConfig
=
bitmapConfig
;
44
this.
bitmapConfig
= globalBitmapConfig;
46
this.
bitmapConfig
= Bitmap.Config.RGB_565;
55
options.inPreferredConfig =
bitmapConfig
;
SkiaImageRegionDecoder.java
42
private final Bitmap.Config
bitmapConfig
;
51
public SkiaImageRegionDecoder(Bitmap.Config
bitmapConfig
) {
53
if (
bitmapConfig
!= null) {
54
this.
bitmapConfig
=
bitmapConfig
;
56
this.
bitmapConfig
= globalBitmapConfig;
58
this.
bitmapConfig
= Bitmap.Config.RGB_565;
116
options.inPreferredConfig =
bitmapConfig
;
SkiaPooledImageRegionDecoder.java
69
private final Bitmap.Config
bitmapConfig
;
85
public SkiaPooledImageRegionDecoder(Bitmap.Config
bitmapConfig
) {
87
if (
bitmapConfig
!= null) {
88
this.
bitmapConfig
=
bitmapConfig
;
90
this.
bitmapConfig
= globalBitmapConfig;
92
this.
bitmapConfig
= Bitmap.Config.RGB_565;
262
options.inPreferredConfig =
bitmapConfig
;
Completed in 58 milliseconds