2009-05-26 13:45:08 -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.
|
|
|
|
*/
|
|
|
|
|
2009-06-10 16:09:05 -07:00
|
|
|
package android.renderscript;
|
2009-05-26 13:45:08 -07:00
|
|
|
|
2009-05-28 13:38:16 -07:00
|
|
|
import java.io.IOException;
|
2009-07-31 16:26:13 -07:00
|
|
|
import java.io.InputStream;
|
|
|
|
|
|
|
|
import android.content.res.Resources;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.util.Config;
|
|
|
|
import android.util.Log;
|
|
|
|
import android.view.Surface;
|
2009-05-28 13:38:16 -07:00
|
|
|
|
2009-07-30 14:56:12 -07:00
|
|
|
import android.graphics.Bitmap;
|
|
|
|
import android.graphics.BitmapFactory;
|
|
|
|
import android.graphics.Color;
|
|
|
|
|
2009-05-26 13:45:08 -07:00
|
|
|
|
2009-07-23 15:19:03 -07:00
|
|
|
/**
|
|
|
|
* @hide
|
|
|
|
*
|
|
|
|
**/
|
2009-05-26 13:45:08 -07:00
|
|
|
public class RenderScript {
|
2009-06-23 12:22:47 -07:00
|
|
|
static final String LOG_TAG = "libRS_jni";
|
2009-05-26 13:45:08 -07:00
|
|
|
private static final boolean DEBUG = false;
|
|
|
|
private static final boolean LOG_ENABLED = DEBUG ? Config.LOGD : Config.LOGV;
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-05-28 15:37:57 -07:00
|
|
|
/*
|
2009-05-26 13:45:08 -07:00
|
|
|
* We use a class initializer to allow the native code to cache some
|
|
|
|
* field offsets.
|
|
|
|
*/
|
|
|
|
private static boolean sInitialized;
|
|
|
|
native private static void _nInit();
|
|
|
|
|
2009-07-30 14:56:12 -07:00
|
|
|
private static BitmapFactory.Options mBitmapOptions = new BitmapFactory.Options();
|
|
|
|
|
2009-05-26 13:45:08 -07:00
|
|
|
static {
|
|
|
|
sInitialized = false;
|
|
|
|
try {
|
2009-07-23 15:19:03 -07:00
|
|
|
System.loadLibrary("rs_jni");
|
2009-05-26 13:45:08 -07:00
|
|
|
_nInit();
|
|
|
|
sInitialized = true;
|
|
|
|
} catch (UnsatisfiedLinkError e) {
|
|
|
|
Log.d(LOG_TAG, "RenderScript JNI library not found!");
|
|
|
|
}
|
2009-07-30 14:56:12 -07:00
|
|
|
mBitmapOptions.inScaled = false;
|
2009-05-26 13:45:08 -07:00
|
|
|
}
|
|
|
|
|
2009-07-31 16:26:13 -07:00
|
|
|
native int nDeviceCreate();
|
|
|
|
native void nDeviceDestroy(int dev);
|
|
|
|
native int nContextCreate(int dev, Surface sur, int ver);
|
|
|
|
native void nContextDestroy(int con);
|
2009-05-26 13:45:08 -07:00
|
|
|
|
|
|
|
//void rsContextBindSampler (uint32_t slot, RsSampler sampler);
|
|
|
|
//void rsContextBindRootScript (RsScript sampler);
|
2009-07-31 16:26:13 -07:00
|
|
|
native void nContextBindRootScript(int script);
|
|
|
|
native void nContextBindSampler(int sampler, int slot);
|
|
|
|
native void nContextBindProgramFragmentStore(int pfs);
|
|
|
|
native void nContextBindProgramFragment(int pf);
|
|
|
|
native void nContextBindProgramVertex(int pf);
|
|
|
|
|
|
|
|
native void nAssignName(int obj, byte[] name);
|
|
|
|
native int nFileOpen(byte[] name);
|
|
|
|
|
|
|
|
native void nElementBegin();
|
|
|
|
native void nElementAddPredefined(int predef);
|
|
|
|
native void nElementAdd(int kind, int type, int norm, int bits);
|
|
|
|
native int nElementCreate();
|
|
|
|
native int nElementGetPredefined(int predef);
|
|
|
|
native void nElementDestroy(int obj);
|
|
|
|
|
|
|
|
native void nTypeBegin(int elementID);
|
|
|
|
native void nTypeAdd(int dim, int val);
|
|
|
|
native int nTypeCreate();
|
|
|
|
native void nTypeDestroy(int id);
|
|
|
|
|
|
|
|
native int nAllocationCreateTyped(int type);
|
|
|
|
native int nAllocationCreatePredefSized(int predef, int count);
|
|
|
|
native int nAllocationCreateSized(int elem, int count);
|
|
|
|
native int nAllocationCreateFromBitmap(int dstFmt, boolean genMips, Bitmap bmp);
|
|
|
|
native int nAllocationCreateFromBitmapBoxed(int dstFmt, boolean genMips, Bitmap bmp);
|
|
|
|
|
|
|
|
native void nAllocationUploadToTexture(int alloc, int baseMioLevel);
|
|
|
|
native void nAllocationDestroy(int alloc);
|
|
|
|
native void nAllocationData(int id, int[] d);
|
|
|
|
native void nAllocationData(int id, float[] d);
|
|
|
|
native void nAllocationSubData1D(int id, int off, int count, int[] d);
|
|
|
|
native void nAllocationSubData1D(int id, int off, int count, float[] d);
|
|
|
|
native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, int[] d);
|
|
|
|
native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, float[] d);
|
|
|
|
|
|
|
|
native void nTriangleMeshDestroy(int id);
|
|
|
|
native void nTriangleMeshBegin(int vertex, int index);
|
|
|
|
native void nTriangleMeshAddVertex_XY (float x, float y);
|
|
|
|
native void nTriangleMeshAddVertex_XYZ (float x, float y, float z);
|
|
|
|
native void nTriangleMeshAddVertex_XY_ST (float x, float y, float s, float t);
|
|
|
|
native void nTriangleMeshAddVertex_XYZ_ST (float x, float y, float z, float s, float t);
|
|
|
|
native void nTriangleMeshAddVertex_XYZ_ST_NORM (float x, float y, float z, float s, float t, float nx, float ny, float nz);
|
|
|
|
native void nTriangleMeshAddTriangle(int i1, int i2, int i3);
|
|
|
|
native int nTriangleMeshCreate();
|
|
|
|
|
|
|
|
native void nAdapter1DDestroy(int id);
|
|
|
|
native void nAdapter1DBindAllocation(int ad, int alloc);
|
|
|
|
native void nAdapter1DSetConstraint(int ad, int dim, int value);
|
|
|
|
native void nAdapter1DData(int ad, int[] d);
|
|
|
|
native void nAdapter1DSubData(int ad, int off, int count, int[] d);
|
|
|
|
native void nAdapter1DData(int ad, float[] d);
|
|
|
|
native void nAdapter1DSubData(int ad, int off, int count, float[] d);
|
|
|
|
native int nAdapter1DCreate();
|
|
|
|
|
|
|
|
native void nScriptDestroy(int script);
|
|
|
|
native void nScriptBindAllocation(int vtm, int alloc, int slot);
|
|
|
|
native void nScriptCBegin();
|
|
|
|
native void nScriptCSetClearColor(float r, float g, float b, float a);
|
|
|
|
native void nScriptCSetClearDepth(float depth);
|
|
|
|
native void nScriptCSetClearStencil(int stencil);
|
|
|
|
native void nScriptCSetTimeZone(byte[] timeZone);
|
|
|
|
native void nScriptCAddType(int type);
|
|
|
|
native void nScriptCSetRoot(boolean isRoot);
|
|
|
|
native void nScriptCSetScript(byte[] script, int offset, int length);
|
|
|
|
native int nScriptCCreate();
|
|
|
|
|
|
|
|
native void nSamplerDestroy(int sampler);
|
|
|
|
native void nSamplerBegin();
|
|
|
|
native void nSamplerSet(int param, int value);
|
|
|
|
native int nSamplerCreate();
|
|
|
|
|
|
|
|
native void nProgramFragmentStoreBegin(int in, int out);
|
|
|
|
native void nProgramFragmentStoreDepthFunc(int func);
|
|
|
|
native void nProgramFragmentStoreDepthMask(boolean enable);
|
|
|
|
native void nProgramFragmentStoreColorMask(boolean r, boolean g, boolean b, boolean a);
|
|
|
|
native void nProgramFragmentStoreBlendFunc(int src, int dst);
|
|
|
|
native void nProgramFragmentStoreDither(boolean enable);
|
|
|
|
native int nProgramFragmentStoreCreate();
|
|
|
|
native void nProgramFragmentStoreDestroy(int pgm);
|
|
|
|
|
|
|
|
native void nProgramFragmentBegin(int in, int out);
|
|
|
|
native void nProgramFragmentBindTexture(int vpf, int slot, int a);
|
|
|
|
native void nProgramFragmentBindSampler(int vpf, int slot, int s);
|
|
|
|
native void nProgramFragmentSetType(int slot, int vt);
|
|
|
|
native void nProgramFragmentSetEnvMode(int slot, int env);
|
|
|
|
native void nProgramFragmentSetTexEnable(int slot, boolean enable);
|
|
|
|
native int nProgramFragmentCreate();
|
|
|
|
native void nProgramFragmentDestroy(int pgm);
|
|
|
|
|
|
|
|
native void nProgramVertexDestroy(int pv);
|
|
|
|
native void nProgramVertexBindAllocation(int pv, int slot, int mID);
|
|
|
|
native void nProgramVertexBegin(int inID, int outID);
|
|
|
|
native void nProgramVertexSetType(int slot, int mID);
|
|
|
|
native void nProgramVertexSetTextureMatrixEnable(boolean enable);
|
|
|
|
native void nProgramVertexAddLight(int id);
|
|
|
|
native int nProgramVertexCreate();
|
|
|
|
|
|
|
|
native void nLightBegin();
|
|
|
|
native void nLightSetIsMono(boolean isMono);
|
|
|
|
native void nLightSetIsLocal(boolean isLocal);
|
|
|
|
native int nLightCreate();
|
|
|
|
native void nLightDestroy(int l);
|
|
|
|
native void nLightSetColor(int l, float r, float g, float b);
|
|
|
|
native void nLightSetPosition(int l, float x, float y, float z);
|
2009-06-22 15:49:21 -07:00
|
|
|
|
2009-05-26 13:45:08 -07:00
|
|
|
|
|
|
|
private int mDev;
|
|
|
|
private int mContext;
|
|
|
|
private Surface mSurface;
|
|
|
|
|
2009-07-31 16:26:13 -07:00
|
|
|
private static boolean mElementsInitialized = false;
|
2009-05-26 13:45:08 -07:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
2009-05-28 13:38:16 -07:00
|
|
|
//
|
2009-05-26 13:45:08 -07:00
|
|
|
|
|
|
|
RenderScript(Surface sur) {
|
|
|
|
mSurface = sur;
|
|
|
|
mDev = nDeviceCreate();
|
|
|
|
mContext = nContextCreate(mDev, mSurface, 0);
|
|
|
|
|
2009-07-31 16:26:13 -07:00
|
|
|
// TODO: This should be protected by a lock
|
|
|
|
if(!mElementsInitialized) {
|
|
|
|
Element.init(this);
|
|
|
|
mElementsInitialized = true;
|
2009-05-26 13:45:08 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Element
|
|
|
|
|
2009-07-31 16:26:13 -07:00
|
|
|
Element.Builder mElementBuilder = new Element.Builder(this);
|
|
|
|
public Element.Builder elementBuilderCreate() throws IllegalStateException {
|
|
|
|
mElementBuilder.begin();
|
|
|
|
return mElementBuilder;
|
2009-05-26 13:45:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public enum DepthFunc {
|
|
|
|
ALWAYS (0),
|
|
|
|
LESS (1),
|
|
|
|
LEQUAL (2),
|
|
|
|
GREATER (3),
|
|
|
|
GEQUAL (4),
|
|
|
|
EQUAL (5),
|
|
|
|
NOTEQUAL (6);
|
|
|
|
|
|
|
|
int mID;
|
|
|
|
DepthFunc(int id) {
|
|
|
|
mID = id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public enum BlendSrcFunc {
|
|
|
|
ZERO (0),
|
|
|
|
ONE (1),
|
|
|
|
DST_COLOR (2),
|
|
|
|
ONE_MINUS_DST_COLOR (3),
|
|
|
|
SRC_ALPHA (4),
|
|
|
|
ONE_MINUS_SRC_ALPHA (5),
|
|
|
|
DST_ALPHA (6),
|
|
|
|
ONE_MINUS_DST_ALPA (7),
|
|
|
|
SRC_ALPHA_SATURATE (8);
|
|
|
|
|
|
|
|
int mID;
|
|
|
|
BlendSrcFunc(int id) {
|
|
|
|
mID = id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public enum BlendDstFunc {
|
|
|
|
ZERO (0),
|
|
|
|
ONE (1),
|
|
|
|
SRC_COLOR (2),
|
|
|
|
ONE_MINUS_SRC_COLOR (3),
|
|
|
|
SRC_ALPHA (4),
|
|
|
|
ONE_MINUS_SRC_ALPHA (5),
|
|
|
|
DST_ALPHA (6),
|
|
|
|
ONE_MINUS_DST_ALPA (7);
|
|
|
|
|
|
|
|
int mID;
|
|
|
|
BlendDstFunc(int id) {
|
|
|
|
mID = id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public enum EnvMode {
|
|
|
|
REPLACE (0),
|
|
|
|
MODULATE (1),
|
|
|
|
DECAL (2);
|
|
|
|
|
|
|
|
int mID;
|
|
|
|
EnvMode(int id) {
|
|
|
|
mID = id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-28 15:37:57 -07:00
|
|
|
public enum SamplerParam {
|
|
|
|
FILTER_MIN (0),
|
|
|
|
FILTER_MAG (1),
|
|
|
|
WRAP_MODE_S (2),
|
|
|
|
WRAP_MODE_T (3),
|
|
|
|
WRAP_MODE_R (4);
|
|
|
|
|
|
|
|
int mID;
|
|
|
|
SamplerParam(int id) {
|
|
|
|
mID = id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public enum SamplerValue {
|
|
|
|
NEAREST (0),
|
|
|
|
LINEAR (1),
|
|
|
|
LINEAR_MIP_LINEAR (2),
|
|
|
|
WRAP (3),
|
|
|
|
CLAMP (4);
|
|
|
|
|
|
|
|
int mID;
|
|
|
|
SamplerValue(int id) {
|
|
|
|
mID = id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-26 13:45:08 -07:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Type
|
|
|
|
|
|
|
|
public enum Dimension {
|
|
|
|
X (0),
|
|
|
|
Y (1),
|
|
|
|
Z (2),
|
|
|
|
LOD (3),
|
|
|
|
FACE (4),
|
|
|
|
ARRAY_0 (100);
|
|
|
|
|
|
|
|
int mID;
|
|
|
|
Dimension(int id) {
|
|
|
|
mID = id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public class Type extends BaseObj {
|
|
|
|
Type(int id) {
|
2009-07-31 16:26:13 -07:00
|
|
|
super(RenderScript.this);
|
2009-05-26 13:45:08 -07:00
|
|
|
mID = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void destroy() {
|
|
|
|
nTypeDestroy(mID);
|
|
|
|
mID = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void typeBegin(Element e) {
|
|
|
|
nTypeBegin(e.mID);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void typeAdd(Dimension d, int value) {
|
|
|
|
nTypeAdd(d.mID, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
public Type typeCreate() {
|
|
|
|
int id = nTypeCreate();
|
|
|
|
return new Type(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Allocation
|
|
|
|
|
|
|
|
public class Allocation extends BaseObj {
|
|
|
|
Allocation(int id) {
|
2009-07-31 16:26:13 -07:00
|
|
|
super(RenderScript.this);
|
2009-05-26 13:45:08 -07:00
|
|
|
mID = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void uploadToTexture(int baseMipLevel) {
|
|
|
|
nAllocationUploadToTexture(mID, baseMipLevel);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void destroy() {
|
|
|
|
nAllocationDestroy(mID);
|
|
|
|
mID = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void data(int[] d) {
|
|
|
|
nAllocationData(mID, d);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void data(float[] d) {
|
|
|
|
nAllocationData(mID, d);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void subData1D(int off, int count, int[] d) {
|
|
|
|
nAllocationSubData1D(mID, off, count, d);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void subData1D(int off, int count, float[] d) {
|
|
|
|
nAllocationSubData1D(mID, off, count, d);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void subData2D(int xoff, int yoff, int w, int h, int[] d) {
|
|
|
|
nAllocationSubData2D(mID, xoff, yoff, w, h, d);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void subData2D(int xoff, int yoff, int w, int h, float[] d) {
|
|
|
|
nAllocationSubData2D(mID, xoff, yoff, w, h, d);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public Allocation allocationCreateTyped(Type type) {
|
|
|
|
int id = nAllocationCreateTyped(type.mID);
|
|
|
|
return new Allocation(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
public Allocation allocationCreateSized(Element e, int count) {
|
2009-07-31 16:26:13 -07:00
|
|
|
int id;
|
|
|
|
if(e.mIsPredefined) {
|
|
|
|
id = nAllocationCreatePredefSized(e.mPredefinedID, count);
|
|
|
|
} else {
|
|
|
|
id = nAllocationCreateSized(e.mID, count);
|
|
|
|
}
|
2009-05-26 13:45:08 -07:00
|
|
|
return new Allocation(id);
|
|
|
|
}
|
|
|
|
|
2009-07-31 16:26:13 -07:00
|
|
|
public Allocation allocationCreateFromBitmap(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 = nAllocationCreateFromBitmap(dstFmt.mPredefinedID, genMips, b);
|
2009-07-28 12:02:16 -07:00
|
|
|
return new Allocation(id);
|
|
|
|
}
|
|
|
|
|
2009-07-31 16:26:13 -07:00
|
|
|
public Allocation allocationCreateFromBitmapBoxed(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 = nAllocationCreateFromBitmapBoxed(dstFmt.mPredefinedID, genMips, b);
|
2009-05-27 14:45:32 -07:00
|
|
|
return new Allocation(id);
|
|
|
|
}
|
2009-05-26 13:45:08 -07:00
|
|
|
|
2009-07-31 16:26:13 -07:00
|
|
|
public Allocation allocationCreateFromBitmapResource(Resources res, int id, Element dstFmt, boolean genMips)
|
|
|
|
throws IllegalArgumentException {
|
|
|
|
|
2009-07-30 14:56:12 -07:00
|
|
|
Bitmap b = BitmapFactory.decodeResource(res, id, mBitmapOptions);
|
2009-07-31 16:26:13 -07:00
|
|
|
return allocationCreateFromBitmap(b, dstFmt, genMips);
|
2009-07-30 14:56:12 -07:00
|
|
|
}
|
|
|
|
|
2009-07-31 16:26:13 -07:00
|
|
|
public Allocation allocationCreateFromBitmapResourceBoxed(Resources res, int id, Element dstFmt, boolean genMips)
|
|
|
|
throws IllegalArgumentException {
|
|
|
|
|
2009-07-30 14:56:12 -07:00
|
|
|
Bitmap b = BitmapFactory.decodeResource(res, id, mBitmapOptions);
|
2009-07-31 16:26:13 -07:00
|
|
|
return allocationCreateFromBitmapBoxed(b, dstFmt, genMips);
|
2009-07-30 14:56:12 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-26 13:45:08 -07:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Adapter1D
|
|
|
|
|
|
|
|
public class Adapter1D extends BaseObj {
|
|
|
|
Adapter1D(int id) {
|
2009-07-31 16:26:13 -07:00
|
|
|
super(RenderScript.this);
|
2009-05-26 13:45:08 -07:00
|
|
|
mID = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void destroy() {
|
|
|
|
nAdapter1DDestroy(mID);
|
|
|
|
mID = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void bindAllocation(Allocation a) {
|
|
|
|
nAdapter1DBindAllocation(mID, a.mID);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setConstraint(Dimension dim, int value) {
|
|
|
|
nAdapter1DSetConstraint(mID, dim.mID, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void data(int[] d) {
|
|
|
|
nAdapter1DData(mID, d);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void subData(int off, int count, int[] d) {
|
|
|
|
nAdapter1DSubData(mID, off, count, d);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void data(float[] d) {
|
|
|
|
nAdapter1DData(mID, d);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void subData(int off, int count, float[] d) {
|
|
|
|
nAdapter1DSubData(mID, off, count, d);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public Adapter1D adapter1DCreate() {
|
|
|
|
int id = nAdapter1DCreate();
|
|
|
|
return new Adapter1D(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Triangle Mesh
|
|
|
|
|
|
|
|
public class TriangleMesh extends BaseObj {
|
|
|
|
TriangleMesh(int id) {
|
2009-07-31 16:26:13 -07:00
|
|
|
super(RenderScript.this);
|
2009-05-26 13:45:08 -07:00
|
|
|
mID = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void destroy() {
|
|
|
|
nTriangleMeshDestroy(mID);
|
|
|
|
mID = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void triangleMeshBegin(Element vertex, Element index) {
|
2009-07-31 16:26:13 -07:00
|
|
|
Log.e("rs", "vtx " + vertex.toString() + " " + vertex.mID + " " + vertex.mPredefinedID);
|
2009-05-26 13:45:08 -07:00
|
|
|
nTriangleMeshBegin(vertex.mID, index.mID);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void triangleMeshAddVertex_XY(float x, float y) {
|
|
|
|
nTriangleMeshAddVertex_XY(x, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void triangleMeshAddVertex_XYZ(float x, float y, float z) {
|
|
|
|
nTriangleMeshAddVertex_XYZ(x, y, z);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void triangleMeshAddVertex_XY_ST(float x, float y, float s, float t) {
|
|
|
|
nTriangleMeshAddVertex_XY_ST(x, y, s, t);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void triangleMeshAddVertex_XYZ_ST(float x, float y, float z, float s, float t) {
|
|
|
|
nTriangleMeshAddVertex_XYZ_ST(x, y, z, s, t);
|
|
|
|
}
|
|
|
|
|
2009-06-15 19:04:56 -07:00
|
|
|
public void triangleMeshAddVertex_XYZ_ST_NORM(float x, float y, float z, float s, float t, float nx, float ny, float nz) {
|
|
|
|
nTriangleMeshAddVertex_XYZ_ST_NORM(x, y, z, s, t, nx, ny, nz);
|
|
|
|
}
|
|
|
|
|
2009-05-26 13:45:08 -07:00
|
|
|
public void triangleMeshAddTriangle(int i1, int i2, int i3) {
|
|
|
|
nTriangleMeshAddTriangle(i1, i2, i3);
|
|
|
|
}
|
|
|
|
|
|
|
|
public TriangleMesh triangleMeshCreate() {
|
|
|
|
int id = nTriangleMeshCreate();
|
|
|
|
return new TriangleMesh(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Script
|
|
|
|
|
|
|
|
public class Script extends BaseObj {
|
|
|
|
Script(int id) {
|
2009-07-31 16:26:13 -07:00
|
|
|
super(RenderScript.this);
|
2009-05-26 13:45:08 -07:00
|
|
|
mID = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void destroy() {
|
|
|
|
nScriptDestroy(mID);
|
|
|
|
mID = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void bindAllocation(Allocation va, int slot) {
|
|
|
|
nScriptBindAllocation(mID, va.mID, slot);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void scriptCBegin() {
|
|
|
|
nScriptCBegin();
|
|
|
|
}
|
|
|
|
|
2009-07-30 18:45:01 -07:00
|
|
|
public void scriptCSetTimeZone(String timeZone) {
|
|
|
|
try {
|
|
|
|
byte[] bytes = timeZone.getBytes("UTF-8");
|
2009-07-31 16:26:13 -07:00
|
|
|
nScriptCSetTimeZone(bytes);
|
2009-07-30 18:45:01 -07:00
|
|
|
} catch (java.io.UnsupportedEncodingException e) {
|
|
|
|
throw new RuntimeException(e);
|
|
|
|
}
|
|
|
|
}
|
2009-07-31 16:26:13 -07:00
|
|
|
|
2009-05-26 13:45:08 -07:00
|
|
|
public void scriptCSetClearColor(float r, float g, float b, float a) {
|
|
|
|
nScriptCSetClearColor(r, g, b, a);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void scriptCSetClearDepth(float d) {
|
|
|
|
nScriptCSetClearDepth(d);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void scriptCSetClearStencil(int stencil) {
|
|
|
|
nScriptCSetClearStencil(stencil);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void scriptCAddType(Type t) {
|
|
|
|
nScriptCAddType(t.mID);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void scriptCSetRoot(boolean r) {
|
|
|
|
nScriptCSetRoot(r);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void scriptCSetScript(String s) {
|
2009-05-28 13:38:16 -07:00
|
|
|
try {
|
2009-05-28 15:34:15 -07:00
|
|
|
byte[] bytes = s.getBytes("UTF-8");
|
|
|
|
nScriptCSetScript(bytes, 0, bytes.length);
|
2009-05-28 13:38:16 -07:00
|
|
|
} catch (java.io.UnsupportedEncodingException e) {
|
|
|
|
throw new RuntimeException(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void scriptCSetScript(Resources resources, int id) {
|
|
|
|
InputStream is = resources.openRawResource(id);
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
scriptCSetScript(is);
|
|
|
|
} finally {
|
|
|
|
is.close();
|
|
|
|
}
|
|
|
|
} catch(IOException e) {
|
|
|
|
throw new Resources.NotFoundException();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void scriptCSetScript(InputStream is) throws IOException {
|
|
|
|
byte[] buf = new byte[1024];
|
|
|
|
int currentPos = 0;
|
|
|
|
while(true) {
|
|
|
|
int bytesLeft = buf.length - currentPos;
|
|
|
|
if (bytesLeft == 0) {
|
|
|
|
byte[] buf2 = new byte[buf.length * 2];
|
|
|
|
System.arraycopy(buf, 0, buf2, 0, buf.length);
|
|
|
|
buf = buf2;
|
|
|
|
bytesLeft = buf.length - currentPos;
|
|
|
|
}
|
|
|
|
int bytesRead = is.read(buf, currentPos, bytesLeft);
|
|
|
|
if (bytesRead <= 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
currentPos += bytesRead;
|
|
|
|
}
|
|
|
|
nScriptCSetScript(buf, 0, currentPos);
|
2009-05-26 13:45:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public Script scriptCCreate() {
|
|
|
|
int id = nScriptCCreate();
|
|
|
|
return new Script(id);
|
|
|
|
}
|
|
|
|
|
2009-06-11 14:46:10 -07:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// ProgramVertex
|
|
|
|
|
|
|
|
public class ProgramVertex extends BaseObj {
|
|
|
|
ProgramVertex(int id) {
|
2009-07-31 16:26:13 -07:00
|
|
|
super(RenderScript.this);
|
2009-06-11 14:46:10 -07:00
|
|
|
mID = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void destroy() {
|
|
|
|
nProgramVertexDestroy(mID);
|
|
|
|
mID = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void bindAllocation(int slot, Allocation va) {
|
|
|
|
nProgramVertexBindAllocation(mID, slot, va.mID);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void programVertexBegin(Element in, Element out) {
|
|
|
|
int inID = 0;
|
|
|
|
int outID = 0;
|
|
|
|
if (in != null) {
|
|
|
|
inID = in.mID;
|
|
|
|
}
|
|
|
|
if (out != null) {
|
|
|
|
outID = out.mID;
|
|
|
|
}
|
|
|
|
nProgramVertexBegin(inID, outID);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void programVertexSetType(int slot, Type t) {
|
|
|
|
nProgramVertexSetType(slot, t.mID);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void programVertexSetTextureMatrixEnable(boolean enable) {
|
|
|
|
nProgramVertexSetTextureMatrixEnable(enable);
|
|
|
|
}
|
|
|
|
|
2009-07-21 12:20:54 -07:00
|
|
|
public void programVertexAddLight(Light l) {
|
|
|
|
nProgramVertexAddLight(l.mID);
|
|
|
|
}
|
|
|
|
|
2009-06-11 14:46:10 -07:00
|
|
|
public ProgramVertex programVertexCreate() {
|
|
|
|
int id = nProgramVertexCreate();
|
|
|
|
return new ProgramVertex(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-26 13:45:08 -07:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// ProgramFragmentStore
|
|
|
|
|
|
|
|
public class ProgramFragmentStore extends BaseObj {
|
|
|
|
ProgramFragmentStore(int id) {
|
2009-07-31 16:26:13 -07:00
|
|
|
super(RenderScript.this);
|
2009-05-26 13:45:08 -07:00
|
|
|
mID = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void destroy() {
|
2009-06-10 15:04:38 -07:00
|
|
|
nProgramFragmentStoreDestroy(mID);
|
2009-05-26 13:45:08 -07:00
|
|
|
mID = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void programFragmentStoreBegin(Element in, Element out) {
|
|
|
|
int inID = 0;
|
|
|
|
int outID = 0;
|
|
|
|
if (in != null) {
|
|
|
|
inID = in.mID;
|
|
|
|
}
|
|
|
|
if (out != null) {
|
|
|
|
outID = out.mID;
|
|
|
|
}
|
|
|
|
nProgramFragmentStoreBegin(inID, outID);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void programFragmentStoreDepthFunc(DepthFunc func) {
|
|
|
|
nProgramFragmentStoreDepthFunc(func.mID);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void programFragmentStoreDepthMask(boolean enable) {
|
|
|
|
nProgramFragmentStoreDepthMask(enable);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void programFragmentStoreColorMask(boolean r, boolean g, boolean b, boolean a) {
|
|
|
|
nProgramFragmentStoreColorMask(r,g,b,a);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void programFragmentStoreBlendFunc(BlendSrcFunc src, BlendDstFunc dst) {
|
|
|
|
nProgramFragmentStoreBlendFunc(src.mID, dst.mID);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void programFragmentStoreDitherEnable(boolean enable) {
|
|
|
|
nProgramFragmentStoreDither(enable);
|
|
|
|
}
|
|
|
|
|
|
|
|
public ProgramFragmentStore programFragmentStoreCreate() {
|
|
|
|
int id = nProgramFragmentStoreCreate();
|
|
|
|
return new ProgramFragmentStore(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// ProgramFragment
|
|
|
|
|
|
|
|
public class ProgramFragment extends BaseObj {
|
|
|
|
ProgramFragment(int id) {
|
2009-07-31 16:26:13 -07:00
|
|
|
super(RenderScript.this);
|
2009-05-26 13:45:08 -07:00
|
|
|
mID = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void destroy() {
|
2009-06-10 15:04:38 -07:00
|
|
|
nProgramFragmentDestroy(mID);
|
2009-05-26 13:45:08 -07:00
|
|
|
mID = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void bindTexture(Allocation va, int slot) {
|
|
|
|
nProgramFragmentBindTexture(mID, slot, va.mID);
|
|
|
|
}
|
|
|
|
|
2009-05-28 15:37:57 -07:00
|
|
|
public void bindSampler(Sampler vs, int slot) {
|
|
|
|
nProgramFragmentBindSampler(mID, slot, vs.mID);
|
|
|
|
}
|
2009-05-26 13:45:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public void programFragmentBegin(Element in, Element out) {
|
|
|
|
int inID = 0;
|
|
|
|
int outID = 0;
|
|
|
|
if (in != null) {
|
|
|
|
inID = in.mID;
|
|
|
|
}
|
|
|
|
if (out != null) {
|
|
|
|
outID = out.mID;
|
|
|
|
}
|
|
|
|
nProgramFragmentBegin(inID, outID);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void programFragmentSetType(int slot, Type t) {
|
|
|
|
nProgramFragmentSetType(slot, t.mID);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void programFragmentSetType(int slot, EnvMode t) {
|
|
|
|
nProgramFragmentSetEnvMode(slot, t.mID);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void programFragmentSetTexEnable(int slot, boolean enable) {
|
|
|
|
nProgramFragmentSetTexEnable(slot, enable);
|
|
|
|
}
|
|
|
|
|
2009-07-17 17:29:09 -07:00
|
|
|
public void programFragmentSetTexEnvMode(int slot, EnvMode env) {
|
|
|
|
nProgramFragmentSetEnvMode(slot, env.mID);
|
|
|
|
}
|
|
|
|
|
2009-05-26 13:45:08 -07:00
|
|
|
public ProgramFragment programFragmentCreate() {
|
|
|
|
int id = nProgramFragmentCreate();
|
|
|
|
return new ProgramFragment(id);
|
|
|
|
}
|
|
|
|
|
2009-05-28 15:37:57 -07:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Sampler
|
|
|
|
|
|
|
|
public class Sampler extends BaseObj {
|
|
|
|
Sampler(int id) {
|
2009-07-31 16:26:13 -07:00
|
|
|
super(RenderScript.this);
|
2009-05-28 15:37:57 -07:00
|
|
|
mID = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void destroy() {
|
|
|
|
nSamplerDestroy(mID);
|
|
|
|
mID = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void samplerBegin() {
|
|
|
|
nSamplerBegin();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void samplerSet(SamplerParam p, SamplerValue v) {
|
|
|
|
nSamplerSet(p.mID, v.mID);
|
|
|
|
}
|
|
|
|
|
|
|
|
public Sampler samplerCreate() {
|
|
|
|
int id = nSamplerCreate();
|
|
|
|
return new Sampler(id);
|
|
|
|
}
|
|
|
|
|
2009-06-22 15:49:21 -07:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Light
|
|
|
|
|
|
|
|
public class Light extends BaseObj {
|
|
|
|
Light(int id) {
|
2009-07-31 16:26:13 -07:00
|
|
|
super(RenderScript.this);
|
2009-06-22 15:49:21 -07:00
|
|
|
mID = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void destroy() {
|
|
|
|
nLightDestroy(mID);
|
|
|
|
mID = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setColor(float r, float g, float b) {
|
|
|
|
nLightSetColor(mID, r, g, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setPosition(float x, float y, float z) {
|
|
|
|
nLightSetPosition(mID, x, y, z);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void lightBegin() {
|
|
|
|
nLightBegin();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void lightSetIsMono(boolean isMono) {
|
|
|
|
nLightSetIsMono(isMono);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void lightSetIsLocal(boolean isLocal) {
|
|
|
|
nLightSetIsLocal(isLocal);
|
|
|
|
}
|
|
|
|
|
|
|
|
public Light lightCreate() {
|
|
|
|
int id = nLightCreate();
|
|
|
|
return new Light(id);
|
|
|
|
}
|
2009-05-26 13:45:08 -07:00
|
|
|
|
2009-07-08 18:01:53 -07:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// File
|
|
|
|
|
|
|
|
public class File extends BaseObj {
|
|
|
|
File(int id) {
|
2009-07-31 16:26:13 -07:00
|
|
|
super(RenderScript.this);
|
2009-07-08 18:01:53 -07:00
|
|
|
mID = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void destroy() {
|
|
|
|
//nLightDestroy(mID);
|
|
|
|
mID = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public File fileOpen(String s) throws IllegalStateException, IllegalArgumentException
|
|
|
|
{
|
|
|
|
if(s.length() < 1) {
|
|
|
|
throw new IllegalArgumentException("fileOpen does not accept a zero length string.");
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
byte[] bytes = s.getBytes("UTF-8");
|
|
|
|
int id = nFileOpen(bytes);
|
|
|
|
return new File(id);
|
|
|
|
} catch (java.io.UnsupportedEncodingException e) {
|
|
|
|
throw new RuntimeException(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-26 13:45:08 -07:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Root state
|
|
|
|
|
|
|
|
public void contextBindRootScript(Script s) {
|
|
|
|
nContextBindRootScript(s.mID);
|
|
|
|
}
|
|
|
|
|
|
|
|
//public void contextBindSampler(Sampler s, int slot) {
|
|
|
|
//nContextBindSampler(s.mID);
|
|
|
|
//}
|
|
|
|
|
|
|
|
public void contextBindProgramFragmentStore(ProgramFragmentStore pfs) {
|
|
|
|
nContextBindProgramFragmentStore(pfs.mID);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void contextBindProgramFragment(ProgramFragment pf) {
|
|
|
|
nContextBindProgramFragment(pf.mID);
|
|
|
|
}
|
|
|
|
|
2009-06-15 19:04:56 -07:00
|
|
|
public void contextBindProgramVertex(ProgramVertex pf) {
|
|
|
|
nContextBindProgramVertex(pf.mID);
|
|
|
|
}
|
|
|
|
|
2009-05-26 13:45:08 -07:00
|
|
|
/*
|
|
|
|
RsAdapter2D rsAdapter2DCreate ();
|
|
|
|
void rsAdapter2DBindAllocation (RsAdapter2D adapt, RsAllocation alloc);
|
|
|
|
void rsAdapter2DDestroy (RsAdapter2D adapter);
|
|
|
|
void rsAdapter2DSetConstraint (RsAdapter2D adapter, RsDimension dim, uint32_t value);
|
|
|
|
void rsAdapter2DData (RsAdapter2D adapter, const void * data);
|
|
|
|
void rsAdapter2DSubData (RsAdapter2D adapter, uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void * data);
|
|
|
|
void rsSamplerBegin ();
|
|
|
|
void rsSamplerSet (RsSamplerParam p, RsSamplerValue value);
|
|
|
|
RsSampler rsSamplerCreate ();
|
|
|
|
void rsSamplerBind (RsSampler sampler, RsAllocation alloc);
|
|
|
|
*/
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-07-31 16:26:13 -07:00
|
|
|
|