Archives week 33 of 2008

Aug. 18, 2008 - Aug. 24, 2008

Time to Collect PyOpenGL Source Code Samples

Next step in regenerating the PyOpenGL documentation is to produce the per-function/per-constant sample-code references.  We do this by scanning checkouts of Open Source packages that have online source-code views and generating links to those views on the corresponding documentation pages.

Or, we could be ridiculously lazy and just use a hard-code Google Code search link, ...

Continue reading

Next Up: Code Cleanup

PyOpenGL 3.x has been in development for something on the order of 3.25 years, from the first tentative experiments in making a ctypes wrapper to something that's almost a drop-in replacement for PyOpenGL 2.x.  In that time I've gone through a significant number of code generator approaches and have altered the method I use for ...

Continue reading

Porting to PyOpenGL 3.x from PyOpenGL 2.x

Just went through the process of porting PyUI to PyOpenGL 3.x.  The changes were pretty trivial:

  • was using glVertex2i but passing it doubles (Python floats from Pygame Rects), PyOpenGL 3.x doesn't allow that kind of silent auto-conversion (just for performance reasons related to adding the call to the wrappers, I'd be happy to have it, ...

Continue reading

Almost done the doc generation script

I've got the documentation generation script for PyOpenGL 3.x to the point where the output seems to be reasonably useful.  It's definitely got rough spots, but it shows the C and Python APIs (C from docbook source files, Python by introspection).

If you just want to take a look, sample output is up at a ...

Continue reading

Documentation Generation

I've just coded up a documentation generator that can take the OpenGL man pages in DocBook format and turn them into (X)HTML.  We were previously using the DocbookXSL stuff, but unfortunately that takes hours and hours to process the OpenGL manual set.  With lxml.etree and fairly straightforward coding I can produce the base documentation in ...

Continue reading

Profiling, Debugging, Testing; Tools, Tips and Techniques

Reminder that PyGTA is meeting tonight to share experiences with tools for dealing with complex and large code-bases. How do you find bugs when they show up?  How do you determine where to spend your optimization energies?  How do you make sure they don't show up again?  What interesting tools do you have for peering ...

Continue reading

Daily archives

Previous week

Week 32 of 2008

Next week

Week 34 of 2008

Archives