From 8b1c332a77555b94f5665517e5fdcb416e1a67b7 Mon Sep 17 00:00:00 2001 From: Michal Krol Date: Wed, 10 Feb 2010 18:04:07 +0100 Subject: Simplify GLSL extension mechanism. Since extension name and extension name string are the same, collapse them into one name. --- src/glsl/pp/sl_pp_context.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/glsl/pp/sl_pp_context.h') diff --git a/src/glsl/pp/sl_pp_context.h b/src/glsl/pp/sl_pp_context.h index 3eada380cd..7b9f494f13 100644 --- a/src/glsl/pp/sl_pp_context.h +++ b/src/glsl/pp/sl_pp_context.h @@ -44,8 +44,7 @@ #define SL_PP_MAX_PREDEFINED 16 struct sl_pp_extension { - int name; /*< VENDOR_extension_name */ - int name_string; /*< GL_VENDOR_extension_name */ + int name; /*< GL_VENDOR_extension_name */ }; struct sl_pp_predefined { -- cgit v1.2.3