List required extension for core functions.

This commit is contained in:
the_fiddler 2010-11-21 15:10:12 +00:00
parent a15ba71d77
commit 965191a043

View file

@ -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);
}