diff --git a/doc/generator.txt b/doc/generator.txt index 9fe8dcf7..a24413da 100644 --- a/doc/generator.txt +++ b/doc/generator.txt @@ -2,7 +2,7 @@ The binding generator -------------------------------------------------------------------- OpenGL and OpenAL binding methods are now generated by the generator tool -located in org.lwjgl.generator.*. This includes the OpenGL java source files in +located in org.lwjgl.util.generator.*. This includes the OpenGL java source files in org.lwjgl.opengl.* and the OpenAL source files in org.lwjgl.openal.*. The generator itself is based on the Annotation Processing Tool, 'apt', bundled with the 1.5 JDK. The initial implementation is designed @@ -19,7 +19,7 @@ my primary motivation for the generator. 4. Changes in the naming convention (e.g., removing the 'gl' prefix). Note that all additional features can be enabled/disabled at build time, -according the performance and conformance requirements. +according to the performance and conformance requirements. You're invited to browse the generator source, the templates and the generated source to get a feel of how the generator works. @@ -28,8 +28,8 @@ Requirements ------------ The generator needs a JDK 1.5, since template files depend on annotations and the generator itself works as an annotation processor in the APT framework. -Since we support Mac OS X which does not include java 1.5 yet, the generated -files are still in CVS and the generator is not invoked in a default build. +Since we support Mac OS X which only includes java 1.5 from Mac OS X 10.4, the +generated files are in CVS and the generator is not invoked in a default build. How to use it -------------