blob: 02667d8343599ba0e0247ea8f671d2a3877c68f8 [file] [log] [blame]
Jason Samsd19f10d2009-05-22 14:03:28 -07001/*
2 * Copyright (C) 2007 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
17#ifndef RENDER_SCRIPT_H
18#define RENDER_SCRIPT_H
19
20#include <stdint.h>
21#include <sys/types.h>
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
27//////////////////////////////////////////////////////
Jason Sams1bada8c2009-08-09 17:01:55 -070028//
Jason Samsd19f10d2009-05-22 14:03:28 -070029
30typedef void * RsAdapter1D;
31typedef void * RsAdapter2D;
32typedef void * RsAllocation;
33typedef void * RsContext;
34typedef void * RsDevice;
35typedef void * RsElement;
Jason Sams64676f32009-07-08 18:01:53 -070036typedef void * RsFile;
Jason Samsd19f10d2009-05-22 14:03:28 -070037typedef void * RsSampler;
38typedef void * RsScript;
Jason Sams1bada8c2009-08-09 17:01:55 -070039typedef void * RsSimpleMesh;
Jason Samsd19f10d2009-05-22 14:03:28 -070040typedef void * RsType;
Jason Samsbba134c2009-06-22 15:49:21 -070041typedef void * RsLight;
Jason Samsd19f10d2009-05-22 14:03:28 -070042
Jason Sams0011bcf2009-12-15 12:58:36 -080043typedef void * RsProgram;
Jason Samsd19f10d2009-05-22 14:03:28 -070044typedef void * RsProgramVertex;
45typedef void * RsProgramFragment;
46typedef void * RsProgramFragmentStore;
Jason Samsebfb4362009-09-23 13:57:02 -070047typedef void * RsProgramRaster;
48
49enum RsDeviceParam {
50 RS_DEVICE_PARAM_FORCE_SOFTWARE_GL,
51 RS_DEVICE_PARAM_COUNT
52};
Jason Samsd19f10d2009-05-22 14:03:28 -070053
54RsDevice rsDeviceCreate();
55void rsDeviceDestroy(RsDevice);
Jason Samsebfb4362009-09-23 13:57:02 -070056void rsDeviceSetConfig(RsDevice, RsDeviceParam, int32_t value);
Jason Samsd19f10d2009-05-22 14:03:28 -070057
Jason Sams704ff642010-02-09 16:05:07 -080058RsContext rsContextCreate(RsDevice, uint32_t version);
59RsContext rsContextCreateGL(RsDevice, uint32_t version, bool useDepth);
Jason Samsd19f10d2009-05-22 14:03:28 -070060void rsContextDestroy(RsContext);
Jason Sams730ee652009-08-18 17:07:09 -070061void rsObjDestroyOOB(RsContext, void *);
Jason Samsd19f10d2009-05-22 14:03:28 -070062
Jason Sams516c3192009-10-06 13:58:47 -070063uint32_t rsContextGetMessage(RsContext, void *data, size_t *receiveLen, size_t bufferLen, bool wait);
64void rsContextInitToClient(RsContext);
65void rsContextDeinitToClient(RsContext);
66
Jason Sams1bada8c2009-08-09 17:01:55 -070067#define RS_MAX_TEXTURE 2
Jason Samsa09a6e12010-01-06 11:57:52 -080068#define RS_MAX_ATTRIBS 16
Jason Sams1bada8c2009-08-09 17:01:55 -070069
Jason Samsd19f10d2009-05-22 14:03:28 -070070enum RsDataType {
Jason Sams718cd1f2009-12-23 14:35:29 -080071 RS_TYPE_NONE,
72 RS_TYPE_FLOAT_16,
73 RS_TYPE_FLOAT_32,
74 RS_TYPE_FLOAT_64,
75 RS_TYPE_SIGNED_8,
76 RS_TYPE_SIGNED_16,
77 RS_TYPE_SIGNED_32,
78 RS_TYPE_SIGNED_64,
79 RS_TYPE_UNSIGNED_8,
80 RS_TYPE_UNSIGNED_16,
81 RS_TYPE_UNSIGNED_32,
82 RS_TYPE_UNSIGNED_64,
83
84 RS_TYPE_UNSIGNED_5_6_5,
85 RS_TYPE_UNSIGNED_5_5_5_1,
86 RS_TYPE_UNSIGNED_4_4_4_4,
87
88 RS_TYPE_ELEMENT,
89 RS_TYPE_TYPE,
90 RS_TYPE_ALLOCATION,
91 RS_TYPE_SAMPLER,
92 RS_TYPE_SCRIPT,
93 RS_TYPE_MESH,
94 RS_TYPE_PROGRAM_FRAGMENT,
95 RS_TYPE_PROGRAM_VERTEX,
96 RS_TYPE_PROGRAM_RASTER,
97 RS_TYPE_PROGRAM_STORE
Jason Samsd19f10d2009-05-22 14:03:28 -070098};
99
100enum RsDataKind {
101 RS_KIND_USER,
Jason Sams718cd1f2009-12-23 14:35:29 -0800102 RS_KIND_COLOR,
103 RS_KIND_POSITION,
104 RS_KIND_TEXTURE,
105 RS_KIND_NORMAL,
Jason Sams25ffcdc2009-08-20 16:10:36 -0700106 RS_KIND_INDEX,
Jason Sams718cd1f2009-12-23 14:35:29 -0800107 RS_KIND_POINT_SIZE,
108
109 RS_KIND_PIXEL_L,
110 RS_KIND_PIXEL_A,
111 RS_KIND_PIXEL_LA,
112 RS_KIND_PIXEL_RGB,
113 RS_KIND_PIXEL_RGBA,
114
Jason Samsd19f10d2009-05-22 14:03:28 -0700115};
116
Jason Samsd19f10d2009-05-22 14:03:28 -0700117enum RsSamplerParam {
118 RS_SAMPLER_MIN_FILTER,
119 RS_SAMPLER_MAG_FILTER,
120 RS_SAMPLER_WRAP_S,
121 RS_SAMPLER_WRAP_T,
122 RS_SAMPLER_WRAP_R
Jason Sams1bada8c2009-08-09 17:01:55 -0700123};
Jason Samsd19f10d2009-05-22 14:03:28 -0700124
125enum RsSamplerValue {
126 RS_SAMPLER_NEAREST,
127 RS_SAMPLER_LINEAR,
128 RS_SAMPLER_LINEAR_MIP_LINEAR,
129 RS_SAMPLER_WRAP,
130 RS_SAMPLER_CLAMP
Jason Sams1bada8c2009-08-09 17:01:55 -0700131};
Jason Samsd19f10d2009-05-22 14:03:28 -0700132
133enum RsDimension {
134 RS_DIMENSION_X,
135 RS_DIMENSION_Y,
136 RS_DIMENSION_Z,
137 RS_DIMENSION_LOD,
138 RS_DIMENSION_FACE,
139
Jason Sams1bada8c2009-08-09 17:01:55 -0700140 RS_DIMENSION_ARRAY_0 = 100,
141 RS_DIMENSION_ARRAY_1,
142 RS_DIMENSION_ARRAY_2,
Jason Samsd19f10d2009-05-22 14:03:28 -0700143 RS_DIMENSION_ARRAY_3,
144 RS_DIMENSION_MAX = RS_DIMENSION_ARRAY_3
145};
146
147enum RsDepthFunc {
148 RS_DEPTH_FUNC_ALWAYS,
149 RS_DEPTH_FUNC_LESS,
150 RS_DEPTH_FUNC_LEQUAL,
151 RS_DEPTH_FUNC_GREATER,
152 RS_DEPTH_FUNC_GEQUAL,
153 RS_DEPTH_FUNC_EQUAL,
154 RS_DEPTH_FUNC_NOTEQUAL
155};
156
157enum RsBlendSrcFunc {
Jason Samsb0ec1b42009-07-28 12:02:16 -0700158 RS_BLEND_SRC_ZERO, // 0
159 RS_BLEND_SRC_ONE, // 1
160 RS_BLEND_SRC_DST_COLOR, // 2
161 RS_BLEND_SRC_ONE_MINUS_DST_COLOR, // 3
162 RS_BLEND_SRC_SRC_ALPHA, // 4
163 RS_BLEND_SRC_ONE_MINUS_SRC_ALPHA, // 5
164 RS_BLEND_SRC_DST_ALPHA, // 6
165 RS_BLEND_SRC_ONE_MINUS_DST_ALPHA, // 7
166 RS_BLEND_SRC_SRC_ALPHA_SATURATE // 8
Jason Samsd19f10d2009-05-22 14:03:28 -0700167};
168
169enum RsBlendDstFunc {
Jason Samsb0ec1b42009-07-28 12:02:16 -0700170 RS_BLEND_DST_ZERO, // 0
171 RS_BLEND_DST_ONE, // 1
172 RS_BLEND_DST_SRC_COLOR, // 2
173 RS_BLEND_DST_ONE_MINUS_SRC_COLOR, // 3
174 RS_BLEND_DST_SRC_ALPHA, // 4
175 RS_BLEND_DST_ONE_MINUS_SRC_ALPHA, // 5
176 RS_BLEND_DST_DST_ALPHA, // 6
177 RS_BLEND_DST_ONE_MINUS_DST_ALPHA // 7
Jason Samsd19f10d2009-05-22 14:03:28 -0700178};
179
180enum RsTexEnvMode {
Jason Sams68afd012009-12-17 16:55:08 -0800181 RS_TEX_ENV_MODE_NONE,
Jason Samsd19f10d2009-05-22 14:03:28 -0700182 RS_TEX_ENV_MODE_REPLACE,
183 RS_TEX_ENV_MODE_MODULATE,
184 RS_TEX_ENV_MODE_DECAL
185};
186
Jason Sams0011bcf2009-12-15 12:58:36 -0800187enum RsProgramParam {
188 RS_PROGRAM_PARAM_INPUT,
189 RS_PROGRAM_PARAM_OUTPUT,
190 RS_PROGRAM_PARAM_CONSTANT,
Jason Sams7e5ab3b2009-12-15 13:27:04 -0800191 RS_PROGRAM_PARAM_TEXTURE_COUNT,
Jason Sams0011bcf2009-12-15 12:58:36 -0800192};
193
Jason Sams7c878f32009-06-30 14:13:04 -0700194enum RsPrimitive {
195 RS_PRIMITIVE_POINT,
196 RS_PRIMITIVE_LINE,
197 RS_PRIMITIVE_LINE_STRIP,
198 RS_PRIMITIVE_TRIANGLE,
199 RS_PRIMITIVE_TRIANGLE_STRIP,
200 RS_PRIMITIVE_TRIANGLE_FAN
201};
Jason Samsd19f10d2009-05-22 14:03:28 -0700202
203
204#include "rsgApiFuncDecl.h"
205
206#ifdef __cplusplus
207};
208#endif
209
210#endif // RENDER_SCRIPT_H
211
212
213