이 글은 PC 버전 TISTORY에 최적화 되어있습니다.
에러코드
Assert failed: Unsupported format for depth and stencil buffers. Using default
Assertion failed: (0), function convertAttrs, file /Users/Hwang/Desktop/TutorialV3CPP/cocos2d/cocos/platform/ios/CCGLViewImpl-ios.mm, line 107.
해결법
AppDelegate 파일들의 추가된 내용이 빠져있는 예제를 돌리다가 생길 수 있다(최신 버전 받으면 기본적으로 들어가 있음), 빠지면 에러를 뿜어낸다.
[AppDelegate.h]
virtual void initGLContextAttrs(); // 추가
[AppDelegate.cpp]
void AppDelegate::initGLContextAttrs() // 추가
{
// set OpenGL context attributes: red,green,blue,alpha,depth,stencil
GLContextAttrs glContextAttrs = {8, 8, 8, 8, 24, 8};
GLView::setGLContextAttrs(glContextAttrs);
}
반응형
'Frontend > Cocos2D JS' 카테고리의 다른 글
[Cocos2D - JS] 프로젝트 환경설정하기 (1) | 2017.01.02 |
---|