Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 576 Bytes

d3d2glsl.h

File metadata and controls

27 lines (20 loc) · 576 Bytes
 
Feb 10, 2008
Feb 10, 2008
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
* d3d2glsl; generate GLSL programs from bytecode of compiled Direct3D shaders.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/
#ifndef __INCL_D3D2GLSL_H_
#define __INCL_D3D2GLSL_H_
#ifdef __cplusplus
extern "C" {
#endif
/* !!! FIXME: documentation. */
/* !!! FIXME: this needs to change to return a buffer of GLSL code. */
Feb 12, 2008
Feb 12, 2008
18
int D3D2GLSL_parse(const unsigned char *tokenbuf, const unsigned int bufsize);
Feb 10, 2008
Feb 10, 2008
19
20
21
22
23
24
25
26
#ifdef __cplusplus
}
#endif
#endif /* include-once blocker. */
/* end of d3d2glsl.h ... */