From d20180cd2d8221c47adcdc2e1b7b23434a9e9aaf Mon Sep 17 00:00:00 2001 From: Stefanos A Date: Sun, 3 Nov 2013 20:32:47 +0100 Subject: [PATCH] gles1 API contains both versions 1.0 and 1.1 Khronos no longer distinguishes between ES 1.0 and 1.1. --- Source/Bind/ES/ESGenerator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Bind/ES/ESGenerator.cs b/Source/Bind/ES/ESGenerator.cs index b4a5e23a..fc94682c 100644 --- a/Source/Bind/ES/ESGenerator.cs +++ b/Source/Bind/ES/ESGenerator.cs @@ -27,7 +27,7 @@ namespace Bind.ES // so we cannot distinguish between the two. // Todo: add support for common and light profiles. Profile = "gles1"; - Version = "1.1"; + // Both 1.0 and 1.1 versions } } }