blob: bb2c06a16fbbda2a3b1b631929a2825fc9509d84 [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 Sams3bc47d42009-11-12 15:10:25 -080058RsContext rsContextCreate(RsDevice, uint32_t version, bool useDepth);
Jason Samsd19f10d2009-05-22 14:03:28 -070059void rsContextDestroy(RsContext);
Jason Sams730ee652009-08-18 17:07:09 -070060void rsObjDestroyOOB(RsContext, void *);
Jason Samsd19f10d2009-05-22 14:03:28 -070061
Jason Sams516c3192009-10-06 13:58:47 -070062uint32_t rsContextGetMessage(RsContext, void *data, size_t *receiveLen, size_t bufferLen, bool wait);
63void rsContextInitToClient(RsContext);
64void rsContextDeinitToClient(RsContext);
65
Jason Sams1bada8c2009-08-09 17:01:55 -070066#define RS_MAX_TEXTURE 2
67
Jason Samsd19f10d2009-05-22 14:03:28 -070068enum RsDataType {
Jason Sams718cd1f2009-12-23 14:35:29 -080069 RS_TYPE_NONE,
70 RS_TYPE_FLOAT_16,
71 RS_TYPE_FLOAT_32,
72 RS_TYPE_FLOAT_64,
73 RS_TYPE_SIGNED_8,
74 RS_TYPE_SIGNED_16,
75 RS_TYPE_SIGNED_32,
76 RS_TYPE_SIGNED_64,
77 RS_TYPE_UNSIGNED_8,
78 RS_TYPE_UNSIGNED_16,
79 RS_TYPE_UNSIGNED_32,
80 RS_TYPE_UNSIGNED_64,
81
82 RS_TYPE_UNSIGNED_5_6_5,
83 RS_TYPE_UNSIGNED_5_5_5_1,
84 RS_TYPE_UNSIGNED_4_4_4_4,
85
86 RS_TYPE_ELEMENT,
87 RS_TYPE_TYPE,
88 RS_TYPE_ALLOCATION,
89 RS_TYPE_SAMPLER,
90 RS_TYPE_SCRIPT,
91 RS_TYPE_MESH,
92 RS_TYPE_PROGRAM_FRAGMENT,
93 RS_TYPE_PROGRAM_VERTEX,
94 RS_TYPE_PROGRAM_RASTER,
95 RS_TYPE_PROGRAM_STORE
Jason Samsd19f10d2009-05-22 14:03:28 -070096};
97
98enum RsDataKind {
99 RS_KIND_USER,
Jason Sams718cd1f2009-12-23 14:35:29 -0800100 RS_KIND_COLOR,
101 RS_KIND_POSITION,
102 RS_KIND_TEXTURE,
103 RS_KIND_NORMAL,
Jason Sams25ffcdc2009-08-20 16:10:36 -0700104 RS_KIND_INDEX,
Jason Sams718cd1f2009-12-23 14:35:29 -0800105 RS_KIND_POINT_SIZE,
106
107 RS_KIND_PIXEL_L,
108 RS_KIND_PIXEL_A,
109 RS_KIND_PIXEL_LA,
110 RS_KIND_PIXEL_RGB,
111 RS_KIND_PIXEL_RGBA,
112
Jason Samsd19f10d2009-05-22 14:03:28 -0700113};
114
Jason Samsd19f10d2009-05-22 14:03:28 -0700115enum RsSamplerParam {
116 RS_SAMPLER_MIN_FILTER,
117 RS_SAMPLER_MAG_FILTER,
118 RS_SAMPLER_WRAP_S,
119 RS_SAMPLER_WRAP_T,
120 RS_SAMPLER_WRAP_R
Jason Sams1bada8c2009-08-09 17:01:55 -0700121};
Jason Samsd19f10d2009-05-22 14:03:28 -0700122
123enum RsSamplerValue {
124 RS_SAMPLER_NEAREST,
125 RS_SAMPLER_LINEAR,
126 RS_SAMPLER_LINEAR_MIP_LINEAR,
127 RS_SAMPLER_WRAP,
128 RS_SAMPLER_CLAMP
Jason Sams1bada8c2009-08-09 17:01:55 -0700129};
Jason Samsd19f10d2009-05-22 14:03:28 -0700130
131enum RsDimension {
132 RS_DIMENSION_X,
133 RS_DIMENSION_Y,
134 RS_DIMENSION_Z,
135 RS_DIMENSION_LOD,
136 RS_DIMENSION_FACE,
137
Jason Sams1bada8c2009-08-09 17:01:55 -0700138 RS_DIMENSION_ARRAY_0 = 100,
139 RS_DIMENSION_ARRAY_1,
140 RS_DIMENSION_ARRAY_2,
Jason Samsd19f10d2009-05-22 14:03:28 -0700141 RS_DIMENSION_ARRAY_3,
142 RS_DIMENSION_MAX = RS_DIMENSION_ARRAY_3
143};
144
145enum RsDepthFunc {
146 RS_DEPTH_FUNC_ALWAYS,
147 RS_DEPTH_FUNC_LESS,
148 RS_DEPTH_FUNC_LEQUAL,
149 RS_DEPTH_FUNC_GREATER,
150 RS_DEPTH_FUNC_GEQUAL,
151 RS_DEPTH_FUNC_EQUAL,
152 RS_DEPTH_FUNC_NOTEQUAL
153};
154
155enum RsBlendSrcFunc {
Jason Samsb0ec1b42009-07-28 12:02:16 -0700156 RS_BLEND_SRC_ZERO, // 0
157 RS_BLEND_SRC_ONE, // 1
158 RS_BLEND_SRC_DST_COLOR, // 2
159 RS_BLEND_SRC_ONE_MINUS_DST_COLOR, // 3
160 RS_BLEND_SRC_SRC_ALPHA, // 4
161 RS_BLEND_SRC_ONE_MINUS_SRC_ALPHA, // 5
162 RS_BLEND_SRC_DST_ALPHA, // 6
163 RS_BLEND_SRC_ONE_MINUS_DST_ALPHA, // 7
164 RS_BLEND_SRC_SRC_ALPHA_SATURATE // 8
Jason Samsd19f10d2009-05-22 14:03:28 -0700165};
166
167enum RsBlendDstFunc {
Jason Samsb0ec1b42009-07-28 12:02:16 -0700168 RS_BLEND_DST_ZERO, // 0
169 RS_BLEND_DST_ONE, // 1
170 RS_BLEND_DST_SRC_COLOR, // 2
171 RS_BLEND_DST_ONE_MINUS_SRC_COLOR, // 3
172 RS_BLEND_DST_SRC_ALPHA, // 4
173 RS_BLEND_DST_ONE_MINUS_SRC_ALPHA, // 5
174 RS_BLEND_DST_DST_ALPHA, // 6
175 RS_BLEND_DST_ONE_MINUS_DST_ALPHA // 7
Jason Samsd19f10d2009-05-22 14:03:28 -0700176};
177
178enum RsTexEnvMode {
Jason Sams68afd012009-12-17 16:55:08 -0800179 RS_TEX_ENV_MODE_NONE,
Jason Samsd19f10d2009-05-22 14:03:28 -0700180 RS_TEX_ENV_MODE_REPLACE,
181 RS_TEX_ENV_MODE_MODULATE,
182 RS_TEX_ENV_MODE_DECAL
183};
184
Jason Sams0011bcf2009-12-15 12:58:36 -0800185enum RsProgramParam {
186 RS_PROGRAM_PARAM_INPUT,
187 RS_PROGRAM_PARAM_OUTPUT,
188 RS_PROGRAM_PARAM_CONSTANT,
Jason Sams7e5ab3b2009-12-15 13:27:04 -0800189 RS_PROGRAM_PARAM_TEXTURE_COUNT,
Jason Sams0011bcf2009-12-15 12:58:36 -0800190};
191
Jason Sams7c878f32009-06-30 14:13:04 -0700192enum RsPrimitive {
193 RS_PRIMITIVE_POINT,
194 RS_PRIMITIVE_LINE,
195 RS_PRIMITIVE_LINE_STRIP,
196 RS_PRIMITIVE_TRIANGLE,
197 RS_PRIMITIVE_TRIANGLE_STRIP,
198 RS_PRIMITIVE_TRIANGLE_FAN
199};
Jason Samsd19f10d2009-05-22 14:03:28 -0700200
201
202#include "rsgApiFuncDecl.h"
203
204#ifdef __cplusplus
205};
206#endif
207
208#endif // RENDER_SCRIPT_H
209
210
211