FossilOrigin-Name: 932a90c261ff698efcf7980c8790080622cd79e5e6ae9c7c066c27716af83f28
12 lines
238 B
Objective-C
12 lines
238 B
Objective-C
#include "cube.h"
|
|
|
|
#import "OFColor+Cube.h"
|
|
|
|
@implementation OFColor (Cube)
|
|
- (void)cube_setAsGLColor
|
|
{
|
|
float red, green, blue, alpha;
|
|
[self getRed:&red green:&green blue:&blue alpha:&alpha];
|
|
glColor4f(red, green, blue, alpha);
|
|
}
|
|
@end
|