2009-07-31 20:40:47 -07:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package android.renderscript;
|
|
|
|
|
2009-08-12 17:54:11 -07:00
|
|
|
import java.lang.reflect.Field;
|
|
|
|
import java.lang.reflect.Array;
|
2009-07-31 20:40:47 -07:00
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStream;
|
|
|
|
|
|
|
|
import android.content.res.Resources;
|
|
|
|
import android.graphics.Bitmap;
|
|
|
|
import android.graphics.BitmapFactory;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.renderscript.Type;
|
|
|
|
import android.util.Config;
|
|
|
|
import android.util.Log;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @hide
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
public class Allocation extends BaseObj {
|
2009-08-12 17:54:11 -07:00
|
|
|
Type mType;
|
|
|
|
|
|
|
|
Allocation(int id, RenderScript rs, Type t) {
|
2009-07-31 20:40:47 -07:00
|
|
|
super(rs);
|
|
|
|
mID = id;
|
2009-08-12 17:54:11 -07:00
|
|
|
mType = t;
|
2009-07-31 20:40:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public void uploadToTexture(int baseMipLevel) {
|
|
|
|
mRS.nAllocationUploadToTexture(mID, baseMipLevel);
|
|
|
|
}
|
|
|
|
|
2009-08-27 20:23:34 -07:00
|
|
|
public void uploadToBufferObject() {
|
|
|
|
mRS.nAllocationUploadToBufferObject(mID);
|
|
|
|
}
|
|
|
|
|
2009-07-31 20:40:47 -07:00
|
|
|
public void data(int[] d) {
|
2009-08-27 20:23:34 -07:00
|
|
|
int size = 0;
|
|
|
|
if(mType != null && mType.mElement != null) {
|
|
|
|
size = mType.mElement.mSize;
|
|
|
|
for(int ct=0; ct < mType.mValues.length; ct++) {
|
|
|
|
if(mType.mValues[ct] != 0) {
|
|
|
|
size *= mType.mValues[ct];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if((d.length * 4) < size) {
|
|
|
|
throw new IllegalArgumentException("Array too small for allocation type.");
|
|
|
|
}
|
|
|
|
Log.e("rs", "Alloc data size=" + size);
|
|
|
|
mRS.nAllocationData(mID, d, size);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
mRS.nAllocationData(mID, d, d.length * 4);
|
2009-07-31 20:40:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public void data(float[] d) {
|
2009-08-27 20:23:34 -07:00
|
|
|
int size = 0;
|
|
|
|
if(mType != null && mType.mElement != null) {
|
|
|
|
size = mType.mElement.mSize;
|
|
|
|
for(int ct=0; ct < mType.mValues.length; ct++) {
|
|
|
|
if(mType.mValues[ct] != 0) {
|
|
|
|
size *= mType.mValues[ct];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if((d.length * 4) < size) {
|
|
|
|
throw new IllegalArgumentException("Array too small for allocation type.");
|
|
|
|
}
|
|
|
|
Log.e("rs", "Alloc data size=" + size);
|
|
|
|
mRS.nAllocationData(mID, d, size);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
mRS.nAllocationData(mID, d, d.length * 4);
|
2009-07-31 20:40:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public void subData1D(int off, int count, int[] d) {
|
2009-08-27 20:23:34 -07:00
|
|
|
mRS.nAllocationSubData1D(mID, off, count, d, count * 4);
|
2009-07-31 20:40:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public void subData1D(int off, int count, float[] d) {
|
2009-08-27 20:23:34 -07:00
|
|
|
mRS.nAllocationSubData1D(mID, off, count, d, d.length * 4);
|
2009-07-31 20:40:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public void subData2D(int xoff, int yoff, int w, int h, int[] d) {
|
2009-08-27 20:23:34 -07:00
|
|
|
mRS.nAllocationSubData2D(mID, xoff, yoff, w, h, d, d.length * 4);
|
2009-07-31 20:40:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public void subData2D(int xoff, int yoff, int w, int h, float[] d) {
|
2009-08-27 20:23:34 -07:00
|
|
|
mRS.nAllocationSubData2D(mID, xoff, yoff, w, h, d, d.length * 4);
|
2009-07-31 20:40:47 -07:00
|
|
|
}
|
|
|
|
|
2009-08-10 14:55:26 -07:00
|
|
|
public void readData(int[] d) {
|
|
|
|
mRS.nAllocationRead(mID, d);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void readData(float[] d) {
|
|
|
|
mRS.nAllocationRead(mID, d);
|
|
|
|
}
|
|
|
|
|
2009-08-12 17:54:11 -07:00
|
|
|
public void data(Object o) {
|
|
|
|
mRS.nAllocationDataFromObject(mID, mType, o);
|
|
|
|
}
|
|
|
|
|
2009-08-10 14:55:26 -07:00
|
|
|
|
2009-07-31 20:40:47 -07:00
|
|
|
public class Adapter1D extends BaseObj {
|
|
|
|
Adapter1D(int id, RenderScript rs) {
|
|
|
|
super(rs);
|
|
|
|
mID = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setConstraint(Dimension dim, int value) {
|
|
|
|
mRS.nAdapter1DSetConstraint(mID, dim.mID, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void data(int[] d) {
|
|
|
|
mRS.nAdapter1DData(mID, d);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void data(float[] d) {
|
|
|
|
mRS.nAdapter1DData(mID, d);
|
|
|
|
}
|
|
|
|
|
2009-08-03 16:03:08 -07:00
|
|
|
public void subData(int off, int count, int[] d) {
|
|
|
|
mRS.nAdapter1DSubData(mID, off, count, d);
|
|
|
|
}
|
|
|
|
|
2009-07-31 20:40:47 -07:00
|
|
|
public void subData(int off, int count, float[] d) {
|
|
|
|
mRS.nAdapter1DSubData(mID, off, count, d);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public Adapter1D createAdapter1D() {
|
|
|
|
int id = mRS.nAdapter1DCreate();
|
|
|
|
if (id != 0) {
|
|
|
|
mRS.nAdapter1DBindAllocation(id, mID);
|
|
|
|
}
|
|
|
|
return new Adapter1D(id, mRS);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-03 16:03:08 -07:00
|
|
|
public class Adapter2D extends BaseObj {
|
|
|
|
Adapter2D(int id, RenderScript rs) {
|
|
|
|
super(rs);
|
|
|
|
mID = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setConstraint(Dimension dim, int value) {
|
|
|
|
mRS.nAdapter2DSetConstraint(mID, dim.mID, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void data(int[] d) {
|
|
|
|
mRS.nAdapter2DData(mID, d);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void data(float[] d) {
|
|
|
|
mRS.nAdapter2DData(mID, d);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void subData(int xoff, int yoff, int w, int h, int[] d) {
|
|
|
|
mRS.nAdapter2DSubData(mID, xoff, yoff, w, h, d);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void subData(int xoff, int yoff, int w, int h, float[] d) {
|
|
|
|
mRS.nAdapter2DSubData(mID, xoff, yoff, w, h, d);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public Adapter2D createAdapter2D() {
|
|
|
|
int id = mRS.nAdapter2DCreate();
|
|
|
|
if (id != 0) {
|
|
|
|
mRS.nAdapter2DBindAllocation(id, mID);
|
|
|
|
}
|
|
|
|
return new Adapter2D(id, mRS);
|
|
|
|
}
|
|
|
|
|
2009-07-31 20:40:47 -07:00
|
|
|
|
|
|
|
// creation
|
|
|
|
|
|
|
|
private static BitmapFactory.Options mBitmapOptions = new BitmapFactory.Options();
|
|
|
|
static {
|
|
|
|
mBitmapOptions.inScaled = false;
|
|
|
|
}
|
|
|
|
|
2009-08-09 17:01:55 -07:00
|
|
|
static public Allocation createTyped(RenderScript rs, Type type)
|
|
|
|
throws IllegalArgumentException {
|
|
|
|
|
|
|
|
if(type.mID == 0) {
|
|
|
|
throw new IllegalStateException("Bad Type");
|
|
|
|
}
|
2009-07-31 20:40:47 -07:00
|
|
|
int id = rs.nAllocationCreateTyped(type.mID);
|
2009-08-12 17:54:11 -07:00
|
|
|
return new Allocation(id, rs, type);
|
2009-07-31 20:40:47 -07:00
|
|
|
}
|
|
|
|
|
2009-08-09 17:01:55 -07:00
|
|
|
static public Allocation createSized(RenderScript rs, Element e, int count)
|
|
|
|
throws IllegalArgumentException {
|
|
|
|
|
2009-07-31 20:40:47 -07:00
|
|
|
int id;
|
|
|
|
if(e.mIsPredefined) {
|
|
|
|
id = rs.nAllocationCreatePredefSized(e.mPredefinedID, count);
|
|
|
|
} else {
|
|
|
|
id = rs.nAllocationCreateSized(e.mID, count);
|
2009-08-09 17:01:55 -07:00
|
|
|
if(id == 0) {
|
|
|
|
throw new IllegalStateException("Bad element.");
|
|
|
|
}
|
2009-07-31 20:40:47 -07:00
|
|
|
}
|
2009-08-12 17:54:11 -07:00
|
|
|
return new Allocation(id, rs, null);
|
2009-07-31 20:40:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static public Allocation createFromBitmap(RenderScript rs, Bitmap b, Element dstFmt, boolean genMips)
|
|
|
|
throws IllegalArgumentException {
|
|
|
|
if(!dstFmt.mIsPredefined) {
|
|
|
|
throw new IllegalStateException("Attempting to allocate a bitmap with a non-static element.");
|
|
|
|
}
|
|
|
|
|
|
|
|
int id = rs.nAllocationCreateFromBitmap(dstFmt.mPredefinedID, genMips, b);
|
2009-08-12 17:54:11 -07:00
|
|
|
return new Allocation(id, rs, null);
|
2009-07-31 20:40:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static public Allocation createFromBitmapBoxed(RenderScript rs, Bitmap b, Element dstFmt, boolean genMips)
|
|
|
|
throws IllegalArgumentException {
|
|
|
|
if(!dstFmt.mIsPredefined) {
|
|
|
|
throw new IllegalStateException("Attempting to allocate a bitmap with a non-static element.");
|
|
|
|
}
|
|
|
|
|
|
|
|
int id = rs.nAllocationCreateFromBitmapBoxed(dstFmt.mPredefinedID, genMips, b);
|
2009-08-12 17:54:11 -07:00
|
|
|
return new Allocation(id, rs, null);
|
2009-07-31 20:40:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static public Allocation createFromBitmapResource(RenderScript rs, Resources res, int id, Element dstFmt, boolean genMips)
|
|
|
|
throws IllegalArgumentException {
|
|
|
|
|
|
|
|
Bitmap b = BitmapFactory.decodeResource(res, id, mBitmapOptions);
|
|
|
|
return createFromBitmap(rs, b, dstFmt, genMips);
|
|
|
|
}
|
|
|
|
|
|
|
|
static public Allocation createFromBitmapResourceBoxed(RenderScript rs, Resources res, int id, Element dstFmt, boolean genMips)
|
|
|
|
throws IllegalArgumentException {
|
|
|
|
|
|
|
|
Bitmap b = BitmapFactory.decodeResource(res, id, mBitmapOptions);
|
|
|
|
return createFromBitmapBoxed(rs, b, dstFmt, genMips);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|