ImageGL.py 483 B

12345678910111213141516171819202122232425262728
  1. #
  2. # The Python Imaging Library.
  3. # $Id$
  4. #
  5. # OpenGL pixmap/texture interface (requires imToolkit OpenGL extensions)
  6. #
  7. # History:
  8. # 2003-09-13 fl Added
  9. #
  10. # Copyright (c) Secret Labs AB 2003.
  11. #
  12. # See the README file for information on usage and redistribution.
  13. #
  14. ##
  15. # OpenGL pixmap/texture interface (requires imToolkit OpenGL
  16. # extensions.)
  17. ##
  18. import _imaginggl
  19. ##
  20. # Texture factory.
  21. class TextureFactory:
  22. pass # overwritten by the _imaginggl module
  23. from _imaginggl import *