diff options
author | Oystein Eftevaag | 2009-05-10 22:15:33 +0000 |
---|---|---|
committer | Oystein Eftevaag | 2009-05-10 22:15:33 +0000 |
commit | 6d56924bb1854ee9592c4223a4746a32038ade6d (patch) | |
tree | 45d4da7febdfa755cb3a29cee28a8a05d95804f7 /backends/platform/iphone | |
parent | 665e472ef0bf9cd38c92ebe58975cbda74241a07 (diff) | |
download | scummvm-rg350-6d56924bb1854ee9592c4223a4746a32038ade6d.tar.gz scummvm-rg350-6d56924bb1854ee9592c4223a4746a32038ade6d.tar.bz2 scummvm-rg350-6d56924bb1854ee9592c4223a4746a32038ade6d.zip |
iPhone fixes for compiling with the unofficial sdk
svn-id: r40440
Diffstat (limited to 'backends/platform/iphone')
-rw-r--r-- | backends/platform/iphone/iphone_video.m | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/backends/platform/iphone/iphone_video.m b/backends/platform/iphone/iphone_video.m index 5f6804bc17..690e2339ae 100644 --- a/backends/platform/iphone/iphone_video.m +++ b/backends/platform/iphone/iphone_video.m @@ -26,10 +26,6 @@ #include "iphone_video.h" #include "iphone_common.h" -#import <UIKit/UIKit.h> -#import <Foundation/Foundation.h> -#import <QuartzCore/QuartzCore.h> - static iPhoneView *sharedInstance = nil; static int _width = 0; static int _height = 0; @@ -271,7 +267,6 @@ uint getSizeNextPOT(uint size) { glGenTextures(1, &_screenTexture); glBindTexture(GL_TEXTURE_2D, _screenTexture); - glEnable(GL_TEXTURE_2D); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); if (_textureBuffer) { |