blob: e90462d11124cf9640bf050f731e766193f07171 [file] [log] [blame]
Jason Sams3a5b8012012-09-08 22:16:14 -07001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.renderscript;
18
Jason Sams3a5b8012012-09-08 22:16:14 -070019/**
Jason Sams80d81902012-09-13 17:00:48 -070020 * Intrinsic for applying a per-channel lookup table. Each
21 * channel of the input has an independant lookup table. The
22 * tables are 256 entries in size and can cover the full value
23 * range of {@link Element#U8_4}.
Jason Sams3a5b8012012-09-08 22:16:14 -070024 **/
Jason Sams80d81902012-09-13 17:00:48 -070025public final class ScriptIntrinsicLUT extends ScriptIntrinsic {
26 private final Matrix4f mMatrix = new Matrix4f();
Jason Sams3a5b8012012-09-08 22:16:14 -070027 private Allocation mTables;
Jason Sams80d81902012-09-13 17:00:48 -070028 private final byte mCache[] = new byte[1024];
Jason Sams3a5b8012012-09-08 22:16:14 -070029 private boolean mDirty = true;
30
Tim Murray460a0492013-11-19 12:45:54 -080031 private ScriptIntrinsicLUT(long id, RenderScript rs) {
Jason Sams3a5b8012012-09-08 22:16:14 -070032 super(id, rs);
33 mTables = Allocation.createSized(rs, Element.U8(rs), 1024);
34 for (int ct=0; ct < 256; ct++) {
35 mCache[ct] = (byte)ct;
36 mCache[ct + 256] = (byte)ct;
37 mCache[ct + 512] = (byte)ct;
38 mCache[ct + 768] = (byte)ct;
39 }
Stephen Hines5b4f8f92012-10-16 13:16:10 -070040 setVar(0, mTables);
Jason Sams3a5b8012012-09-08 22:16:14 -070041 }
42
43 /**
Jason Sams80d81902012-09-13 17:00:48 -070044 * Supported elements types are {@link Element#U8_4}
Jason Sams3a5b8012012-09-08 22:16:14 -070045 *
Jason Sams80d81902012-09-13 17:00:48 -070046 * The defaults tables are identity.
Jason Sams3a5b8012012-09-08 22:16:14 -070047 *
Tim Murrayc11e25c2013-04-09 11:01:01 -070048 * @param rs The RenderScript context
Jason Sams80d81902012-09-13 17:00:48 -070049 * @param e Element type for intputs and outputs
50 *
51 * @return ScriptIntrinsicLUT
Jason Sams3a5b8012012-09-08 22:16:14 -070052 */
53 public static ScriptIntrinsicLUT create(RenderScript rs, Element e) {
Tim Murray460a0492013-11-19 12:45:54 -080054 long id = rs.nScriptIntrinsicCreate(3, e.getID(rs));
Jason Sams3a5b8012012-09-08 22:16:14 -070055 return new ScriptIntrinsicLUT(id, rs);
56
57 }
58
Yang Ni8b8f75a2017-04-28 08:50:33 -070059 public void destroy() {
60 mTables.destroy();
61 super.destroy();
62 }
Jason Sams3a5b8012012-09-08 22:16:14 -070063
64 private void validate(int index, int value) {
65 if (index < 0 || index > 255) {
66 throw new RSIllegalArgumentException("Index out of range (0-255).");
67 }
68 if (value < 0 || value > 255) {
69 throw new RSIllegalArgumentException("Value out of range (0-255).");
70 }
71 }
72
Jason Sams80d81902012-09-13 17:00:48 -070073 /**
74 * Set an entry in the red channel lookup table
75 *
76 * @param index Must be 0-255
77 * @param value Must be 0-255
78 */
Jason Sams3a5b8012012-09-08 22:16:14 -070079 public void setRed(int index, int value) {
80 validate(index, value);
81 mCache[index] = (byte)value;
82 mDirty = true;
83 }
84
Jason Sams80d81902012-09-13 17:00:48 -070085 /**
86 * Set an entry in the green channel lookup table
87 *
88 * @param index Must be 0-255
89 * @param value Must be 0-255
90 */
Jason Sams3a5b8012012-09-08 22:16:14 -070091 public void setGreen(int index, int value) {
92 validate(index, value);
93 mCache[index+256] = (byte)value;
94 mDirty = true;
95 }
96
Jason Sams80d81902012-09-13 17:00:48 -070097 /**
98 * Set an entry in the blue channel lookup table
99 *
100 * @param index Must be 0-255
101 * @param value Must be 0-255
102 */
Jason Sams3a5b8012012-09-08 22:16:14 -0700103 public void setBlue(int index, int value) {
104 validate(index, value);
105 mCache[index+512] = (byte)value;
106 mDirty = true;
107 }
108
Jason Sams80d81902012-09-13 17:00:48 -0700109 /**
110 * Set an entry in the alpha channel lookup table
111 *
112 * @param index Must be 0-255
113 * @param value Must be 0-255
114 */
Jason Sams3a5b8012012-09-08 22:16:14 -0700115 public void setAlpha(int index, int value) {
116 validate(index, value);
117 mCache[index+768] = (byte)value;
118 mDirty = true;
119 }
120
Jason Sams3a5b8012012-09-08 22:16:14 -0700121 /**
Jason Sams80d81902012-09-13 17:00:48 -0700122 * Invoke the kernel and apply the lookup to each cell of ain
123 * and copy to aout.
Jason Sams3a5b8012012-09-08 22:16:14 -0700124 *
125 * @param ain Input allocation
126 * @param aout Output allocation
127 */
128 public void forEach(Allocation ain, Allocation aout) {
Tim Murray6f842ac2014-01-13 11:47:53 -0800129 forEach(ain, aout, null);
130 }
131
132 /**
133 * Invoke the kernel and apply the lookup to each cell of ain
134 * and copy to aout.
135 *
136 * @param ain Input allocation
137 * @param aout Output allocation
138 * @param opt Options for clipping
139 */
140 public void forEach(Allocation ain, Allocation aout, Script.LaunchOptions opt) {
Jason Sams3a5b8012012-09-08 22:16:14 -0700141 if (mDirty) {
142 mDirty = false;
143 mTables.copyFromUnchecked(mCache);
144 }
Tim Murray6f842ac2014-01-13 11:47:53 -0800145 forEach(0, ain, aout, null, opt);
Jason Sams3a5b8012012-09-08 22:16:14 -0700146 }
147
Jason Sams08a81582012-09-18 12:32:10 -0700148 /**
149 * Get a KernelID for this intrinsic kernel.
150 *
151 * @return Script.KernelID The KernelID object.
152 */
153 public Script.KernelID getKernelID() {
154 return createKernelID(0, 3, null, null);
155 }
Jason Sams3a5b8012012-09-08 22:16:14 -0700156}
157