blob: 28c2a7b82c0963d13c448843f03cd19a3250e96e [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 ScriptIntrinsicColorMatrixThunker extends ScriptIntrinsicColorMatrix {
android.renderscript.ScriptIntrinsicColorMatrix mN;
android.renderscript.ScriptIntrinsicColorMatrix getNObj() {
return mN;
}
private ScriptIntrinsicColorMatrixThunker(int id, RenderScript rs) {
super(id, rs);
}
public static ScriptIntrinsicColorMatrixThunker create(RenderScript rs, Element e) {
RenderScriptThunker rst = (RenderScriptThunker) rs;
ElementThunker et = (ElementThunker)e;
ScriptIntrinsicColorMatrixThunker cm = new ScriptIntrinsicColorMatrixThunker(0, rs);
cm.mN = android.renderscript.ScriptIntrinsicColorMatrix.create(rst.mN, et.getNObj());
return cm;
}
public void setColorMatrix(Matrix4f m) {
mN.setColorMatrix(new android.renderscript.Matrix4f(m.getArray()));
}
public void setColorMatrix(Matrix3f m) {
mN.setColorMatrix(new android.renderscript.Matrix3f(m.getArray()));
}
public void setGreyscale() {
mN.setGreyscale();
}
public void setYUVtoRGB() {
mN.setYUVtoRGB();
}
public void setRGBtoYUV() {
mN.setRGBtoYUV();
}
public void forEach(Allocation ain, Allocation aout) {
AllocationThunker aint = (AllocationThunker)ain;
AllocationThunker aoutt = (AllocationThunker)aout;
mN.forEach(aint.getNObj(), aoutt.getNObj());
}
public Script.KernelID getKernelID() {
Script.KernelID k = createKernelID(0, 3, null, null);
k.mN = mN.getKernelID();
return k;
}
}