From 965191a0437d532afef77727d5921b907f79ab37 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Sun, 21 Nov 2010 15:10:12 +0000 Subject: [PATCH] List required extension for core functions. --- Source/Bind/GL2/Generator.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Source/Bind/GL2/Generator.cs b/Source/Bind/GL2/Generator.cs index 8e32dece..56a75916 100644 --- a/Source/Bind/GL2/Generator.cs +++ b/Source/Bind/GL2/Generator.cs @@ -779,7 +779,10 @@ namespace Bind.GL2 } else if (!String.IsNullOrEmpty(f.Version)) { - category = String.Format(category, "v" + f.Version); + if (f.Category.StartsWith("VERSION")) + category = String.Format(category, "v" + f.Version); + else + category = String.Format(category, "v" + f.Version + " and " + f.Category); doc = doc.Insert(summary_start, category); }