opentk/Source/Converter
Robert Rouhani 3a9dfc62ad Fixed extra endregion directive that prevented compilation.
Fixed some warnings about csproj files.
2013-01-16 22:11:18 -08:00
..
Headers Synced trunk with 1.0 branch. 2010-10-02 18:52:34 +00:00
Properties All projects now read common AssemblyInfo items from GlobalAssemblyInfo.cs. The various AssemblyInfo.cs files now only contain project-specific information. Assembly versions are now controlled by Build.UpdateVersion. 2010-10-04 21:37:33 +00:00
ESCLParser.cs Merged gl4 branch into trunk 2010-12-04 21:51:40 +00:00
GLParser.cs Merged gl4 branch into trunk 2010-12-04 21:51:40 +00:00
Generator.Convert.csproj Fixed extra endregion directive that prevented compilation. 2013-01-16 22:11:18 -08:00
Main.cs Merged gl4 branch into trunk 2010-12-04 21:51:40 +00:00
Options.cs Fixed project layout (files should be at root of project, not inside a folder). 2009-09-06 09:35:11 +00:00
Parser.cs Merged gl4 branch into trunk 2010-12-04 21:51:40 +00:00
Readme.txt Updated Generator.Convert documentation to match what the tool actually does. 2011-07-26 11:54:09 +00:00
XML schema notes.txt Fixed project layout (files should be at root of project, not inside a folder). 2009-09-06 09:35:11 +00:00

Readme.txt

[Introduction]

This is a simple tool to convert C headers to XML files. It works using simple pattern matching - it does not actually parse the header files. For this reason, it will work with only a few, specific header files: ES and CL at this point.


[Usage]

Convert.exe -p:{PREFIX} -v:{VERSION} -t:{TYPE} -o:{OUT} {INPUT1} ... {INPUTn}
    {PREFIX} is a simple string that defines the a common prefix for functions and constants in this header. This prefix will be removed from the generated XML file.
    {VERSION} is a string that defines that version that will be used for functions in the generated XML file. Specific input files may override this setting.
	{TYPE} can be either 'spec' or 'header' to indicate whether the input files are OpenGL .spec files or C headers.
	{OUT} is the output filename (optional). If no output file is specified, output will be directed to the console.
    {INPUT1..n} is a space-separated list of input files (headers).
    
Despite what the help says, all three parameters are necessary at the moment.


[Known issues]

OpenGL|ES 2.0: gl*Fence[s|iv]?NV fail to define parameters names. These have been added by hand (take care when updating the header file).


[Support]

If you encounter a bug, please file an issue report at http://www.opentk.com/issues

We will only accept bug reports for supported header files. This is not a generic tool and will fail to parse unsupported files.