forked from organicmaps/organicmaps-tmp
Warning fixes
This commit is contained in:
parent
d895d92cb6
commit
655073f128
2 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||
|
|
|
@ -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));
|
||||
|
|
Loading…
Add table
Reference in a new issue