From 48d3988b82506b83b7f716e2806097e4760f5a05 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 13 May 2010 16:37:02 -0600 Subject: mesa: enum bitfields are a gcc-only feature, use GLubyte --- src/mesa/main/get.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c index f3b4b7bdc1..12d046b075 100644 --- a/src/mesa/main/get.c +++ b/src/mesa/main/get.c @@ -136,8 +136,8 @@ enum value_extra { struct value_desc { GLenum pname; - enum value_location location : 8; - enum value_type type : 8; + GLubyte location; /**< enum value_location */ + GLubyte type; /**< enum value_type */ int offset; const int *extra; }; -- cgit v1.2.3