OpenGL ES 设置GLKView 背景透明

//设置GLKView背景透明
glClearColor(0.0, 0.0, 0.0, 0.0);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
[self.m_glkView setBackgroundColor:[UIColor clearColor]];


你可能感兴趣的:(透明,OpenGL,OpenGL,背景透明,es)