2010-07-31 06:52:47 +04:00
|
|
|
#
|
|
|
|
# The Python Imaging Library.
|
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
# 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.)
|
|
|
|
##
|
|
|
|
|
2013-04-09 07:31:28 +04:00
|
|
|
from . import _imaginggl
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
##
|
|
|
|
# Texture factory.
|
|
|
|
|
|
|
|
class TextureFactory:
|
|
|
|
pass # overwritten by the _imaginggl module
|
|
|
|
|
2013-04-09 07:31:28 +04:00
|
|
|
from ._imaginggl import *
|