diff options
author | marha <marha@users.sourceforge.net> | 2012-08-21 07:54:32 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-08-21 07:54:32 +0200 |
commit | 7cd970786d72a68b735f33904bdded6c8aebdf33 (patch) | |
tree | fdfd8b54161aeddb0a2fe485886219b2285d52ff /mesalib/src/mesa/main/es_generator.py | |
parent | 5d9b8cf0e4054e774f906cde9dd6b61ceca72d44 (diff) | |
download | vcxsrv-7cd970786d72a68b735f33904bdded6c8aebdf33.tar.gz vcxsrv-7cd970786d72a68b735f33904bdded6c8aebdf33.tar.bz2 vcxsrv-7cd970786d72a68b735f33904bdded6c8aebdf33.zip |
xserver xkeyboard-config mesa pixman git update 21 Aug 2012
Diffstat (limited to 'mesalib/src/mesa/main/es_generator.py')
-rw-r--r-- | mesalib/src/mesa/main/es_generator.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mesalib/src/mesa/main/es_generator.py b/mesalib/src/mesa/main/es_generator.py index cad3deaef..b074e9dcf 100644 --- a/mesalib/src/mesa/main/es_generator.py +++ b/mesalib/src/mesa/main/es_generator.py @@ -201,6 +201,10 @@ print """ #endif """ % (versionHeader, versionExtHeader, shortname.upper()) +if version == "GLES1.1": + print '#include "main/es1_conversion.h"' + print + # Everyone needs these types. print """ /* These types are needed for the Mesa veneer, but are not defined in @@ -566,6 +570,9 @@ for funcName in keys: # endfor every param + if conversionCodeOutgoing != [] or conversionCodeIncoming != []: + continue + # Here, the passthroughDeclarationString and passthroughCallString # are complete; remove the extra ", " at the front of each. passthroughDeclarationString = passthroughDeclarationString[2:] |