Go to the source code of this file.
◆ anonymous enum
◆ ArrayOfExtensions()
| static NSArray * ArrayOfExtensions |
( |
NSString * |
extensionString | ) |
|
|
static |
Definition at line 181 of file OOOpenGLExtensionManager.m.
182{
183 NSArray *components = [extensionString componentsSeparatedByString:@" "];
184 NSMutableArray *result = [NSMutableArray arrayWithCapacity:[components
count]];
185 NSString *extStr =
nil;
186 foreach (extStr, components)
187 {
188 if ([extStr length] > 0) [result addObject:extStr];
189 }
190 return result;
191}
References nil.
◆ IntegerFromString()
| static unsigned IntegerFromString |
( |
const GLubyte ** |
ioString | ) |
|
|
static |
Definition at line 528 of file OOOpenGLExtensionManager.m.
529{
531
532 unsigned result = 0;
533 const GLubyte *curr = *ioString;
534
535 while ('0' <= *curr && *curr <= '9')
536 {
537 result = result * 10 + *curr++ - '0';
538 }
539
540 *ioString = curr;
541 return result;
542}
◆ kOOLogOpenGLShaderSupport
| NSString* const kOOLogOpenGLShaderSupport = @"rendering.opengl.shader.support" |
|
static |
◆ sSingleton