OSDN Git Service

Merge remote-tracking branch 'origin/klp-dev-plus-aosp' into klp-dev-plus-aosp
[android-x86/packages-apps-Gallery2.git] / src / com / android / gallery3d / filtershow / pipeline / Buffer.java
1 /*
2  * Copyright (C) 2013 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.android.gallery3d.filtershow.pipeline;
18
19 import android.graphics.Bitmap;
20 import android.support.v8.renderscript.Allocation;
21 import android.support.v8.renderscript.RenderScript;
22
23 public class Buffer {
24     private static final String LOGTAG = "Buffer";
25     private Bitmap mBitmap;
26     private Allocation mAllocation;
27     private boolean mUseAllocation = false;
28     private static final Bitmap.Config BITMAP_CONFIG = Bitmap.Config.ARGB_8888;
29     private ImagePreset mPreset;
30
31     public Buffer(Bitmap bitmap) {
32         RenderScript rs = CachingPipeline.getRenderScriptContext();
33         if (bitmap != null) {
34             mBitmap = bitmap.copy(BITMAP_CONFIG, true);
35         }
36         if (mUseAllocation) {
37             // TODO: recreate the allocation when the RS context changes
38             mAllocation = Allocation.createFromBitmap(rs, mBitmap,
39                     Allocation.MipmapControl.MIPMAP_NONE,
40                     Allocation.USAGE_SHARED | Allocation.USAGE_SCRIPT);
41         }
42     }
43
44     public void setBitmap(Bitmap bitmap) {
45         mBitmap = bitmap.copy(BITMAP_CONFIG, true);
46     }
47
48     public Bitmap getBitmap() {
49         return mBitmap;
50     }
51
52     public Allocation getAllocation() {
53         return mAllocation;
54     }
55
56     public void sync() {
57         if (mUseAllocation) {
58             mAllocation.copyTo(mBitmap);
59         }
60     }
61
62     public ImagePreset getPreset() {
63         return mPreset;
64     }
65
66     public void setPreset(ImagePreset preset) {
67         if ((mPreset == null) || (!mPreset.same(preset))) {
68             mPreset = new ImagePreset(preset);
69         } else {
70             mPreset.updateWith(preset);
71         }
72     }
73 }
74