summaryrefslogtreecommitdiff
path: root/cogl/cogl-glx-renderer-private.h
diff options
context:
space:
mode:
authorNeil Roberts <neil@linux.intel.com>2012-09-26 16:52:24 +0100
committerNeil Roberts <neil@linux.intel.com>2012-09-27 12:05:32 +0100
commitb53e3c3c00e5bd19c70a80beb22b401fec826b9e (patch)
tree8e9ea791fe989d88af78310525ab1d7dbf6ba9af /cogl/cogl-glx-renderer-private.h
parent69f70bf5a7ad358ef7e6f1fb2dcb167d4d167b66 (diff)
downloadcogl-b53e3c3c00e5bd19c70a80beb22b401fec826b9e.tar.gz
Remove the deprecated feature flags
The old system for checking features depended on a bitmask in an integer which meant we could only have up to 32 features. This was deprecated in 426c8b8f41. The API for using the legacy feature mask has already been removed so we might as well also remove the internal code to maintain the bitmask. Reviewed-by: Robert Bragg <robert@linux.intel.com>
Diffstat (limited to 'cogl/cogl-glx-renderer-private.h')
-rw-r--r--cogl/cogl-glx-renderer-private.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cogl/cogl-glx-renderer-private.h b/cogl/cogl-glx-renderer-private.h
index 4415ea58..41cdc6f0 100644
--- a/cogl/cogl-glx-renderer-private.h
+++ b/cogl/cogl-glx-renderer-private.h
@@ -96,7 +96,7 @@ typedef struct _CoglGLXRenderer
(* glXGetProcAddress) (const GLubyte *procName);
/* Function pointers for GLX specific extensions */
-#define COGL_WINSYS_FEATURE_BEGIN(a, b, c, d, e, f)
+#define COGL_WINSYS_FEATURE_BEGIN(a, b, c, d, e)
#define COGL_WINSYS_FEATURE_FUNCTION(ret, name, args) \
ret (APIENTRY * pf_ ## name) args;