Evas: 3D: Fix typo error in preprocessor for GLES

This commit is contained in:
Taekyun Kim 2014-01-06 15:12:02 +09:00 committed by ChunEon Park
parent fc6cdaaa9d
commit 26e43f938f
1 changed files with 1 additions and 1 deletions

View File

@ -534,7 +534,7 @@ e3d_drawable_new(int w, int h, int alpha, GLenum depth_format, GLenum stencil_fo
glBindFramebuffer(GL_FRAMEBUFFER, fbo);
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, tex, 0);
#if GL_GL_3DES
#if GL_GLES
if (depth_format == GL_DEPTH_STENCIL_OES)
{
glGenTextures(1, &depth_stencil_buf);