mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +03:00
29 lines
492 B
Python
29 lines
492 B
Python
#
|
|
# 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.)
|
|
##
|
|
|
|
from PIL import _imaginggl
|
|
|
|
##
|
|
# Texture factory.
|
|
|
|
class TextureFactory:
|
|
pass # overwritten by the _imaginggl module
|
|
|
|
from _imaginggl import *
|