108 lines
2.8 KiB
Java
108 lines
2.8 KiB
Java
/*
|
|
* 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;
|
|
|
|
/**
|
|
* @hide
|
|
**/
|
|
public class Script extends BaseObj {
|
|
public static final int MAX_SLOT = 16;
|
|
|
|
boolean mIsRoot;
|
|
Type[] mTypes;
|
|
boolean[] mWritable;
|
|
|
|
Script(int id, RenderScript rs) {
|
|
super(rs);
|
|
mID = id;
|
|
}
|
|
|
|
public void bindAllocation(Allocation va, int slot) {
|
|
mRS.nScriptBindAllocation(mID, va.mID, slot);
|
|
}
|
|
|
|
public void setClearColor(float r, float g, float b, float a) {
|
|
mRS.nScriptSetClearColor(mID, r, g, b, a);
|
|
}
|
|
|
|
public void setClearDepth(float d) {
|
|
mRS.nScriptSetClearDepth(mID, d);
|
|
}
|
|
|
|
public void setClearStencil(int stencil) {
|
|
mRS.nScriptSetClearStencil(mID, stencil);
|
|
}
|
|
|
|
public void setTimeZone(String timeZone) {
|
|
try {
|
|
mRS.nScriptSetTimeZone(mID, timeZone.getBytes("UTF-8"));
|
|
} catch (java.io.UnsupportedEncodingException e) {
|
|
throw new RuntimeException(e);
|
|
}
|
|
}
|
|
|
|
public static class Builder {
|
|
RenderScript mRS;
|
|
boolean mIsRoot = false;
|
|
Type[] mTypes;
|
|
String[] mNames;
|
|
boolean[] mWritable;
|
|
|
|
Builder(RenderScript rs) {
|
|
mRS = rs;
|
|
mTypes = new Type[MAX_SLOT];
|
|
mNames = new String[MAX_SLOT];
|
|
mWritable = new boolean[MAX_SLOT];
|
|
}
|
|
|
|
public void setType(Type t, int slot) {
|
|
mTypes[slot] = t;
|
|
mNames[slot] = null;
|
|
}
|
|
|
|
public void setType(Type t, String name, int slot) {
|
|
mTypes[slot] = t;
|
|
mNames[slot] = name;
|
|
}
|
|
|
|
public void setType(boolean writable, int slot) {
|
|
mWritable[slot] = writable;
|
|
}
|
|
|
|
void transferCreate() {
|
|
mRS.nScriptSetRoot(mIsRoot);
|
|
for(int ct=0; ct < mTypes.length; ct++) {
|
|
if(mTypes[ct] != null) {
|
|
mRS.nScriptSetType(mTypes[ct].mID, mWritable[ct], mNames[ct], ct);
|
|
}
|
|
}
|
|
}
|
|
|
|
void transferObject(Script s) {
|
|
s.mIsRoot = mIsRoot;
|
|
s.mTypes = mTypes;
|
|
}
|
|
|
|
public void setRoot(boolean r) {
|
|
mIsRoot = r;
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|