2009-08-03 18:11:17 -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;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @hide
|
|
|
|
**/
|
|
|
|
public class Script extends BaseObj {
|
|
|
|
boolean mIsRoot;
|
2009-08-12 17:54:11 -07:00
|
|
|
Type[] mTypes;
|
2009-08-03 18:11:17 -07:00
|
|
|
|
|
|
|
Script(int id, RenderScript rs) {
|
|
|
|
super(rs);
|
|
|
|
mID = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void destroy() {
|
2009-08-09 17:01:55 -07:00
|
|
|
if(mDestroyed) {
|
|
|
|
throw new IllegalStateException("Object already destroyed.");
|
|
|
|
}
|
|
|
|
mDestroyed = true;
|
2009-08-03 18:11:17 -07:00
|
|
|
mRS.nScriptDestroy(mID);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void bindAllocation(Allocation va, int slot) {
|
|
|
|
mRS.nScriptBindAllocation(mID, va.mID, slot);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setClearColor(float r, float g, float b, float a) {
|
2009-08-04 16:58:20 -07:00
|
|
|
mRS.nScriptSetClearColor(mID, r, g, b, a);
|
2009-08-03 18:11:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setClearDepth(float d) {
|
2009-08-04 16:58:20 -07:00
|
|
|
mRS.nScriptSetClearDepth(mID, d);
|
2009-08-03 18:11:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setClearStencil(int stencil) {
|
2009-08-04 16:58:20 -07:00
|
|
|
mRS.nScriptSetClearStencil(mID, stencil);
|
2009-08-03 18:11:17 -07:00
|
|
|
}
|
|
|
|
|
2009-08-04 16:58:20 -07:00
|
|
|
public void setTimeZone(String timeZone) {
|
|
|
|
try {
|
|
|
|
mRS.nScriptSetTimeZone(mID, timeZone.getBytes("UTF-8"));
|
|
|
|
} catch (java.io.UnsupportedEncodingException e) {
|
|
|
|
throw new RuntimeException(e);
|
|
|
|
}
|
|
|
|
}
|
2009-08-03 18:11:17 -07:00
|
|
|
|
|
|
|
public static class Builder {
|
|
|
|
RenderScript mRS;
|
|
|
|
boolean mIsRoot = false;
|
2009-08-12 17:54:11 -07:00
|
|
|
Type[] mTypes;
|
|
|
|
int mTypeCount;
|
2009-08-03 18:11:17 -07:00
|
|
|
|
|
|
|
Builder(RenderScript rs) {
|
|
|
|
mRS = rs;
|
2009-08-12 17:54:11 -07:00
|
|
|
mTypes = new Type[4];
|
|
|
|
mTypeCount = 0;
|
2009-08-03 18:11:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public void addType(Type t) {
|
2009-08-12 17:54:11 -07:00
|
|
|
if(mTypeCount >= mTypes.length) {
|
|
|
|
Type[] nt = new Type[mTypeCount * 2];
|
|
|
|
for(int ct=0; ct < mTypeCount; ct++) {
|
|
|
|
nt[ct] = mTypes[ct];
|
|
|
|
}
|
|
|
|
mTypes = nt;
|
|
|
|
}
|
|
|
|
mTypes[mTypeCount] = t;
|
|
|
|
mTypeCount++;
|
2009-08-03 18:11:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void transferCreate() {
|
|
|
|
mRS.nScriptCSetRoot(mIsRoot);
|
2009-08-12 17:54:11 -07:00
|
|
|
for(int ct=0; ct < mTypeCount; ct++) {
|
|
|
|
mRS.nScriptCAddType(mTypes[ct].mID);
|
|
|
|
}
|
2009-08-03 18:11:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void transferObject(Script s) {
|
|
|
|
s.mIsRoot = mIsRoot;
|
2009-08-12 17:54:11 -07:00
|
|
|
s.mTypes = new Type[mTypeCount];
|
|
|
|
for(int ct=0; ct < mTypeCount; ct++) {
|
|
|
|
s.mTypes[ct] = mTypes[ct];
|
|
|
|
}
|
2009-08-03 18:11:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setRoot(boolean r) {
|
|
|
|
mIsRoot = r;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|