Former-commit-id:a02aeb236c
[formerly9f19e3f712
] [formerly06a8b51d6d
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]] Former-commit-id:06a8b51d6d
Former-commit-id:3360eb6c5f
28 lines
530 B
Python
28 lines
530 B
Python
#
|
|
# The Python Imaging Library.
|
|
# $Id: ImageGL.py 2438 2005-05-25 21:09:48Z Fredrik $
|
|
#
|
|
# OpenGL pixmap/texture interface (requires imToolkit OpenGL extensions)
|
|
#
|
|
# History:
|
|
# 2003-09-13 fl Added
|
|
#
|
|
# Copyright (c) Secret Labs AB 2003.
|
|
#
|
|
# See the README file for information on usage and redistribution.
|
|
#
|
|
|
|
##
|
|
# OpenGL pixmap/texture interface (requires imToolkit OpenGL
|
|
# extensions.)
|
|
##
|
|
|
|
import _imaginggl
|
|
|
|
##
|
|
# Texture factory.
|
|
|
|
class TextureFactory:
|
|
pass # overwritten by the _imaginggl module
|
|
|
|
from _imaginggl import *
|