List required extension for core functions.
This commit is contained in:
parent
a15ba71d77
commit
965191a043
1 changed files with 4 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue