blob: ecd17f24b802df04d8e0d4ed43fcb9baa71a4ca0 [file] [log] [blame]
/*
* Copyright (C) 2013 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.support.v8.renderscript;
import android.util.Log;
class ScriptIntrinsicLUTThunker extends ScriptIntrinsicLUT {
android.renderscript.ScriptIntrinsicLUT mN;
android.renderscript.ScriptIntrinsicLUT getNObj() {
return mN;
}
private ScriptIntrinsicLUTThunker(int id, RenderScript rs) {
super(id, rs);
}
public static ScriptIntrinsicLUTThunker create(RenderScript rs, Element e) {
RenderScriptThunker rst = (RenderScriptThunker) rs;
ElementThunker et = (ElementThunker) e;
ScriptIntrinsicLUTThunker si = new ScriptIntrinsicLUTThunker(0, rs);
try {
si.mN = android.renderscript.ScriptIntrinsicLUT.create(rst.mN, et.getNObj());
} catch (android.renderscript.RSRuntimeException exc) {
throw ExceptionThunker.convertException(exc);
}
return si;
}
public void setRed(int index, int value) {
try {
mN.setRed(index, value);
} catch (android.renderscript.RSRuntimeException e) {
throw ExceptionThunker.convertException(e);
}
}
public void setGreen(int index, int value) {
try {
mN.setGreen(index, value);
} catch (android.renderscript.RSRuntimeException e) {
throw ExceptionThunker.convertException(e);
}
}
public void setBlue(int index, int value) {
try {
mN.setBlue(index, value);
} catch (android.renderscript.RSRuntimeException e) {
throw ExceptionThunker.convertException(e);
}
}
public void setAlpha(int index, int value) {
try {
mN.setAlpha(index, value);
} catch (android.renderscript.RSRuntimeException e) {
throw ExceptionThunker.convertException(e);
}
}
public void forEach(Allocation ain, Allocation aout) {
AllocationThunker aint = (AllocationThunker)ain;
AllocationThunker aoutt = (AllocationThunker)aout;
try {
mN.forEach(aint.getNObj(), aoutt.getNObj());
} catch (android.renderscript.RSRuntimeException e) {
throw ExceptionThunker.convertException(e);
}
}
public Script.KernelID getKernelID() {
Script.KernelID k = createKernelID(0, 3, null, null);
try {
k.mN = mN.getKernelID();
} catch (android.renderscript.RSRuntimeException e) {
throw ExceptionThunker.convertException(e);
}
return k;
}
}