blob: 0ca1fa2f0d24cf75a6f9ea55092b3bbed1c90ea5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef SLANG_SIMPLIFY_H
#define SLANG_SIMPLIFY_H
extern void
slang_simplify(slang_operation *oper,
const slang_assembly_name_space * space,
slang_atom_pool * atoms);
extern GLboolean
_slang_adapt_call(slang_operation *callOper, const slang_function *fun,
const slang_assembly_name_space * space,
slang_atom_pool * atoms);
#endif /* SLANG_SIMPLIFY_H */
|