Renamed CL mode to CL10.

This commit is contained in:
the_fiddler 2009-08-09 15:46:36 +00:00
parent e105703b35
commit 78799042b1

View file

@ -24,7 +24,7 @@ namespace Bind
ES10,
ES11,
ES20,
CL,
CL10,
[Obsolete] Wgl,
[Obsolete] Glx,
[Obsolete] Glu,
@ -83,7 +83,7 @@ namespace Bind
else if (arg == "es20")
mode = GeneratorMode.ES20;
else if (arg == "cl10")
mode = GeneratorMode.CL;
mode = GeneratorMode.CL10;
else
throw new NotImplementedException();
break;
@ -148,8 +148,8 @@ namespace Bind
Generator = new Bind.ES.ESGenerator("ES20");
break;
case GeneratorMode.CL:
Generator = new Bind.CL.CLGenerator("CL");
case GeneratorMode.CL10:
Generator = new Bind.CL.CLGenerator("CL10");
break;
case GeneratorMode.Wgl: