Reputation: 19
Tried to run my application in xcode6 beta 5 version but
GL_WRITE_ONLY_OES
variable is undeclared in ios 8'glUnmapBufferOES' is invalid in C99
Please Let me know is any framework missing ? or any other problem ?
Upvotes: 1
Views: 1078
Reputation: 417
I simply added this:
#import <OpenGLES/ES2/glext.h>
Use either.
Upvotes: 12
Reputation: 563
Try:
#import <OpenGLES/ES2/glext.h>
or
#import <OpenGLES/ES3/glext.h>
Upvotes: 4