Skip to content

Commit 3979af3

Browse files
Renamed Objective-C classes for EAGL iOS Driver
1 parent 050a218 commit 3979af3

File tree

11 files changed

+65
-66
lines changed

11 files changed

+65
-66
lines changed

include/EGL/drivers/eagl/egl_eagl_typedefs.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,17 @@
2727

2828
#ifdef _EGL_BUILT_IN_DRIVER_IOSEAGL
2929

30-
#include "EGL/drivers/eagl/ios/egl_eagl_ios_eaglwindow.h"
31-
#include "EGL/drivers/eagl/ios/egl_eagl_ios_eaglcontext.h"
32-
#include "EGL/drivers/eagl/ios/egl_eagl_ios_eaglsurface.h"
33-
#include "EGL/drivers/eagl/ios/egl_eagl_ios_eaglimage.h"
30+
#include "EGL/drivers/eagl/ios/EAGLIOSWindow.h"
31+
#include "EGL/drivers/eagl/ios/EAGLIOSContext.h"
32+
#include "EGL/drivers/eagl/ios/EAGLIOSSurface.h"
33+
#include "EGL/drivers/eagl/ios/EAGLIOSImage.h"
3434
#include "EGL/drivers/eagl/opengles/opengles_ios.h"
3535

36-
typedef _UIWindow _EAGLWindow;
37-
typedef __EAGLIOSContext _EAGLContext;
36+
typedef EAGLIOSWindow _EAGLWindow;
37+
typedef EAGLIOSContext _EAGLContext;
3838
typedef __OpenGLESAPI _OpenGLESAPI;
39-
typedef __EAGLSurface _EAGLSurface;
40-
typedef __EAGLImage _EAGLImage;
39+
typedef EAGLIOSSurface _EAGLSurface;
40+
typedef EAGLIOSImage _EAGLImage;
4141

4242
#else
4343

include/EGL/drivers/eagl/ios/egl_eagl_ios_eaglcontext.h renamed to include/EGL/drivers/eagl/ios/EAGLIOSContext.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
* THE SOFTWARE.
2323
**************************************************************************/
2424

25-
#ifndef INCLUDE_EGL_DRIVERS_EAGL_EGL_EAGL_IOS_EAGLCONTEXT_H_
26-
#define INCLUDE_EGL_DRIVERS_EAGL_EGL_EAGL_IOS_EAGLCONTEXT_H_
25+
#ifndef INCLUDE_EGL_DRIVERS_EAGL_IOS_EAGLIOSCONTEXT_H_
26+
#define INCLUDE_EGL_DRIVERS_EAGL_IOS_EAGLIOSCONTEXT_H_
2727

2828
#import "EGL/drivers/eagl/ios/AppleIOSMemoryManagement.h"
2929
#import <OpenGLES/EAGL.h>
@@ -32,7 +32,7 @@
3232
/**
3333
* iOS specific EGLContext
3434
*/
35-
@interface __EAGLIOSContext : NSObject
35+
@interface EAGLIOSContext : NSObject
3636
/**
3737
* iOS Native EAGL Context
3838
*/
@@ -43,4 +43,4 @@
4343
@property (OWNERSHIP_QUALIFIER_STRONG, nonatomic) EAGLSharegroup* nativeSharedGroup;
4444
@end
4545

46-
#endif // INCLUDE_EGL_DRIVERS_EAGL_EGL_EAGL_IOS_EAGLCONTEXT_H_
46+
#endif // INCLUDE_EGL_DRIVERS_EAGL_IOS_EAGLIOSCONTEXT_H_

include/EGL/drivers/eagl/ios/egl_eagl_ios_eaglimage.h renamed to include/EGL/drivers/eagl/ios/EAGLIOSImage.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@
2222
* THE SOFTWARE.
2323
**************************************************************************/
2424

25-
#ifndef INCLUDE_EGL_DRIVERS_EAGL_EGL_EAGL_IOS_EAGLIMAGE_H_
26-
#define INCLUDE_EGL_DRIVERS_EAGL_EGL_EAGL_IOS_EAGLIMAGE_H_
25+
#ifndef INCLUDE_EGL_DRIVERS_EAGL_IOS_EAGLIOSIMAGE_H_
26+
#define INCLUDE_EGL_DRIVERS_EAGL_IOS_EAGLIOSIMAGE_H_
2727

2828
#import <Foundation/Foundation.h>
2929

30-
@interface __EAGLImage : NSObject
30+
@interface EAGLIOSImage : NSObject
3131
@end
3232

3333

34-
#endif // INCLUDE_EGL_DRIVERS_EAGL_EGL_EAGL_IOS_EAGLIMAGE_H_
34+
#endif // INCLUDE_EGL_DRIVERS_EAGL_IOS_EAGLIOSIMAGE_H_

include/EGL/drivers/eagl/ios/egl_eagl_ios_eaglsurface.h renamed to include/EGL/drivers/eagl/ios/EAGLIOSSurface.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
* THE SOFTWARE.
2323
**************************************************************************/
2424

25-
#ifndef INCLUDE_EGL_DRIVERS_EAGL_EGL_EAGL_IOS_EAGLSURFACE_H_
26-
#define INCLUDE_EGL_DRIVERS_EAGL_EGL_EAGL_IOS_EAGLSURFACE_H_
25+
#ifndef INCLUDE_EGL_DRIVERS_EAGL_IOS_EAGLIOSSURFACE_H_
26+
#define INCLUDE_EGL_DRIVERS_EAGL_IOS_EAGLIOSSURFACE_H_
2727

2828
#import "EGL/drivers/eagl/ios/AppleIOSMemoryManagement.h"
2929
#import "EGL/drivers/eagl/opengles/opengles_ios.h"
@@ -35,7 +35,7 @@
3535
/**
3636
* iOS specific EGLSurface
3737
*/
38-
@interface __EAGLSurface : NSObject {
38+
@interface EAGLIOSSurface : NSObject {
3939
}
4040
/**
4141
* Native OpenGL buffers ids.
@@ -94,4 +94,4 @@ typedef enum {
9494
@end
9595

9696

97-
#endif // INCLUDE_EGL_DRIVERS_EAGL_EGL_EAGL_IOS_EAGLSURFACE_H_
97+
#endif // INCLUDE_EGL_DRIVERS_EAGL_IOS_EAGLIOSSURFACE_H_

include/EGL/drivers/eagl/ios/egl_eagl_ios_eaglwindow.h renamed to include/EGL/drivers/eagl/ios/EAGLIOSWindow.h

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,14 @@
2222
* THE SOFTWARE.
2323
**************************************************************************/
2424

25-
#ifndef INCLUDE_EGL_DRIVERS_EAGL_EGL_EAGL_IOS_EAGLWINDOW_H_
26-
#define INCLUDE_EGL_DRIVERS_EAGL_EGL_EAGL_IOS_EAGLWINDOW_H_
25+
#ifndef INCLUDE_EGL_DRIVERS_EAGL_IOS_EAGLIOSWINDOW_H_
26+
#define INCLUDE_EGL_DRIVERS_EAGL_IOS_EAGLIOSWINDOW_H_
2727

2828
#import "EGL/drivers/eagl/ios/AppleIOSMemoryManagement.h"
2929
#import <Foundation/Foundation.h>
3030
#import <UIKit/UIWindow.h>
3131

32-
// TODO: How to document this ?
33-
@interface _UIWindow : NSObject
32+
@interface EAGLIOSWindow : NSObject
3433

3534
@property(OWNERSHIP_QUALIFIER_STRONG, nonatomic) UIWindow* window;
3635

@@ -47,4 +46,4 @@
4746
- (void)dealloc;
4847
@end
4948

50-
#endif // INCLUDE_EGL_DRIVERS_EAGL_EGL_EAGL_IOS_EAGLWINDOW_H_
49+
#endif // INCLUDE_EGL_DRIVERS_EAGL_IOS_EAGLIOSWINDOW_H_

proj/proj.ios/eglapi-core-lib/eglapi-core-lib.xcodeproj/project.pbxproj

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -113,14 +113,14 @@
113113
F65C918E18A3468C008418BC /* opengles_ios.h in Headers */ = {isa = PBXBuildFile; fileRef = F65C918D18A3468C008418BC /* opengles_ios.h */; };
114114
F65C919118A3481D008418BC /* opengles_ios.m in Sources */ = {isa = PBXBuildFile; fileRef = F65C919018A3481D008418BC /* opengles_ios.m */; };
115115
F6794CF718DD7945002B8AFF /* egl_eagl_ios_driver.h in Headers */ = {isa = PBXBuildFile; fileRef = F6794CF218DD7945002B8AFF /* egl_eagl_ios_driver.h */; };
116-
F6794CF818DD7945002B8AFF /* egl_eagl_ios_eaglcontext.h in Headers */ = {isa = PBXBuildFile; fileRef = F6794CF318DD7945002B8AFF /* egl_eagl_ios_eaglcontext.h */; };
117-
F6794CF918DD7945002B8AFF /* egl_eagl_ios_eaglimage.h in Headers */ = {isa = PBXBuildFile; fileRef = F6794CF418DD7945002B8AFF /* egl_eagl_ios_eaglimage.h */; };
118-
F6794CFA18DD7945002B8AFF /* egl_eagl_ios_eaglsurface.h in Headers */ = {isa = PBXBuildFile; fileRef = F6794CF518DD7945002B8AFF /* egl_eagl_ios_eaglsurface.h */; };
119-
F6794CFB18DD7945002B8AFF /* egl_eagl_ios_eaglwindow.h in Headers */ = {isa = PBXBuildFile; fileRef = F6794CF618DD7945002B8AFF /* egl_eagl_ios_eaglwindow.h */; };
116+
F6794CF818DD7945002B8AFF /* EAGLIOSContext.h in Headers */ = {isa = PBXBuildFile; fileRef = F6794CF318DD7945002B8AFF /* EAGLIOSContext.h */; };
117+
F6794CF918DD7945002B8AFF /* EAGLIOSImage.h in Headers */ = {isa = PBXBuildFile; fileRef = F6794CF418DD7945002B8AFF /* EAGLIOSImage.h */; };
118+
F6794CFA18DD7945002B8AFF /* EAGLIOSSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = F6794CF518DD7945002B8AFF /* EAGLIOSSurface.h */; };
119+
F6794CFB18DD7945002B8AFF /* EAGLIOSWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = F6794CF618DD7945002B8AFF /* EAGLIOSWindow.h */; };
120120
F6794D0018DD7980002B8AFF /* egl_eagl_ios_driver.m in Sources */ = {isa = PBXBuildFile; fileRef = F6794CFC18DD7980002B8AFF /* egl_eagl_ios_driver.m */; };
121-
F6794D0118DD7980002B8AFF /* egl_eagl_ios_eaglcontext.m in Sources */ = {isa = PBXBuildFile; fileRef = F6794CFD18DD7980002B8AFF /* egl_eagl_ios_eaglcontext.m */; };
122-
F6794D0218DD7980002B8AFF /* egl_eagl_ios_eaglsurface.m in Sources */ = {isa = PBXBuildFile; fileRef = F6794CFE18DD7980002B8AFF /* egl_eagl_ios_eaglsurface.m */; };
123-
F6794D0318DD7980002B8AFF /* egl_eagl_ios_eaglwindow.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6794CFF18DD7980002B8AFF /* egl_eagl_ios_eaglwindow.mm */; };
121+
F6794D0118DD7980002B8AFF /* EAGLIOSContext.m in Sources */ = {isa = PBXBuildFile; fileRef = F6794CFD18DD7980002B8AFF /* EAGLIOSContext.m */; };
122+
F6794D0218DD7980002B8AFF /* EAGLIOSSurface.m in Sources */ = {isa = PBXBuildFile; fileRef = F6794CFE18DD7980002B8AFF /* EAGLIOSSurface.m */; };
123+
F6794D0318DD7980002B8AFF /* EAGLIOSWindow.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6794CFF18DD7980002B8AFF /* EAGLIOSWindow.mm */; };
124124
F6F66B48189F4FE1008636CE /* eglplatform.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = C7A86F78172B8B2300739D0D /* eglplatform.h */; };
125125
F6F66B49189F57D3008636CE /* eglmesaext.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = C7A86F74172B8B2300739D0D /* eglmesaext.h */; };
126126
F6F66B4B18A109BE008636CE /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C784D397171457B10086C69F /* OpenGLES.framework */; };
@@ -267,14 +267,14 @@
267267
F65C918D18A3468C008418BC /* opengles_ios.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opengles_ios.h; sourceTree = "<group>"; };
268268
F65C919018A3481D008418BC /* opengles_ios.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = opengles_ios.m; sourceTree = "<group>"; };
269269
F6794CF218DD7945002B8AFF /* egl_eagl_ios_driver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = egl_eagl_ios_driver.h; sourceTree = "<group>"; };
270-
F6794CF318DD7945002B8AFF /* egl_eagl_ios_eaglcontext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = egl_eagl_ios_eaglcontext.h; sourceTree = "<group>"; };
271-
F6794CF418DD7945002B8AFF /* egl_eagl_ios_eaglimage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = egl_eagl_ios_eaglimage.h; sourceTree = "<group>"; };
272-
F6794CF518DD7945002B8AFF /* egl_eagl_ios_eaglsurface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = egl_eagl_ios_eaglsurface.h; sourceTree = "<group>"; };
273-
F6794CF618DD7945002B8AFF /* egl_eagl_ios_eaglwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = egl_eagl_ios_eaglwindow.h; sourceTree = "<group>"; };
270+
F6794CF318DD7945002B8AFF /* EAGLIOSContext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EAGLIOSContext.h; sourceTree = "<group>"; };
271+
F6794CF418DD7945002B8AFF /* EAGLIOSImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EAGLIOSImage.h; sourceTree = "<group>"; };
272+
F6794CF518DD7945002B8AFF /* EAGLIOSSurface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EAGLIOSSurface.h; sourceTree = "<group>"; };
273+
F6794CF618DD7945002B8AFF /* EAGLIOSWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EAGLIOSWindow.h; sourceTree = "<group>"; };
274274
F6794CFC18DD7980002B8AFF /* egl_eagl_ios_driver.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = egl_eagl_ios_driver.m; path = ios/egl_eagl_ios_driver.m; sourceTree = "<group>"; };
275-
F6794CFD18DD7980002B8AFF /* egl_eagl_ios_eaglcontext.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = egl_eagl_ios_eaglcontext.m; path = ios/egl_eagl_ios_eaglcontext.m; sourceTree = "<group>"; };
276-
F6794CFE18DD7980002B8AFF /* egl_eagl_ios_eaglsurface.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = egl_eagl_ios_eaglsurface.m; path = ios/egl_eagl_ios_eaglsurface.m; sourceTree = "<group>"; };
277-
F6794CFF18DD7980002B8AFF /* egl_eagl_ios_eaglwindow.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = egl_eagl_ios_eaglwindow.mm; path = ios/egl_eagl_ios_eaglwindow.mm; sourceTree = "<group>"; };
275+
F6794CFD18DD7980002B8AFF /* EAGLIOSContext.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EAGLIOSContext.m; path = ios/EAGLIOSContext.m; sourceTree = "<group>"; };
276+
F6794CFE18DD7980002B8AFF /* EAGLIOSSurface.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EAGLIOSSurface.m; path = ios/EAGLIOSSurface.m; sourceTree = "<group>"; };
277+
F6794CFF18DD7980002B8AFF /* EAGLIOSWindow.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = EAGLIOSWindow.mm; path = ios/EAGLIOSWindow.mm; sourceTree = "<group>"; };
278278
F6F8047618D556E9009F64C0 /* opengles3_ios.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opengles3_ios.h; sourceTree = "<group>"; };
279279
F6F8047818D55716009F64C0 /* opengles3_ios.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = opengles3_ios.c; sourceTree = "<group>"; };
280280
/* End PBXFileReference section */
@@ -311,9 +311,9 @@
311311
isa = PBXGroup;
312312
children = (
313313
F6794CFC18DD7980002B8AFF /* egl_eagl_ios_driver.m */,
314-
F6794CFD18DD7980002B8AFF /* egl_eagl_ios_eaglcontext.m */,
315-
F6794CFE18DD7980002B8AFF /* egl_eagl_ios_eaglsurface.m */,
316-
F6794CFF18DD7980002B8AFF /* egl_eagl_ios_eaglwindow.mm */,
314+
F6794CFD18DD7980002B8AFF /* EAGLIOSContext.m */,
315+
F6794CFE18DD7980002B8AFF /* EAGLIOSSurface.m */,
316+
F6794CFF18DD7980002B8AFF /* EAGLIOSWindow.mm */,
317317
F639689318AD9DB60076C110 /* AppleIOSMemoryManagement.m */,
318318
);
319319
name = ios;
@@ -573,10 +573,10 @@
573573
isa = PBXGroup;
574574
children = (
575575
F6794CF218DD7945002B8AFF /* egl_eagl_ios_driver.h */,
576-
F6794CF318DD7945002B8AFF /* egl_eagl_ios_eaglcontext.h */,
577-
F6794CF418DD7945002B8AFF /* egl_eagl_ios_eaglimage.h */,
578-
F6794CF518DD7945002B8AFF /* egl_eagl_ios_eaglsurface.h */,
579-
F6794CF618DD7945002B8AFF /* egl_eagl_ios_eaglwindow.h */,
576+
F6794CF318DD7945002B8AFF /* EAGLIOSContext.h */,
577+
F6794CF418DD7945002B8AFF /* EAGLIOSImage.h */,
578+
F6794CF518DD7945002B8AFF /* EAGLIOSSurface.h */,
579+
F6794CF618DD7945002B8AFF /* EAGLIOSWindow.h */,
580580
F639689118AAF7110076C110 /* AppleIOSMemoryManagement.h */,
581581
);
582582
path = ios;
@@ -612,7 +612,7 @@
612612
buildActionMask = 2147483647;
613613
files = (
614614
C7A8C94D1721A59F0080BD68 /* khrplatform.h in Headers */,
615-
F6794CFB18DD7945002B8AFF /* egl_eagl_ios_eaglwindow.h in Headers */,
615+
F6794CFB18DD7945002B8AFF /* EAGLIOSWindow.h in Headers */,
616616
C7A86F7E172B8B2300739D0D /* egl.h in Headers */,
617617
C7A86F7F172B8B2300739D0D /* eglapi.h in Headers */,
618618
C7A86F80172B8B2300739D0D /* eglarray.h in Headers */,
@@ -655,9 +655,9 @@
655655
C72C34D51730FF12005B5745 /* egl_eagl_driver.h in Headers */,
656656
F630BF5218CF375200816B11 /* egl_eagl_config.h in Headers */,
657657
C72C34E21731445D005B5745 /* egl_eagl_typedefs.h in Headers */,
658-
F6794CFA18DD7945002B8AFF /* egl_eagl_ios_eaglsurface.h in Headers */,
659-
F6794CF818DD7945002B8AFF /* egl_eagl_ios_eaglcontext.h in Headers */,
660-
F6794CF918DD7945002B8AFF /* egl_eagl_ios_eaglimage.h in Headers */,
658+
F6794CFA18DD7945002B8AFF /* EAGLIOSSurface.h in Headers */,
659+
F6794CF818DD7945002B8AFF /* EAGLIOSContext.h in Headers */,
660+
F6794CF918DD7945002B8AFF /* EAGLIOSImage.h in Headers */,
661661
);
662662
runOnlyForDeploymentPostprocessing = 0;
663663
};
@@ -795,7 +795,7 @@
795795
files = (
796796
C709B8C21706818800FBCA04 /* eglapi.m in Sources */,
797797
C7A86FA7172B8B3600739D0D /* eglapi.c in Sources */,
798-
F6794D0118DD7980002B8AFF /* egl_eagl_ios_eaglcontext.m in Sources */,
798+
F6794D0118DD7980002B8AFF /* EAGLIOSContext.m in Sources */,
799799
C7A86FA8172B8B3600739D0D /* eglarray.c in Sources */,
800800
C7A86FA9172B8B3600739D0D /* eglconfig.c in Sources */,
801801
C7A86FAA172B8B3600739D0D /* eglcontext.c in Sources */,
@@ -809,8 +809,8 @@
809809
F61BCB3118CF4FD90015D31E /* opengles1_ios.c in Sources */,
810810
C7A86FAF172B8B3600739D0D /* eglglobals.c in Sources */,
811811
C7A86FB0172B8B3600739D0D /* eglimage.c in Sources */,
812-
F6794D0318DD7980002B8AFF /* egl_eagl_ios_eaglwindow.mm in Sources */,
813-
F6794D0218DD7980002B8AFF /* egl_eagl_ios_eaglsurface.m in Sources */,
812+
F6794D0318DD7980002B8AFF /* EAGLIOSWindow.mm in Sources */,
813+
F6794D0218DD7980002B8AFF /* EAGLIOSSurface.m in Sources */,
814814
C7A86FB1172B8B3600739D0D /* egllog.c in Sources */,
815815
C7A86FB2172B8B3600739D0D /* eglmisc.c in Sources */,
816816
C7A86FB3172B8B3600739D0D /* eglmode.c in Sources */,

src/EGL/drivers/eagl/egl_eagl.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#ifdef _EGL_OS_APPLE_IOS
3535

3636
#include "EGL/drivers/eagl/ios/egl_eagl_ios_driver.h"
37-
#include "EGL/drivers/eagl/ios/egl_eagl_ios_eaglsurface.h"
37+
#include "EGL/drivers/eagl/ios/EAGLIOSSurface.h"
3838
#include "EGL/drivers/eagl/opengles/opengles_ios.h"
3939
#include "EGL/drivers/eagl/egl_eagl_globals.h"
4040
#include "EGL/drivers/eagl/egl_eagl_display.h"

src/EGL/drivers/eagl/ios/egl_eagl_ios_eaglcontext.m renamed to src/EGL/drivers/eagl/ios/EAGLIOSContext.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
* THE SOFTWARE.
2323
**************************************************************************/
2424

25-
#import "EGL/drivers/eagl/ios/egl_eagl_ios_eaglcontext.h"
25+
#import "EGL/drivers/eagl/ios/EAGLIOSContext.h"
2626

27-
@implementation __EAGLIOSContext
27+
@implementation EAGLIOSContext
2828
@synthesize nativeContext;
2929
@synthesize nativeSharedGroup;
3030

src/EGL/drivers/eagl/ios/egl_eagl_ios_eaglsurface.m renamed to src/EGL/drivers/eagl/ios/EAGLIOSSurface.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@
2222
* THE SOFTWARE.
2323
**************************************************************************/
2424

25-
#include "EGL/drivers/eagl/ios/egl_eagl_ios_eaglsurface.h"
25+
#include "EGL/drivers/eagl/ios/EAGLIOSSurface.h"
2626
#include "EGL/drivers/eagl/ios/AppleIOSMemoryManagement.h"
2727
#import <Foundation/Foundation.h>
2828

29-
@interface __EAGLSurface ()
29+
@interface EAGLIOSSurface ()
3030
/**
3131
* 0 == number of video frame update reached
3232
* 0< == number of video frame update not yet reached
@@ -37,7 +37,7 @@ @interface __EAGLSurface ()
3737
- (void) onDisplayFrameUpdate:(CADisplayLink*) display;
3838
@end
3939

40-
@implementation __EAGLSurface
40+
@implementation EAGLIOSSurface
4141

4242
@synthesize buffers;
4343

src/EGL/drivers/eagl/ios/egl_eagl_ios_eaglwindow.mm renamed to src/EGL/drivers/eagl/ios/EAGLIOSWindow.mm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
* THE SOFTWARE.
2323
**************************************************************************/
2424

25-
#include "EGL/drivers/eagl/ios/egl_eagl_ios_eaglwindow.h"
25+
#include "EGL/drivers/eagl/ios/EAGLIOSWindow.h"
2626

27-
@implementation _UIWindow
27+
@implementation EAGLIOSWindow
2828

2929
@synthesize window;
3030

0 commit comments

Comments
 (0)