Warning fixes

This commit is contained in:
Alex Zolotarev 2011-07-24 15:56:46 +03:00 committed by Alex Zolotarev
parent d895d92cb6
commit 655073f128
2 changed files with 3 additions and 1 deletions

View file

@ -138,7 +138,9 @@ namespace yg
else if (res == GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_OES)
LOG(LINFO, ("incomplete missing attachement"));
else if (res == GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_OES)
{
LOG(LINFO, ("incomplete dimensions"));
}
#else
GLenum res = glCheckFramebufferStatusEXT(GL_FRAMEBUFFER_EXT);
if (res == GL_FRAMEBUFFER_UNSUPPORTED)

View file

@ -35,7 +35,7 @@ namespace yg
GLenum target = GL_RENDERBUFFER_OES;
GLenum internalFormat = m_isDepthBuffer ? GL_DEPTH_COMPONENT24_OES : GL_RGBA8_OES;
OGLCHECK(glRenderbufferStorageOES(GL_RENDERBUFFER_OES,
OGLCHECK(glRenderbufferStorageOES(target,
internalFormat,
width,
height));