문제

If I create a GLKView in interface builder I see several configurable properties related to the gl context (such as color format). Why do these properties exist if I have to create a context manually?

도움이 되었습니까?

해결책

Colour format, whether or not there's a depth buffer, etc, are properties of a frame buffer, not of a context. Compared to desktop OpenGL, ES has had the functionality of the frame buffer extension from day one so there's no conflation of the two unrelated things.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top