diff --git a/PIL/ImageGL.py b/PIL/ImageGL.py deleted file mode 100644 index cac68027b..000000000 --- a/PIL/ImageGL.py +++ /dev/null @@ -1,28 +0,0 @@ -# -# 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 * diff --git a/Tests/test_imagegl.py b/Tests/test_imagegl.py deleted file mode 100644 index 87dd6aa2d..000000000 --- a/Tests/test_imagegl.py +++ /dev/null @@ -1,9 +0,0 @@ -from tester import * - -from PIL import Image -try: - from PIL import ImageGL -except ImportError as v: - skip(v) - -success()