OSDN Git Service

72685167a4459ab1286061dc848952ba3b0fbd5f
[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 com.android.gallery3d.filtershow.cache.CachingPipeline;
23
24 public class 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
30     public Buffer(Bitmap bitmap) {
31         RenderScript rs = CachingPipeline.getRenderScriptContext();
32         mBitmap = bitmap.copy(BITMAP_CONFIG, true);
33         if (mUseAllocation) {
34             // TODO: recreate the allocation when the RS context changes
35             mAllocation = Allocation.createFromBitmap(rs, mBitmap,
36                     Allocation.MipmapControl.MIPMAP_NONE,
37                     Allocation.USAGE_SHARED | Allocation.USAGE_SCRIPT);
38         }
39     }
40
41     public Bitmap getBitmap() {
42         return mBitmap;
43     }
44
45     public Allocation getAllocation() {
46         return mAllocation;
47     }
48
49     public void sync() {
50         if (mUseAllocation) {
51             mAllocation.copyTo(mBitmap);
52         }
53     }
54
55 }
56