2

我在 OS X 上使用 Cocos2D 2.0 收到此警告:

-[CCRenderTexture initWithWidth:height:pixelFormat:depthStencilFormat:] : cocos2d: 警告。CCRenderTexture 在它自己的线程上运行。确保在这个线程上使用了 OpenGL 上下文!

这是我认为导致警告的代码:

- (id) initWithObject: (CCNode *) object mask: (CCSprite *) mask {
    NSAssert(object != nil, @"Invalid sprite for object");
    NSAssert(mask != nil, @"Invalid sprite for mask");

    if((self = [super init])) {

        _objectSprite = object;

        _maskSprite = mask;

        // Set up the burn sprite that will "knock out" parts of the darkness layer depending on the alpha value of the pixels in the image.
        [_maskSprite setBlendFunc: (ccBlendFunc) { GL_ZERO, GL_ONE_MINUS_SRC_ALPHA }];

        // Get window size, we want masking over entire screen don't we?
        CGSize size = [[CCDirector sharedDirector] winSize];

        // Create point with middle of screen
        CGPoint screenMid = ccp(size.width * 0.5f, size.height * 0.5f);

        // Create the rendureTextures for the mask
        _masked = [CCRenderTexture renderTextureWithWidth: size.width height: size.height];

        [[_masked sprite] setBlendFunc: (ccBlendFunc) { GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA }];

        // Set render textures at middle of screen
        _masked.position = screenMid;

        // Add the masked object to the screen
        [self addChild: _masked];

        [[CCDirector sharedDirector] setAlphaBlending:YES];
    }

    return self;
}

请帮忙,我就是想不通。

4

1 回答 1

1

ccConfig.h中,找到一行写着

#define CC_DIRECTOR_MAC_THREAD CC_MAC_USE_DISPLAY_LINK_THREAD

这是定义线程使用的地方。您可以尝试使用主线程选项 ( CC_MAC_USE_MAIN_THREAD),或使用 GCD 确保所有代码实际上都在-[CCDirector runningThread]. 这几乎可以解决它。

于 2014-07-01T07:31:59.010 回答