cogl: Enable the VBOs feature for GLES2

The GLES2 wrapper code has been removed so there are no longer any
problems with enabling VBOs.
This commit is contained in:
Neil Roberts 2011-01-13 15:36:08 +00:00
parent a8216aff2f
commit 36b996672c

View File

@ -109,12 +109,7 @@ _cogl_features_init (void)
flags |= COGL_FEATURE_TEXTURE_NPOT_BASIC;
#endif
/* FIXME: HACK: We are in the process of overhauling the GLES 2 backend
* and consolidating with a CoglMaterial GLSL backend. Currently though
* use of CoglBuffers with GLES 2 is broken. */
#ifndef HAVE_COGL_GLES2
flags |= COGL_FEATURE_VBOS;
#endif
/* Both GLES 1.1 and GLES 2.0 support point sprites in core */
flags |= COGL_FEATURE_POINT_SPRITE;