]> git.cworth.org Git - apitrace/blobdiff - specs/stdapi.py
cgltrace: Fix CGLChoosePixelFormat prototype.
[apitrace] / specs / stdapi.py
index 88711e1af10f713ad0f02c8f8e7d542e70701301..1988c6588068389304a2dcf6d22488959782a049 100644 (file)
@@ -272,13 +272,12 @@ class Array(Type):
 
 class AttribArray(Type):
 
-    def __init__(self, keyType, valueTypes, isConst = True, terminator = '0'):
+    def __init__(self, baseType, valueTypes, isConst = True, terminator = '0'):
+        self.baseType = baseType
         if isConst:
-            Type.__init__(self, (Pointer(Const(Int))).expr)
+            Type.__init__(self, (Pointer(Const(self.baseType))).expr)
         else:
-            Type.__init__(self, (Pointer(Int)).expr)
-        self.type = (Pointer(Const(Int))) # for function prototypes and such
-        self.keyType = keyType
+            Type.__init__(self, (Pointer(self.baseType)).expr)
         self.valueTypes = valueTypes
         self.terminator = terminator
         self.hasKeysWithoutValues = False