From 79c7f64f7f7c1ab543ee71d8dd60c180535bb27f Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Thu, 27 Nov 2008 12:14:12 +0000 Subject: [PATCH] RgbaTexture2D should not be compressed. --- Source/Utilities/Graphics/RgbaTexture2D.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Utilities/Graphics/RgbaTexture2D.cs b/Source/Utilities/Graphics/RgbaTexture2D.cs index 7959ac65..8aa70533 100644 --- a/Source/Utilities/Graphics/RgbaTexture2D.cs +++ b/Source/Utilities/Graphics/RgbaTexture2D.cs @@ -12,7 +12,7 @@ namespace OpenTK.Graphics protected override PixelInternalFormat InternalFormat { - get { return PixelInternalFormat.CompressedRgba; } + get { return PixelInternalFormat.Rgba; } } } }