Disable the fixed function backend for GLES2

GLES2 doesn't really support fixed function so if we disable it we can
remove the fixed function wrappers from the GLES2 Cogl backend.
This commit is contained in:
Neil Roberts
2010-11-23 14:51:49 +00:00
parent a86a1df372
commit 9089d95b3f
3 changed files with 3 additions and 14 deletions

View File

@ -56,10 +56,8 @@ typedef struct _CoglPipelineLayer CoglPipelineLayer;
#define COGL_PIPELINE_BACKEND_GLSL 0
#define COGL_PIPELINE_BACKEND_GLSL_MASK (1L<<0)
#define COGL_PIPELINE_BACKEND_FIXED 1
#define COGL_PIPELINE_BACKEND_FIXED_MASK (1L<<1)
#define COGL_PIPELINE_N_BACKENDS 2
#define COGL_PIPELINE_N_BACKENDS 1
#else /* HAVE_COGL_GLES */