magicboker

Results 8 comments of magicboker

Why the app icon was shown in the WebAuth login page on iPad with exactly the same code? Did your web server detect the client type to determine what to...

You don't need to have extra place to show my app icon on iPhone. Where the dropbox icon is shown in SDK v2 used to show my app icon in...

I discovered a possible problem: In GPUImagePicture.m ``` - (void)processImage; { [self processImageWithCompletionHandler:nil]; } - (BOOL)processImageWithCompletionHandler:(void (^)(void))completion; { hasProcessedImage = YES; // dispatch_semaphore_wait(imageUpdateSemaphore, DISPATCH_TIME_FOREVER); if (dispatch_semaphore_wait(imageUpdateSemaphore, DISPATCH_TIME_NOW) != 0) {...

A better solution is to modify processImage only and keep the async call, processImageWithCompletionHandler, unmodified ``` /* modified to resolve the occasional app crash issue - (void)processImage; { [self processImageWithCompletionHandler:nil];...

In GPUImageFrameBuffer.m, ``` - (void)generateFramebuffer { ..... CVReturn err = CVPixelBufferCreate(kCFAllocatorDefault, (int)_size.width, (int)_size.height, kCVPixelFormatType_32BGRA, attrs, &renderTarget); if (err) { NSLog(@"FBO size: %f, %f", _size.width, _size.height); NSAssert(NO, @"Error at CVPixelBufferCreate %d",...

Any update on this issue? I used the iOS Content SDK.