OSDN Git Service

merge in klp-release history after reset to klp-dev
[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 import android.util.Log;
23 import com.android.gallery3d.filtershow.cache.BitmapCache;
24 import com.android.gallery3d.filtershow.imageshow.MasterImage;
25
26 public class Buffer {
27     private static final String LOGTAG = "Buffer";
28     private Bitmap mBitmap;
29     private Allocation mAllocation;
30     private boolean mUseAllocation = false;
31     private ImagePreset mPreset;
32
33     public Buffer(Bitmap bitmap) {
34         RenderScript rs = CachingPipeline.getRenderScriptContext();
35         if (bitmap != null) {
36             mBitmap = bitmap;
37         }
38         if (mUseAllocation) {
39             // TODO: recreate the allocation when the RS context changes
40             mAllocation = Allocation.createFromBitmap(rs, mBitmap,
41                     Allocation.MipmapControl.MIPMAP_NONE,
42                     Allocation.USAGE_SHARED | Allocation.USAGE_SCRIPT);
43         }
44     }
45
46     public Bitmap getBitmap() {
47         return mBitmap;
48     }
49
50     public Allocation getAllocation() {
51         return mAllocation;
52     }
53
54     public void sync() {
55         if (mUseAllocation) {
56             mAllocation.copyTo(mBitmap);
57         }
58     }
59
60     public ImagePreset getPreset() {
61         return mPreset;
62     }
63
64     public void setPreset(ImagePreset preset) {
65         if ((mPreset == null) || (!mPreset.same(preset))) {
66             mPreset = new ImagePreset(preset);
67         } else {
68             mPreset.updateWith(preset);
69         }
70     }
71
72     public void remove() {
73         BitmapCache cache = MasterImage.getImage().getBitmapCache();
74         cache.cache(mBitmap);
75         mBitmap = null;
76     }
77 }
78