author | Ryan C. Gordon <icculus@icculus.org> |
Sun, 06 Apr 2008 04:20:39 -0400 | |
branch | trunk |
changeset 108 | b1b685bc63cb |
parent 101 | 0834e95e5e76 |
child 109 | 48e95cf41505 |
permissions | -rw-r--r-- |
7 | 1 |
/** |
35 | 2 |
* MojoShader; generate shader programs from bytecode of compiled |
3 |
* Direct3D shaders. |
|
7 | 4 |
* |
5 |
* Please see the file LICENSE.txt in the source's root directory. |
|
6 |
* |
|
7 |
* This file written by Ryan C. Gordon. |
|
8 |
*/ |
|
9 |
||
35 | 10 |
#ifndef __INCL_MOJOSHADER_H_ |
11 |
#define __INCL_MOJOSHADER_H_ |
|
7 | 12 |
|
13 |
#ifdef __cplusplus |
|
14 |
extern "C" { |
|
15 |
#endif |
|
16 |
||
20
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
18
diff
changeset
|
17 |
/* |
46 | 18 |
* For determining the version of MojoShader you are using: |
19 |
* const int compiled_against = MOJOSHADER_VERSION; |
|
20 |
* const int linked_against = MOJOSHADER_version(); |
|
21 |
* |
|
22 |
* The version is a single integer that increments, not a major/minor value. |
|
20
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
18
diff
changeset
|
23 |
*/ |
35 | 24 |
#define MOJOSHADER_VERSION 1 |
25 |
int MOJOSHADER_version(void); |
|
20
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
18
diff
changeset
|
26 |
|
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
18
diff
changeset
|
27 |
/* |
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
18
diff
changeset
|
28 |
* These allocators work just like the C runtime's malloc() and free() |
46 | 29 |
* (in fact, they probably use malloc() and free() internally if you don't |
30 |
* specify your own allocator, but don't rely on that behaviour). |
|
97
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
94
diff
changeset
|
31 |
* (data) is the pointer you supplied when specifying these allocator |
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
94
diff
changeset
|
32 |
* callbacks, in case you need instance-specific data...it is passed through |
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
94
diff
changeset
|
33 |
* to your allocator unmolested, and can be NULL if you like. |
20
bb2e8f285acc
[svn] Bunch More Work...higher level parses dest/src tokens before it goes to the
icculus
parents:
18
diff
changeset
|
34 |
*/ |
97
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
94
diff
changeset
|
35 |
typedef void *(*MOJOSHADER_malloc)(int bytes, void *data); |
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
94
diff
changeset
|
36 |
typedef void (*MOJOSHADER_free)(void *ptr, void *data); |
18
0dbdb2be8bf8
[svn] Bunch More Work. Cleanups, added app-supplied allocators, flexible output, etc.
icculus
parents:
14
diff
changeset
|
37 |
|
46 | 38 |
|
39 |
/* |
|
40 |
* These are enum values, but they also can be used in bitmasks, so we can |
|
41 |
* test if an opcode is acceptable: if (op->shader_types & ourtype) {} ... |
|
42 |
*/ |
|
43 |
typedef enum |
|
44 |
{ |
|
45 |
MOJOSHADER_TYPE_UNKNOWN = 0, |
|
46 |
MOJOSHADER_TYPE_PIXEL = (1 << 0), |
|
47 |
MOJOSHADER_TYPE_VERTEX = (1 << 1), |
|
48 |
MOJOSHADER_TYPE_GEOMETRY = (1 << 2), /* (not supported yet.) */ |
|
49 |
MOJOSHADER_TYPE_ANY = 0xFFFFFFFF /* used for bitmasks */ |
|
50 |
} MOJOSHADER_shaderType; |
|
51 |
||
94
57adfb4769a0
Simplifed public uniform information.
Ryan C. Gordon <icculus@icculus.org>
parents:
92
diff
changeset
|
52 |
/* |
57adfb4769a0
Simplifed public uniform information.
Ryan C. Gordon <icculus@icculus.org>
parents:
92
diff
changeset
|
53 |
* Data types for uniforms. See MOJOSHADER_uniform for more information. |
57adfb4769a0
Simplifed public uniform information.
Ryan C. Gordon <icculus@icculus.org>
parents:
92
diff
changeset
|
54 |
*/ |
92
bc1bb138e855
Implemented foundation for reporting uniforms to calling app.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
55 |
typedef enum |
bc1bb138e855
Implemented foundation for reporting uniforms to calling app.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
56 |
{ |
100
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
57 |
MOJOSHADER_UNIFORM_FLOAT = 0, |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
58 |
MOJOSHADER_UNIFORM_INT = 1, |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
59 |
MOJOSHADER_UNIFORM_BOOL = 2, |
94
57adfb4769a0
Simplifed public uniform information.
Ryan C. Gordon <icculus@icculus.org>
parents:
92
diff
changeset
|
60 |
} MOJOSHADER_uniformType; |
92
bc1bb138e855
Implemented foundation for reporting uniforms to calling app.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
61 |
|
94
57adfb4769a0
Simplifed public uniform information.
Ryan C. Gordon <icculus@icculus.org>
parents:
92
diff
changeset
|
62 |
/* |
57adfb4769a0
Simplifed public uniform information.
Ryan C. Gordon <icculus@icculus.org>
parents:
92
diff
changeset
|
63 |
* These are the uniforms to be set for a shader. "Uniforms" are what Direct3D |
57adfb4769a0
Simplifed public uniform information.
Ryan C. Gordon <icculus@icculus.org>
parents:
92
diff
changeset
|
64 |
* calls "Constants" ... IDirect3DDevice::SetVertexShaderConstantF() would |
57adfb4769a0
Simplifed public uniform information.
Ryan C. Gordon <icculus@icculus.org>
parents:
92
diff
changeset
|
65 |
* need this data, for example. These integers are register indexes. So if |
57adfb4769a0
Simplifed public uniform information.
Ryan C. Gordon <icculus@icculus.org>
parents:
92
diff
changeset
|
66 |
* index==6 and type==MOJOSHADER_UNIFORM_FLOAT, that means we'd expect a |
57adfb4769a0
Simplifed public uniform information.
Ryan C. Gordon <icculus@icculus.org>
parents:
92
diff
changeset
|
67 |
* 4-float vector to be specified for what would be register "c6" in D3D |
57adfb4769a0
Simplifed public uniform information.
Ryan C. Gordon <icculus@icculus.org>
parents:
92
diff
changeset
|
68 |
* assembly language, before drawing with the shader. |
57adfb4769a0
Simplifed public uniform information.
Ryan C. Gordon <icculus@icculus.org>
parents:
92
diff
changeset
|
69 |
*/ |
92
bc1bb138e855
Implemented foundation for reporting uniforms to calling app.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
70 |
typedef struct |
bc1bb138e855
Implemented foundation for reporting uniforms to calling app.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
71 |
{ |
100
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
72 |
MOJOSHADER_uniformType type; |
92
bc1bb138e855
Implemented foundation for reporting uniforms to calling app.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
73 |
int index; |
bc1bb138e855
Implemented foundation for reporting uniforms to calling app.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
74 |
} MOJOSHADER_uniform; |
bc1bb138e855
Implemented foundation for reporting uniforms to calling app.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
75 |
|
100
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
76 |
/* |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
77 |
* Data types for attributes. See MOJOSHADER_attribute for more information. |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
78 |
*/ |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
79 |
typedef enum |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
80 |
{ |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
81 |
MOJOSHADER_USAGE_POSITION = 0, |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
82 |
MOJOSHADER_USAGE_BLENDWEIGHT = 1, |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
83 |
MOJOSHADER_USAGE_BLENDINDICES = 2, |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
84 |
MOJOSHADER_USAGE_NORMAL = 3, |
101
0834e95e5e76
First shot at DCL emitter for GLSL profile. Incomplete.
Ryan C. Gordon <icculus@icculus.org>
parents:
100
diff
changeset
|
85 |
MOJOSHADER_USAGE_POINTSIZE = 4, |
100
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
86 |
MOJOSHADER_USAGE_TEXCOORD = 5, |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
87 |
MOJOSHADER_USAGE_TANGENT = 6, |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
88 |
MOJOSHADER_USAGE_BINORMAL = 7, |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
89 |
MOJOSHADER_USAGE_TESSFACTOR = 8, |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
90 |
MOJOSHADER_USAGE_POSITIONT = 9, |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
91 |
MOJOSHADER_USAGE_COLOR = 10, |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
92 |
MOJOSHADER_USAGE_FOG = 11, |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
93 |
MOJOSHADER_USAGE_DEPTH = 12, |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
94 |
MOJOSHADER_USAGE_SAMPLE = 13, |
101
0834e95e5e76
First shot at DCL emitter for GLSL profile. Incomplete.
Ryan C. Gordon <icculus@icculus.org>
parents:
100
diff
changeset
|
95 |
MOJOSHADER_USAGE_TOTAL, /* housekeeping value; not ever returned. */ |
100
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
96 |
} MOJOSHADER_usage; |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
97 |
|
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
98 |
/* |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
99 |
* These are the attributes to be set for a shader. "Attributes" are what |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
100 |
* Direct3D calls "Vertex Declarations Usages" ... |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
101 |
* IDirect3DDevice::CreateVertexDeclaration() would need this data, for |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
102 |
* example. Each attribute is associated with an array of data that uses one |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
103 |
* element per-vertex. So if usage==MOJOSHADER_USAGE_COLOR and index==1, that |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
104 |
* means we'd expect a secondary color array to be bound to this shader |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
105 |
* before drawing. |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
106 |
*/ |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
107 |
typedef struct |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
108 |
{ |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
109 |
MOJOSHADER_usage usage; |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
110 |
int index; |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
111 |
} MOJOSHADER_attribute; |
46 | 112 |
|
113 |
/* |
|
114 |
* Structure used to return data from parsing of a shader... |
|
115 |
*/ |
|
116 |
typedef struct |
|
117 |
{ |
|
118 |
/* |
|
119 |
* Human-readable error, if there is one. Will be NULL if there was no |
|
120 |
* error. The string will be UTF-8 encoded, and English only. Most of |
|
121 |
* these shouldn't be shown to the end-user anyhow. |
|
122 |
*/ |
|
123 |
const char *error; |
|
124 |
||
125 |
/* |
|
126 |
* Bytes of output from parsing. Most profiles produce a string of source |
|
127 |
* code, but profiles that do binary output may not be text at all. |
|
128 |
* Will be NULL on error. |
|
129 |
*/ |
|
130 |
const char *output; |
|
131 |
||
132 |
/* |
|
133 |
* Byte count for output, not counting any null terminator. Most profiles |
|
134 |
* produce an ASCII string of source code, but profiles that do binary |
|
135 |
* output may not be text at all. Will be 0 on error. |
|
136 |
*/ |
|
137 |
int output_len; |
|
138 |
||
139 |
/* |
|
140 |
* Count of Direct3D instructions we parsed. This is meaningless in terms |
|
141 |
* of the actual output, as the profile will probably grow or reduce |
|
142 |
* the count (or for high-level languages, not have that information at |
|
143 |
* all), but it can give you a rough idea of the size of your shader. |
|
144 |
* Will be zero on error. |
|
145 |
*/ |
|
146 |
int instruction_count; |
|
147 |
||
148 |
/* |
|
149 |
* The type of shader we parsed. Will be MOJOSHADER_TYPE_UNKNOWN on error. |
|
150 |
*/ |
|
151 |
MOJOSHADER_shaderType shader_type; |
|
152 |
||
153 |
/* |
|
154 |
* The shader's major version. If this was a "vs_3_0", this would be 3. |
|
155 |
*/ |
|
156 |
int major_ver; |
|
157 |
||
158 |
/* |
|
159 |
* The shader's minor version. If this was a "ps_1_4", this would be 4. |
|
160 |
* Two notes: for "vs_2_x", this is 1, and for "vs_3_sw", this is 255. |
|
161 |
*/ |
|
162 |
int minor_ver; |
|
163 |
||
164 |
/* |
|
92
bc1bb138e855
Implemented foundation for reporting uniforms to calling app.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
165 |
* The number of elements pointed to by (uniforms). |
bc1bb138e855
Implemented foundation for reporting uniforms to calling app.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
166 |
*/ |
bc1bb138e855
Implemented foundation for reporting uniforms to calling app.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
167 |
int uniform_count; |
bc1bb138e855
Implemented foundation for reporting uniforms to calling app.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
168 |
|
bc1bb138e855
Implemented foundation for reporting uniforms to calling app.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
169 |
/* |
94
57adfb4769a0
Simplifed public uniform information.
Ryan C. Gordon <icculus@icculus.org>
parents:
92
diff
changeset
|
170 |
* (uniform_count) elements of data that specify Uniforms to be set for |
57adfb4769a0
Simplifed public uniform information.
Ryan C. Gordon <icculus@icculus.org>
parents:
92
diff
changeset
|
171 |
* this shader. See discussion on MOJOSHADER_uniform for details. |
92
bc1bb138e855
Implemented foundation for reporting uniforms to calling app.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
172 |
*/ |
bc1bb138e855
Implemented foundation for reporting uniforms to calling app.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
173 |
MOJOSHADER_uniform *uniforms; |
bc1bb138e855
Implemented foundation for reporting uniforms to calling app.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
174 |
|
100
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
175 |
|
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
176 |
/* |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
177 |
* The number of elements pointed to by (attributes). |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
178 |
*/ |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
179 |
int attribute_count; |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
180 |
|
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
181 |
/* |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
182 |
* (attribute_count) elements of data that specify Attributes to be set |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
183 |
* for this shader. See discussion on MOJOSHADER_attribute for details. |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
184 |
*/ |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
185 |
MOJOSHADER_attribute *attributes; |
2b88649b6f98
First shot at attributes reporting API.
Ryan C. Gordon <icculus@icculus.org>
parents:
97
diff
changeset
|
186 |
|
92
bc1bb138e855
Implemented foundation for reporting uniforms to calling app.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
187 |
/* |
46 | 188 |
* This is the malloc implementation you passed to MOJOSHADER_parse(). |
189 |
*/ |
|
190 |
MOJOSHADER_malloc malloc; |
|
191 |
||
192 |
/* |
|
193 |
* This is the free implementation you passed to MOJOSHADER_parse(). |
|
194 |
*/ |
|
195 |
MOJOSHADER_free free; |
|
97
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
94
diff
changeset
|
196 |
|
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
94
diff
changeset
|
197 |
/* |
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
94
diff
changeset
|
198 |
* This is the pointer you passed as opaque data for your allocator. |
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
94
diff
changeset
|
199 |
*/ |
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
94
diff
changeset
|
200 |
void *malloc_data; |
46 | 201 |
} MOJOSHADER_parseData; |
202 |
||
203 |
||
204 |
/* |
|
205 |
* Profile string for Direct3D assembly language output. |
|
206 |
*/ |
|
207 |
#define MOJOSHADER_PROFILE_D3D "d3d" |
|
208 |
||
209 |
/* |
|
210 |
* Profile string for GLSL: OpenGL high-level shader language output. |
|
211 |
*/ |
|
212 |
#define MOJOSHADER_PROFILE_GLSL "glsl" |
|
213 |
||
97
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
94
diff
changeset
|
214 |
|
46 | 215 |
/* |
216 |
* Parse a compiled Direct3D shader's bytecode. |
|
217 |
* |
|
218 |
* This is your primary entry point into MojoShader. You need to pass it |
|
219 |
* a compiled D3D shader and tell it which "profile" you want to use to |
|
220 |
* convert it into useful data. |
|
221 |
* |
|
222 |
* The available profiles are the set of MOJOSHADER_PROFILE_* defines. |
|
223 |
* Note that MojoShader may be built without support for all listed |
|
224 |
* profiles (in which case using one here will return with an error). |
|
225 |
* |
|
226 |
* As parsing requires some memory to be allocated, you may provide a custom |
|
227 |
* allocator to this function, which will be used to allocate/free memory. |
|
228 |
* They function just like malloc() and free(). We do not use realloc(). |
|
97
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
94
diff
changeset
|
229 |
* If you don't care, pass NULL in for the allocator functions. If your |
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
94
diff
changeset
|
230 |
* allocator needs instance-specific data, you may supply it with the |
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
94
diff
changeset
|
231 |
* (d) parameter. This pointer is passed as-is to your (m) and (f) functions. |
46 | 232 |
* |
97
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
94
diff
changeset
|
233 |
* This function returns a MOJOSHADER_parseData. |
46 | 234 |
* |
235 |
* This function will never return NULL, even if the system is completely |
|
236 |
* out of memory upon entry (in which case, this function returns a static |
|
237 |
* MOJOSHADER_parseData object, which is still safe to pass to |
|
238 |
* MOJOSHADER_freeParseData()). |
|
239 |
* |
|
240 |
* This function is thread safe, so long (m) and (f) are too, and that |
|
241 |
* (tokenbuf) remains intact for the duration of the call. This allows you |
|
242 |
* to parse several shaders on separate CPU cores at the same time. |
|
243 |
*/ |
|
244 |
const MOJOSHADER_parseData *MOJOSHADER_parse(const char *profile, |
|
245 |
const unsigned char *tokenbuf, |
|
246 |
const unsigned int bufsize, |
|
247 |
MOJOSHADER_malloc m, |
|
97
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
94
diff
changeset
|
248 |
MOJOSHADER_free f, |
4a41e3d17297
Allow instance data to be passed to the allocator.
Ryan C. Gordon <icculus@icculus.org>
parents:
94
diff
changeset
|
249 |
void *d); |
46 | 250 |
|
251 |
/* |
|
252 |
* Call this to dispose of parsing results when you are done with them. |
|
253 |
* This will call the MOJOSHADER_free function you provided to |
|
254 |
* MOJOSHADER_parse multiple times, if you provided one. |
|
255 |
* Passing a NULL here is a safe no-op. |
|
256 |
* |
|
257 |
* This function is thread safe, so long as any allocator you passed into |
|
258 |
* MOJOSHADER_parse() is, too. |
|
259 |
*/ |
|
260 |
void MOJOSHADER_freeParseData(const MOJOSHADER_parseData *data); |
|
7 | 261 |
|
262 |
#ifdef __cplusplus |
|
263 |
} |
|
264 |
#endif |
|
265 |
||
266 |
#endif /* include-once blocker. */ |
|
267 |
||
35 | 268 |
/* end of mojoshader.h ... */ |
7 | 269 |