blob: ee5f938ec436b50387c6da4ecf2c86e724dad9a1 [file] [log] [blame]
Jason Sams6ab97682012-08-10 12:09:43 -07001/*
2 * Copyright (C) 2008 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
19import android.content.Context;
20import android.content.res.Resources;
21import android.util.Log;
22
23import java.io.File;
24import java.io.IOException;
25import java.io.InputStream;
26import java.util.Map.Entry;
27import java.util.HashMap;
28
29import java.lang.reflect.Field;
30import java.lang.reflect.Modifier;
31
32/**
33 * @hide
34 **/
35public class ScriptIntrinsicYuvToRGB extends ScriptIntrinsic {
36 ScriptIntrinsicYuvToRGB(int id, RenderScript rs) {
37 super(id, rs);
38 }
39
40
41
42 public static class Builder {
43 RenderScript mRS;
44
45 public Builder(RenderScript rs) {
46 mRS = rs;
47 }
48
49 public void setInputFormat(int inputFormat) {
50
51 }
52
53 public void setOutputFormat(Element e) {
54
55 }
56
57 public ScriptIntrinsicYuvToRGB create() {
58 return null;
59
60 }
61
62 }
63
64}