aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--adb/adb_binary.go5
-rw-r--r--api/apic/validate/limits/limits_binary.go5
-rw-r--r--atom/atom_binary.go22
-rw-r--r--atom/test/test_binary.go10
-rw-r--r--binary/generate/embed.go6
-rw-r--r--binary/generate/go.tmpl6
-rw-r--r--binary/schema/schema_binary.go108
-rw-r--r--binary/test/test_binary.go4
-rw-r--r--builder/builder_binary.go94
-rw-r--r--database/database_binary.go6
-rw-r--r--database/database_binary_test.go8
-rw-r--r--database/store/store_binary.go6
-rw-r--r--gfxapi/gfxapi_binary.go5
-rw-r--r--gfxapi/gles/gles_binary.go2328
-rw-r--r--gfxapi/test/test_binary.go498
-rw-r--r--log/log_binary.go5
-rw-r--r--memory/memory_binary.go4
-rw-r--r--multiplexer/multiplexer_binary.go8
-rw-r--r--parse/parse_binary.go5
-rw-r--r--replay/protocol/protocol_binary.go14
-rw-r--r--rpc/rpc_binary.go2
-rw-r--r--rpc/rpc_binary_test.go6
-rw-r--r--rpc/test/test_binary.go54
-rw-r--r--service/service_binary.go304
24 files changed, 1744 insertions, 1769 deletions
diff --git a/adb/adb_binary.go b/adb/adb_binary.go
index 9f7c01027..3b51e0444 100644
--- a/adb/adb_binary.go
+++ b/adb/adb_binary.go
@@ -7,11 +7,6 @@ package adb
import "fmt"
-func init() {
-}
-
-var ()
-
const _DeviceState_name = "offlinedeviceunauthorized"
var _DeviceState_map = map[DeviceState]string{
diff --git a/api/apic/validate/limits/limits_binary.go b/api/apic/validate/limits/limits_binary.go
index c235b5e05..0a39d539c 100644
--- a/api/apic/validate/limits/limits_binary.go
+++ b/api/apic/validate/limits/limits_binary.go
@@ -7,11 +7,6 @@ package limits
import "fmt"
-func init() {
-}
-
-var ()
-
const _boolLimit_name = "FalseTrueMaybe"
var _boolLimit_map = map[boolLimit]string{
diff --git a/atom/atom_binary.go b/atom/atom_binary.go
index d8be1b628..cefb8cb37 100644
--- a/atom/atom_binary.go
+++ b/atom/atom_binary.go
@@ -85,8 +85,8 @@ var schemaRange = &schema.Class{
TypeID: binaryIDRange,
Name: "Range",
Fields: []schema.Field{
- schema.Field{Declared: "Start", Type: &schema.Primitive{Name: "ID", Method: schema.Uint64}},
- schema.Field{Declared: "End", Type: &schema.Primitive{Name: "ID", Method: schema.Uint64}},
+ {Declared: "Start", Type: &schema.Primitive{Name: "ID", Method: schema.Uint64}},
+ {Declared: "End", Type: &schema.Primitive{Name: "ID", Method: schema.Uint64}},
},
}
@@ -170,9 +170,9 @@ var schemaGroup = &schema.Class{
TypeID: binaryIDGroup,
Name: "Group",
Fields: []schema.Field{
- schema.Field{Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "Range", Type: &schema.Struct{Name: "Range"}},
- schema.Field{Declared: "SubGroups", Type: &schema.Slice{Alias: "GroupList", ValueType: &schema.Struct{Name: "Group"}}},
+ {Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Range", Type: &schema.Struct{Name: "Range"}},
+ {Declared: "SubGroups", Type: &schema.Slice{Alias: "GroupList", ValueType: &schema.Struct{Name: "Group"}}},
},
}
@@ -229,8 +229,8 @@ var schemaObservation = &schema.Class{
TypeID: binaryIDObservation,
Name: "Observation",
Fields: []schema.Field{
- schema.Field{Declared: "Range", Type: &schema.Struct{Name: "memory.Range"}},
- schema.Field{Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
+ {Declared: "Range", Type: &schema.Struct{Name: "memory.Range"}},
+ {Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
},
}
@@ -321,8 +321,8 @@ var schemaObservations = &schema.Class{
TypeID: binaryIDObservations,
Name: "Observations",
Fields: []schema.Field{
- schema.Field{Declared: "Reads", Type: &schema.Slice{Alias: "", ValueType: &schema.Struct{Name: "Observation"}}},
- schema.Field{Declared: "Writes", Type: &schema.Slice{Alias: "", ValueType: &schema.Struct{Name: "Observation"}}},
+ {Declared: "Reads", Type: &schema.Slice{Alias: "", ValueType: &schema.Struct{Name: "Observation"}}},
+ {Declared: "Writes", Type: &schema.Slice{Alias: "", ValueType: &schema.Struct{Name: "Observation"}}},
},
}
@@ -391,8 +391,8 @@ var schemaResource = &schema.Class{
TypeID: binaryIDResource,
Name: "Resource",
Fields: []schema.Field{
- schema.Field{Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
- schema.Field{Declared: "Data", Type: &schema.Slice{Alias: "", ValueType: &schema.Primitive{Name: "byte", Method: schema.Uint8}}},
+ {Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
+ {Declared: "Data", Type: &schema.Slice{Alias: "", ValueType: &schema.Primitive{Name: "byte", Method: schema.Uint8}}},
},
}
diff --git a/atom/test/test_binary.go b/atom/test/test_binary.go
index 8f7521f36..743109a84 100644
--- a/atom/test/test_binary.go
+++ b/atom/test/test_binary.go
@@ -79,8 +79,8 @@ var schemaAtomA = &schema.Class{
TypeID: AtomAID,
Name: "AtomA",
Fields: []schema.Field{
- schema.Field{Declared: "ID", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "AtomFlags", Type: &schema.Primitive{Name: "atom.Flags", Method: schema.Uint32}},
+ {Declared: "ID", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "AtomFlags", Type: &schema.Primitive{Name: "atom.Flags", Method: schema.Uint32}},
},
}
@@ -139,8 +139,8 @@ var schemaAtomB = &schema.Class{
TypeID: AtomBID,
Name: "AtomB",
Fields: []schema.Field{
- schema.Field{Declared: "ID", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "Bool", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "ID", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Bool", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
},
}
@@ -188,6 +188,6 @@ var schemaAtomC = &schema.Class{
TypeID: AtomCID,
Name: "AtomC",
Fields: []schema.Field{
- schema.Field{Declared: "String", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "String", Type: &schema.Primitive{Name: "string", Method: schema.String}},
},
}
diff --git a/binary/generate/embed.go b/binary/generate/embed.go
index 9be903a8a..633e7cfd4 100644
--- a/binary/generate/embed.go
+++ b/binary/generate/embed.go
@@ -130,7 +130,7 @@ var schema{{.Name}} = &{{SchemaPrefix}}Class{
TypeID: {{.IDName}},
Name: "{{.Name}}",
Fields: []{{SchemaPrefix}}Field{
- {{range .Fields}}{{SchemaPrefix}}Field{ Declared:"{{.Name}}", Type:{{Schema .Type}} },
+ {{range .Fields}}{ Declared:"{{.Name}}", Type:{{Schema .Type}} },
{{end}} },
}
{{end}}
@@ -335,13 +335,13 @@ import (
{{range $imp, $v := .Imports}}"{{$imp}}"
{{end}})
-func init() {
+{{if len .Structs}}func init() {
{{range .Structs}}{{template "Go.Init" .}}
{{end}} }
var (
{{range .Structs}} {{template "Go.ID" .}}
-{{end}} )
+{{end}} ){{end}}
{{range .Structs}} {{template "Go.Class" .}}
{{end}}
diff --git a/binary/generate/go.tmpl b/binary/generate/go.tmpl
index 7df783ea3..2e0c6985f 100644
--- a/binary/generate/go.tmpl
+++ b/binary/generate/go.tmpl
@@ -45,7 +45,7 @@ var schema{{.Name}} = &{{SchemaPrefix}}Class{
TypeID: {{.IDName}},
Name: "{{.Name}}",
Fields: []{{SchemaPrefix}}Field{
- {{range .Fields}}{{SchemaPrefix}}Field{ Declared:"{{.Name}}", Type:{{Schema .Type}} },
+ {{range .Fields}}{ Declared:"{{.Name}}", Type:{{Schema .Type}} },
{{end}} },
}
{{end}}
@@ -250,13 +250,13 @@ import (
{{range $imp, $v := .Imports}}"{{$imp}}"
{{end}})
-func init() {
+{{if len .Structs}}func init() {
{{range .Structs}}{{template "Go.Init" .}}
{{end}} }
var (
{{range .Structs}} {{template "Go.ID" .}}
-{{end}} )
+{{end}} ){{end}}
{{range .Structs}} {{template "Go.Class" .}}
{{end}}
diff --git a/binary/schema/schema_binary.go b/binary/schema/schema_binary.go
index 99b236c1d..bbf71dfbc 100644
--- a/binary/schema/schema_binary.go
+++ b/binary/schema/schema_binary.go
@@ -140,9 +140,9 @@ var schemaArray = &Class{
TypeID: binaryIDArray,
Name: "Array",
Fields: []Field{
- Field{Declared: "Alias", Type: &Primitive{Name: "string", Method: String}},
- Field{Declared: "ValueType", Type: &Interface{Name: "Type"}},
- Field{Declared: "Size", Type: &Primitive{Name: "uint32", Method: Uint32}},
+ {Declared: "Alias", Type: &Primitive{Name: "string", Method: String}},
+ {Declared: "ValueType", Type: &Interface{Name: "Type"}},
+ {Declared: "Size", Type: &Primitive{Name: "uint32", Method: Uint32}},
},
}
@@ -207,8 +207,8 @@ var schemaField = &Class{
TypeID: binaryIDField,
Name: "Field",
Fields: []Field{
- Field{Declared: "Declared", Type: &Primitive{Name: "string", Method: String}},
- Field{Declared: "Type", Type: &Interface{Name: "Type"}},
+ {Declared: "Declared", Type: &Primitive{Name: "string", Method: String}},
+ {Declared: "Type", Type: &Interface{Name: "Type"}},
},
}
@@ -305,10 +305,10 @@ var schemaClass = &Class{
TypeID: binaryIDClass,
Name: "Class",
Fields: []Field{
- Field{Declared: "TypeID", Type: &Primitive{Name: "binary.ID", Method: ID}},
- Field{Declared: "Package", Type: &Primitive{Name: "string", Method: String}},
- Field{Declared: "Name", Type: &Primitive{Name: "string", Method: String}},
- Field{Declared: "Fields", Type: &Slice{Alias: "", ValueType: &Struct{Name: "Field"}}},
+ {Declared: "TypeID", Type: &Primitive{Name: "binary.ID", Method: ID}},
+ {Declared: "Package", Type: &Primitive{Name: "string", Method: String}},
+ {Declared: "Name", Type: &Primitive{Name: "string", Method: String}},
+ {Declared: "Fields", Type: &Slice{Alias: "", ValueType: &Struct{Name: "Field"}}},
},
}
@@ -367,8 +367,8 @@ var schemaInt16Constant = &Class{
TypeID: binaryIDInt16Constant,
Name: "Int16Constant",
Fields: []Field{
- Field{Declared: "Name", Type: &Primitive{Name: "string", Method: String}},
- Field{Declared: "Value", Type: &Primitive{Name: "int16", Method: Int16}},
+ {Declared: "Name", Type: &Primitive{Name: "string", Method: String}},
+ {Declared: "Value", Type: &Primitive{Name: "int16", Method: Int16}},
},
}
@@ -449,8 +449,8 @@ var schemaInt16Constants = &Class{
TypeID: binaryIDInt16Constants,
Name: "Int16Constants",
Fields: []Field{
- Field{Declared: "Type", Type: &Interface{Name: "Type"}},
- Field{Declared: "Values", Type: &Slice{Alias: "", ValueType: &Struct{Name: "Int16Constant"}}},
+ {Declared: "Type", Type: &Interface{Name: "Type"}},
+ {Declared: "Values", Type: &Slice{Alias: "", ValueType: &Struct{Name: "Int16Constant"}}},
},
}
@@ -509,8 +509,8 @@ var schemaInt32Constant = &Class{
TypeID: binaryIDInt32Constant,
Name: "Int32Constant",
Fields: []Field{
- Field{Declared: "Name", Type: &Primitive{Name: "string", Method: String}},
- Field{Declared: "Value", Type: &Primitive{Name: "int32", Method: Int32}},
+ {Declared: "Name", Type: &Primitive{Name: "string", Method: String}},
+ {Declared: "Value", Type: &Primitive{Name: "int32", Method: Int32}},
},
}
@@ -591,8 +591,8 @@ var schemaInt32Constants = &Class{
TypeID: binaryIDInt32Constants,
Name: "Int32Constants",
Fields: []Field{
- Field{Declared: "Type", Type: &Interface{Name: "Type"}},
- Field{Declared: "Values", Type: &Slice{Alias: "", ValueType: &Struct{Name: "Int32Constant"}}},
+ {Declared: "Type", Type: &Interface{Name: "Type"}},
+ {Declared: "Values", Type: &Slice{Alias: "", ValueType: &Struct{Name: "Int32Constant"}}},
},
}
@@ -651,8 +651,8 @@ var schemaInt64Constant = &Class{
TypeID: binaryIDInt64Constant,
Name: "Int64Constant",
Fields: []Field{
- Field{Declared: "Name", Type: &Primitive{Name: "string", Method: String}},
- Field{Declared: "Value", Type: &Primitive{Name: "int64", Method: Int64}},
+ {Declared: "Name", Type: &Primitive{Name: "string", Method: String}},
+ {Declared: "Value", Type: &Primitive{Name: "int64", Method: Int64}},
},
}
@@ -733,8 +733,8 @@ var schemaInt64Constants = &Class{
TypeID: binaryIDInt64Constants,
Name: "Int64Constants",
Fields: []Field{
- Field{Declared: "Type", Type: &Interface{Name: "Type"}},
- Field{Declared: "Values", Type: &Slice{Alias: "", ValueType: &Struct{Name: "Int64Constant"}}},
+ {Declared: "Type", Type: &Interface{Name: "Type"}},
+ {Declared: "Values", Type: &Slice{Alias: "", ValueType: &Struct{Name: "Int64Constant"}}},
},
}
@@ -793,8 +793,8 @@ var schemaInt8Constant = &Class{
TypeID: binaryIDInt8Constant,
Name: "Int8Constant",
Fields: []Field{
- Field{Declared: "Name", Type: &Primitive{Name: "string", Method: String}},
- Field{Declared: "Value", Type: &Primitive{Name: "int8", Method: Int8}},
+ {Declared: "Name", Type: &Primitive{Name: "string", Method: String}},
+ {Declared: "Value", Type: &Primitive{Name: "int8", Method: Int8}},
},
}
@@ -875,8 +875,8 @@ var schemaInt8Constants = &Class{
TypeID: binaryIDInt8Constants,
Name: "Int8Constants",
Fields: []Field{
- Field{Declared: "Type", Type: &Interface{Name: "Type"}},
- Field{Declared: "Values", Type: &Slice{Alias: "", ValueType: &Struct{Name: "Int8Constant"}}},
+ {Declared: "Type", Type: &Interface{Name: "Type"}},
+ {Declared: "Values", Type: &Slice{Alias: "", ValueType: &Struct{Name: "Int8Constant"}}},
},
}
@@ -924,7 +924,7 @@ var schemaInterface = &Class{
TypeID: binaryIDInterface,
Name: "Interface",
Fields: []Field{
- Field{Declared: "Name", Type: &Primitive{Name: "string", Method: String}},
+ {Declared: "Name", Type: &Primitive{Name: "string", Method: String}},
},
}
@@ -1006,9 +1006,9 @@ var schemaMap = &Class{
TypeID: binaryIDMap,
Name: "Map",
Fields: []Field{
- Field{Declared: "Alias", Type: &Primitive{Name: "string", Method: String}},
- Field{Declared: "KeyType", Type: &Interface{Name: "Type"}},
- Field{Declared: "ValueType", Type: &Interface{Name: "Type"}},
+ {Declared: "Alias", Type: &Primitive{Name: "string", Method: String}},
+ {Declared: "KeyType", Type: &Interface{Name: "Type"}},
+ {Declared: "ValueType", Type: &Interface{Name: "Type"}},
},
}
@@ -1062,7 +1062,7 @@ var schemaPointer = &Class{
TypeID: binaryIDPointer,
Name: "Pointer",
Fields: []Field{
- Field{Declared: "Type", Type: &Interface{Name: "Type"}},
+ {Declared: "Type", Type: &Interface{Name: "Type"}},
},
}
@@ -1121,8 +1121,8 @@ var schemaPrimitive = &Class{
TypeID: binaryIDPrimitive,
Name: "Primitive",
Fields: []Field{
- Field{Declared: "Name", Type: &Primitive{Name: "string", Method: String}},
- Field{Declared: "Method", Type: &Primitive{Name: "Method", Method: Int32}},
+ {Declared: "Name", Type: &Primitive{Name: "string", Method: String}},
+ {Declared: "Method", Type: &Primitive{Name: "Method", Method: Int32}},
},
}
@@ -1187,8 +1187,8 @@ var schemaSlice = &Class{
TypeID: binaryIDSlice,
Name: "Slice",
Fields: []Field{
- Field{Declared: "Alias", Type: &Primitive{Name: "string", Method: String}},
- Field{Declared: "ValueType", Type: &Interface{Name: "Type"}},
+ {Declared: "Alias", Type: &Primitive{Name: "string", Method: String}},
+ {Declared: "ValueType", Type: &Interface{Name: "Type"}},
},
}
@@ -1253,8 +1253,8 @@ var schemaStream = &Class{
TypeID: binaryIDStream,
Name: "Stream",
Fields: []Field{
- Field{Declared: "Alias", Type: &Primitive{Name: "string", Method: String}},
- Field{Declared: "ValueType", Type: &Interface{Name: "Type"}},
+ {Declared: "Alias", Type: &Primitive{Name: "string", Method: String}},
+ {Declared: "ValueType", Type: &Interface{Name: "Type"}},
},
}
@@ -1313,8 +1313,8 @@ var schemaStruct = &Class{
TypeID: binaryIDStruct,
Name: "Struct",
Fields: []Field{
- Field{Declared: "Name", Type: &Primitive{Name: "string", Method: String}},
- Field{Declared: "ID", Type: &Primitive{Name: "binary.ID", Method: ID}},
+ {Declared: "Name", Type: &Primitive{Name: "string", Method: String}},
+ {Declared: "ID", Type: &Primitive{Name: "binary.ID", Method: ID}},
},
}
@@ -1373,8 +1373,8 @@ var schemaUint16Constant = &Class{
TypeID: binaryIDUint16Constant,
Name: "Uint16Constant",
Fields: []Field{
- Field{Declared: "Name", Type: &Primitive{Name: "string", Method: String}},
- Field{Declared: "Value", Type: &Primitive{Name: "uint16", Method: Uint16}},
+ {Declared: "Name", Type: &Primitive{Name: "string", Method: String}},
+ {Declared: "Value", Type: &Primitive{Name: "uint16", Method: Uint16}},
},
}
@@ -1455,8 +1455,8 @@ var schemaUint16Constants = &Class{
TypeID: binaryIDUint16Constants,
Name: "Uint16Constants",
Fields: []Field{
- Field{Declared: "Type", Type: &Interface{Name: "Type"}},
- Field{Declared: "Values", Type: &Slice{Alias: "", ValueType: &Struct{Name: "Uint16Constant"}}},
+ {Declared: "Type", Type: &Interface{Name: "Type"}},
+ {Declared: "Values", Type: &Slice{Alias: "", ValueType: &Struct{Name: "Uint16Constant"}}},
},
}
@@ -1515,8 +1515,8 @@ var schemaUint32Constant = &Class{
TypeID: binaryIDUint32Constant,
Name: "Uint32Constant",
Fields: []Field{
- Field{Declared: "Name", Type: &Primitive{Name: "string", Method: String}},
- Field{Declared: "Value", Type: &Primitive{Name: "uint32", Method: Uint32}},
+ {Declared: "Name", Type: &Primitive{Name: "string", Method: String}},
+ {Declared: "Value", Type: &Primitive{Name: "uint32", Method: Uint32}},
},
}
@@ -1597,8 +1597,8 @@ var schemaUint32Constants = &Class{
TypeID: binaryIDUint32Constants,
Name: "Uint32Constants",
Fields: []Field{
- Field{Declared: "Type", Type: &Interface{Name: "Type"}},
- Field{Declared: "Values", Type: &Slice{Alias: "", ValueType: &Struct{Name: "Uint32Constant"}}},
+ {Declared: "Type", Type: &Interface{Name: "Type"}},
+ {Declared: "Values", Type: &Slice{Alias: "", ValueType: &Struct{Name: "Uint32Constant"}}},
},
}
@@ -1657,8 +1657,8 @@ var schemaUint64Constant = &Class{
TypeID: binaryIDUint64Constant,
Name: "Uint64Constant",
Fields: []Field{
- Field{Declared: "Name", Type: &Primitive{Name: "string", Method: String}},
- Field{Declared: "Value", Type: &Primitive{Name: "uint64", Method: Uint64}},
+ {Declared: "Name", Type: &Primitive{Name: "string", Method: String}},
+ {Declared: "Value", Type: &Primitive{Name: "uint64", Method: Uint64}},
},
}
@@ -1739,8 +1739,8 @@ var schemaUint64Constants = &Class{
TypeID: binaryIDUint64Constants,
Name: "Uint64Constants",
Fields: []Field{
- Field{Declared: "Type", Type: &Interface{Name: "Type"}},
- Field{Declared: "Values", Type: &Slice{Alias: "", ValueType: &Struct{Name: "Uint64Constant"}}},
+ {Declared: "Type", Type: &Interface{Name: "Type"}},
+ {Declared: "Values", Type: &Slice{Alias: "", ValueType: &Struct{Name: "Uint64Constant"}}},
},
}
@@ -1799,8 +1799,8 @@ var schemaUint8Constant = &Class{
TypeID: binaryIDUint8Constant,
Name: "Uint8Constant",
Fields: []Field{
- Field{Declared: "Name", Type: &Primitive{Name: "string", Method: String}},
- Field{Declared: "Value", Type: &Primitive{Name: "uint8", Method: Uint8}},
+ {Declared: "Name", Type: &Primitive{Name: "string", Method: String}},
+ {Declared: "Value", Type: &Primitive{Name: "uint8", Method: Uint8}},
},
}
@@ -1881,7 +1881,7 @@ var schemaUint8Constants = &Class{
TypeID: binaryIDUint8Constants,
Name: "Uint8Constants",
Fields: []Field{
- Field{Declared: "Type", Type: &Interface{Name: "Type"}},
- Field{Declared: "Values", Type: &Slice{Alias: "", ValueType: &Struct{Name: "Uint8Constant"}}},
+ {Declared: "Type", Type: &Interface{Name: "Type"}},
+ {Declared: "Values", Type: &Slice{Alias: "", ValueType: &Struct{Name: "Uint8Constant"}}},
},
}
diff --git a/binary/test/test_binary.go b/binary/test/test_binary.go
index 8932618b7..80e803f84 100644
--- a/binary/test/test_binary.go
+++ b/binary/test/test_binary.go
@@ -65,7 +65,7 @@ var schemaTypeA = &schema.Class{
TypeID: TypeAID,
Name: "TypeA",
Fields: []schema.Field{
- schema.Field{Declared: "data", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "data", Type: &schema.Primitive{Name: "string", Method: schema.String}},
},
}
@@ -113,6 +113,6 @@ var schemaTypeB = &schema.Class{
TypeID: TypeBID,
Name: "TypeB",
Fields: []schema.Field{
- schema.Field{Declared: "data", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "data", Type: &schema.Primitive{Name: "string", Method: schema.String}},
},
}
diff --git a/builder/builder_binary.go b/builder/builder_binary.go
index 73bba558d..bb68a726b 100644
--- a/builder/builder_binary.go
+++ b/builder/builder_binary.go
@@ -130,11 +130,11 @@ var schemaGetFramebufferColor = &schema.Class{
TypeID: binaryIDGetFramebufferColor,
Name: "GetFramebufferColor",
Fields: []schema.Field{
- schema.Field{Declared: "Device", Type: &schema.Struct{Name: "service.DeviceId"}},
- schema.Field{Declared: "Capture", Type: &schema.Struct{Name: "service.CaptureId"}},
- schema.Field{Declared: "API", Type: &schema.Struct{Name: "service.ApiId"}},
- schema.Field{Declared: "After", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "Settings", Type: &schema.Struct{Name: "service.RenderSettings"}},
+ {Declared: "Device", Type: &schema.Struct{Name: "service.DeviceId"}},
+ {Declared: "Capture", Type: &schema.Struct{Name: "service.CaptureId"}},
+ {Declared: "API", Type: &schema.Struct{Name: "service.ApiId"}},
+ {Declared: "After", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Settings", Type: &schema.Struct{Name: "service.RenderSettings"}},
},
}
@@ -211,10 +211,10 @@ var schemaGetFramebufferDepth = &schema.Class{
TypeID: binaryIDGetFramebufferDepth,
Name: "GetFramebufferDepth",
Fields: []schema.Field{
- schema.Field{Declared: "Device", Type: &schema.Struct{Name: "service.DeviceId"}},
- schema.Field{Declared: "Capture", Type: &schema.Struct{Name: "service.CaptureId"}},
- schema.Field{Declared: "API", Type: &schema.Struct{Name: "service.ApiId"}},
- schema.Field{Declared: "After", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Device", Type: &schema.Struct{Name: "service.DeviceId"}},
+ {Declared: "Capture", Type: &schema.Struct{Name: "service.CaptureId"}},
+ {Declared: "API", Type: &schema.Struct{Name: "service.ApiId"}},
+ {Declared: "After", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
},
}
@@ -260,7 +260,7 @@ var schemaGetHierarchy = &schema.Class{
TypeID: binaryIDGetHierarchy,
Name: "GetHierarchy",
Fields: []schema.Field{
- schema.Field{Declared: "Capture", Type: &schema.Struct{Name: "service.CaptureId"}},
+ {Declared: "Capture", Type: &schema.Struct{Name: "service.CaptureId"}},
},
}
@@ -326,9 +326,9 @@ var schemaGetMemoryInfo = &schema.Class{
TypeID: binaryIDGetMemoryInfo,
Name: "GetMemoryInfo",
Fields: []schema.Field{
- schema.Field{Declared: "Capture", Type: &schema.Struct{Name: "service.CaptureId"}},
- schema.Field{Declared: "After", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "Range", Type: &schema.Struct{Name: "memory.Range"}},
+ {Declared: "Capture", Type: &schema.Struct{Name: "service.CaptureId"}},
+ {Declared: "After", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Range", Type: &schema.Struct{Name: "memory.Range"}},
},
}
@@ -385,8 +385,8 @@ var schemaGetState = &schema.Class{
TypeID: binaryIDGetState,
Name: "GetState",
Fields: []schema.Field{
- schema.Field{Declared: "Capture", Type: &schema.Struct{Name: "service.CaptureId"}},
- schema.Field{Declared: "After", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Capture", Type: &schema.Struct{Name: "service.CaptureId"}},
+ {Declared: "After", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
},
}
@@ -452,9 +452,9 @@ var schemaGetTimingInfo = &schema.Class{
TypeID: binaryIDGetTimingInfo,
Name: "GetTimingInfo",
Fields: []schema.Field{
- schema.Field{Declared: "Device", Type: &schema.Struct{Name: "service.DeviceId"}},
- schema.Field{Declared: "Capture", Type: &schema.Struct{Name: "service.CaptureId"}},
- schema.Field{Declared: "TimingMask", Type: &schema.Primitive{Name: "service.TimingMask", Method: schema.Int32}},
+ {Declared: "Device", Type: &schema.Struct{Name: "service.DeviceId"}},
+ {Declared: "Capture", Type: &schema.Struct{Name: "service.CaptureId"}},
+ {Declared: "TimingMask", Type: &schema.Primitive{Name: "service.TimingMask", Method: schema.Int32}},
},
}
@@ -571,12 +571,12 @@ var schemaPrerenderFramebuffers = &schema.Class{
TypeID: binaryIDPrerenderFramebuffers,
Name: "PrerenderFramebuffers",
Fields: []schema.Field{
- schema.Field{Declared: "Device", Type: &schema.Struct{Name: "service.DeviceId"}},
- schema.Field{Declared: "Capture", Type: &schema.Struct{Name: "service.CaptureId"}},
- schema.Field{Declared: "API", Type: &schema.Struct{Name: "service.ApiId"}},
- schema.Field{Declared: "AtomIDs", Type: &schema.Slice{Alias: "", ValueType: &schema.Primitive{Name: "uint64", Method: schema.Uint64}}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "Height", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "Device", Type: &schema.Struct{Name: "service.DeviceId"}},
+ {Declared: "Capture", Type: &schema.Struct{Name: "service.CaptureId"}},
+ {Declared: "API", Type: &schema.Struct{Name: "service.ApiId"}},
+ {Declared: "AtomIDs", Type: &schema.Slice{Alias: "", ValueType: &schema.Primitive{Name: "uint64", Method: schema.Uint64}}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "Height", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
},
}
@@ -686,13 +686,13 @@ var schemaRenderFramebufferColor = &schema.Class{
TypeID: binaryIDRenderFramebufferColor,
Name: "RenderFramebufferColor",
Fields: []schema.Field{
- schema.Field{Declared: "Device", Type: &schema.Struct{Name: "service.DeviceId"}},
- schema.Field{Declared: "Capture", Type: &schema.Struct{Name: "service.CaptureId"}},
- schema.Field{Declared: "API", Type: &schema.Struct{Name: "service.ApiId"}},
- schema.Field{Declared: "After", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "Height", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "Wireframe", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "Device", Type: &schema.Struct{Name: "service.DeviceId"}},
+ {Declared: "Capture", Type: &schema.Struct{Name: "service.CaptureId"}},
+ {Declared: "API", Type: &schema.Struct{Name: "service.ApiId"}},
+ {Declared: "After", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "Height", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "Wireframe", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
},
}
@@ -791,12 +791,12 @@ var schemaRenderFramebufferDepth = &schema.Class{
TypeID: binaryIDRenderFramebufferDepth,
Name: "RenderFramebufferDepth",
Fields: []schema.Field{
- schema.Field{Declared: "Device", Type: &schema.Struct{Name: "service.DeviceId"}},
- schema.Field{Declared: "Capture", Type: &schema.Struct{Name: "service.CaptureId"}},
- schema.Field{Declared: "API", Type: &schema.Struct{Name: "service.ApiId"}},
- schema.Field{Declared: "After", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "FramebufferWidth", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "FramebufferHeight", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "Device", Type: &schema.Struct{Name: "service.DeviceId"}},
+ {Declared: "Capture", Type: &schema.Struct{Name: "service.CaptureId"}},
+ {Declared: "API", Type: &schema.Struct{Name: "service.ApiId"}},
+ {Declared: "After", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "FramebufferWidth", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "FramebufferHeight", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
},
}
@@ -873,10 +873,10 @@ var schemaReplaceAtom = &schema.Class{
TypeID: binaryIDReplaceAtom,
Name: "ReplaceAtom",
Fields: []schema.Field{
- schema.Field{Declared: "Capture", Type: &schema.Struct{Name: "service.CaptureId"}},
- schema.Field{Declared: "Atom", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "Type", Type: &schema.Primitive{Name: "atom.TypeID", Method: schema.Uint16}},
- schema.Field{Declared: "Data", Type: &schema.Struct{Name: "service.Binary"}},
+ {Declared: "Capture", Type: &schema.Struct{Name: "service.CaptureId"}},
+ {Declared: "Atom", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Type", Type: &schema.Primitive{Name: "atom.TypeID", Method: schema.Uint16}},
+ {Declared: "Data", Type: &schema.Struct{Name: "service.Binary"}},
},
}
@@ -950,9 +950,9 @@ var schemaatomFramebufferDimensions = &schema.Class{
TypeID: binaryIDatomFramebufferDimensions,
Name: "atomFramebufferDimensions",
Fields: []schema.Field{
- schema.Field{Declared: "From", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "Height", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "From", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "Height", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
},
}
@@ -1024,7 +1024,7 @@ var schemacaptureFramebufferDimensions = &schema.Class{
TypeID: binaryIDcaptureFramebufferDimensions,
Name: "captureFramebufferDimensions",
Fields: []schema.Field{
- schema.Field{Declared: "Dimensions", Type: &schema.Slice{Alias: "", ValueType: &schema.Struct{Name: "atomFramebufferDimensions"}}},
+ {Declared: "Dimensions", Type: &schema.Slice{Alias: "", ValueType: &schema.Struct{Name: "atomFramebufferDimensions"}}},
},
}
@@ -1088,7 +1088,7 @@ var schemacaptures = &schema.Class{
TypeID: binaryIDcaptures,
Name: "captures",
Fields: []schema.Field{
- schema.Field{Declared: "ids", Type: &schema.Slice{Alias: "service.CaptureIdArray", ValueType: &schema.Struct{Name: "service.CaptureId"}}},
+ {Declared: "ids", Type: &schema.Slice{Alias: "service.CaptureIdArray", ValueType: &schema.Struct{Name: "service.CaptureId"}}},
},
}
@@ -1142,6 +1142,6 @@ var schemagetCaptureFramebufferDimensions = &schema.Class{
TypeID: binaryIDgetCaptureFramebufferDimensions,
Name: "getCaptureFramebufferDimensions",
Fields: []schema.Field{
- schema.Field{Declared: "Capture", Type: &schema.Struct{Name: "service.CaptureId"}},
+ {Declared: "Capture", Type: &schema.Struct{Name: "service.CaptureId"}},
},
}
diff --git a/database/database_binary.go b/database/database_binary.go
index 57f002c4e..bb5d764ac 100644
--- a/database/database_binary.go
+++ b/database/database_binary.go
@@ -91,8 +91,8 @@ var schemametadata = &schema.Class{
TypeID: binaryIDmetadata,
Name: "metadata",
Fields: []schema.Field{
- schema.Field{Declared: "Type", Type: &schema.Primitive{Name: "metaType", Method: schema.Int32}},
- schema.Field{Declared: "LinkTo", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
- schema.Field{Declared: "Request", Type: &schema.Interface{Name: "binary.Object"}},
+ {Declared: "Type", Type: &schema.Primitive{Name: "metaType", Method: schema.Int32}},
+ {Declared: "LinkTo", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
+ {Declared: "Request", Type: &schema.Interface{Name: "binary.Object"}},
},
}
diff --git a/database/database_binary_test.go b/database/database_binary_test.go
index 7935f8768..c9b2f730a 100644
--- a/database/database_binary_test.go
+++ b/database/database_binary_test.go
@@ -65,7 +65,7 @@ var schematestRequest = &schema.Class{
TypeID: binaryIDtestRequest,
Name: "testRequest",
Fields: []schema.Field{
- schema.Field{Declared: "Id", Type: &schema.Primitive{Name: "int", Method: schema.Int32}},
+ {Declared: "Id", Type: &schema.Primitive{Name: "int", Method: schema.Int32}},
},
}
@@ -153,8 +153,8 @@ var schematestResource = &schema.Class{
TypeID: binaryIDtestResource,
Name: "testResource",
Fields: []schema.Field{
- schema.Field{Declared: "Int", Type: &schema.Primitive{Name: "int", Method: schema.Int32}},
- schema.Field{Declared: "String", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "Array", Type: &schema.Slice{Alias: "", ValueType: &schema.Primitive{Name: "bool", Method: schema.Bool}}},
+ {Declared: "Int", Type: &schema.Primitive{Name: "int", Method: schema.Int32}},
+ {Declared: "String", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Array", Type: &schema.Slice{Alias: "", ValueType: &schema.Primitive{Name: "bool", Method: schema.Bool}}},
},
}
diff --git a/database/store/store_binary.go b/database/store/store_binary.go
index f3ddec4ca..82e5da2ef 100644
--- a/database/store/store_binary.go
+++ b/database/store/store_binary.go
@@ -75,7 +75,7 @@ var schemaBlob = &schema.Class{
TypeID: binaryIDBlob,
Name: "Blob",
Fields: []schema.Field{
- schema.Field{Declared: "Data", Type: &schema.Slice{Alias: "", ValueType: &schema.Primitive{Name: "byte", Method: schema.Uint8}}},
+ {Declared: "Data", Type: &schema.Slice{Alias: "", ValueType: &schema.Primitive{Name: "byte", Method: schema.Uint8}}},
},
}
@@ -144,7 +144,7 @@ var schemakeyValue = &schema.Class{
TypeID: binaryIDkeyValue,
Name: "keyValue",
Fields: []schema.Field{
- schema.Field{Declared: "id", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
- schema.Field{Declared: "buffer", Type: &schema.Slice{Alias: "", ValueType: &schema.Primitive{Name: "byte", Method: schema.Uint8}}},
+ {Declared: "id", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
+ {Declared: "buffer", Type: &schema.Slice{Alias: "", ValueType: &schema.Primitive{Name: "byte", Method: schema.Uint8}}},
},
}
diff --git a/gfxapi/gfxapi_binary.go b/gfxapi/gfxapi_binary.go
index 313cb8406..88af4ede9 100644
--- a/gfxapi/gfxapi_binary.go
+++ b/gfxapi/gfxapi_binary.go
@@ -7,11 +7,6 @@ package gfxapi
import "fmt"
-func init() {
-}
-
-var ()
-
const _FramebufferAttachment_name = "ColorDepthStencil"
var _FramebufferAttachment_map = map[FramebufferAttachment]string{
diff --git a/gfxapi/gles/gles_binary.go b/gfxapi/gles/gles_binary.go
index 30edf0592..158e37f76 100644
--- a/gfxapi/gles/gles_binary.go
+++ b/gfxapi/gles/gles_binary.go
@@ -703,11 +703,11 @@ var schemaArchitecture = &schema.Class{
TypeID: binaryIDArchitecture,
Name: "Architecture",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "PointerAlignment", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "PointerSize", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "IntegerSize", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "LittleEndian", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "PointerAlignment", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "PointerSize", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "IntegerSize", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "LittleEndian", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
},
}
@@ -819,13 +819,13 @@ var schemaBackbufferInfo = &schema.Class{
TypeID: binaryIDBackbufferInfo,
Name: "BackbufferInfo",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "ColorFmt", Type: &schema.Primitive{Name: "RenderbufferFormat", Method: schema.Uint32}},
- schema.Field{Declared: "DepthFmt", Type: &schema.Primitive{Name: "RenderbufferFormat", Method: schema.Uint32}},
- schema.Field{Declared: "StencilFmt", Type: &schema.Primitive{Name: "RenderbufferFormat", Method: schema.Uint32}},
- schema.Field{Declared: "ResetViewportScissor", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "ColorFmt", Type: &schema.Primitive{Name: "RenderbufferFormat", Method: schema.Uint32}},
+ {Declared: "DepthFmt", Type: &schema.Primitive{Name: "RenderbufferFormat", Method: schema.Uint32}},
+ {Declared: "StencilFmt", Type: &schema.Primitive{Name: "RenderbufferFormat", Method: schema.Uint32}},
+ {Declared: "ResetViewportScissor", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
},
}
@@ -917,11 +917,11 @@ var schemaColor = &schema.Class{
TypeID: binaryIDColor,
Name: "Color",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "Red", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Green", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Blue", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Alpha", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Red", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Green", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Blue", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Alpha", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
},
}
@@ -1044,14 +1044,14 @@ var schemaBlendState = &schema.Class{
TypeID: binaryIDBlendState,
Name: "BlendState",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "SrcRgbBlendFactor", Type: &schema.Primitive{Name: "BlendFactor", Method: schema.Uint32}},
- schema.Field{Declared: "SrcAlphaBlendFactor", Type: &schema.Primitive{Name: "BlendFactor", Method: schema.Uint32}},
- schema.Field{Declared: "DstRgbBlendFactor", Type: &schema.Primitive{Name: "BlendFactor", Method: schema.Uint32}},
- schema.Field{Declared: "DstAlphaBlendFactor", Type: &schema.Primitive{Name: "BlendFactor", Method: schema.Uint32}},
- schema.Field{Declared: "BlendEquationRgb", Type: &schema.Primitive{Name: "BlendEquation", Method: schema.Uint32}},
- schema.Field{Declared: "BlendEquationAlpha", Type: &schema.Primitive{Name: "BlendEquation", Method: schema.Uint32}},
- schema.Field{Declared: "BlendColor", Type: &schema.Struct{Name: "Color"}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "SrcRgbBlendFactor", Type: &schema.Primitive{Name: "BlendFactor", Method: schema.Uint32}},
+ {Declared: "SrcAlphaBlendFactor", Type: &schema.Primitive{Name: "BlendFactor", Method: schema.Uint32}},
+ {Declared: "DstRgbBlendFactor", Type: &schema.Primitive{Name: "BlendFactor", Method: schema.Uint32}},
+ {Declared: "DstAlphaBlendFactor", Type: &schema.Primitive{Name: "BlendFactor", Method: schema.Uint32}},
+ {Declared: "BlendEquationRgb", Type: &schema.Primitive{Name: "BlendEquation", Method: schema.Uint32}},
+ {Declared: "BlendEquationAlpha", Type: &schema.Primitive{Name: "BlendEquation", Method: schema.Uint32}},
+ {Declared: "BlendColor", Type: &schema.Struct{Name: "Color"}},
},
}
@@ -1132,10 +1132,10 @@ var schemaBoolˢ = &schema.Class{
TypeID: binaryIDBoolˢ,
Name: "Boolˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -1194,8 +1194,8 @@ var schemaBoolᵖ = &schema.Class{
TypeID: binaryIDBoolᵖ,
Name: "Boolᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -1276,10 +1276,10 @@ var schemaU8ˢ = &schema.Class{
TypeID: binaryIDU8ˢ,
Name: "U8ˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -1358,10 +1358,10 @@ var schemaBuffer = &schema.Class{
TypeID: binaryIDBuffer,
Name: "Buffer",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "Data", Type: &schema.Struct{Name: "U8ˢ"}},
- schema.Field{Declared: "Size", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Usage", Type: &schema.Primitive{Name: "BufferUsage", Method: schema.Uint32}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Data", Type: &schema.Struct{Name: "U8ˢ"}},
+ {Declared: "Size", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Usage", Type: &schema.Primitive{Name: "BufferUsage", Method: schema.Uint32}},
},
}
@@ -1420,8 +1420,8 @@ var schemaBufferDataPointer = &schema.Class{
TypeID: binaryIDBufferDataPointer,
Name: "BufferDataPointer",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -1502,10 +1502,10 @@ var schemaBufferIdˢ = &schema.Class{
TypeID: binaryIDBufferIdˢ,
Name: "BufferIdˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -1564,8 +1564,8 @@ var schemaBufferIdᵖ = &schema.Class{
TypeID: binaryIDBufferIdᵖ,
Name: "BufferIdᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -1624,8 +1624,8 @@ var schemaCGLContextObj = &schema.Class{
TypeID: binaryIDCGLContextObj,
Name: "CGLContextObj",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -1706,10 +1706,10 @@ var schemaCGLContextObjˢ = &schema.Class{
TypeID: binaryIDCGLContextObjˢ,
Name: "CGLContextObjˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -1768,8 +1768,8 @@ var schemaCGLContextObjᵖ = &schema.Class{
TypeID: binaryIDCGLContextObjᵖ,
Name: "CGLContextObjᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -1828,8 +1828,8 @@ var schemaCGLPixelFormatObj = &schema.Class{
TypeID: binaryIDCGLPixelFormatObj,
Name: "CGLPixelFormatObj",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -1913,11 +1913,11 @@ var schemaCGLCreateContext = &schema.Class{
TypeID: binaryIDCGLCreateContext,
Name: "CGLCreateContext",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Pix", Type: &schema.Struct{Name: "CGLPixelFormatObj"}},
- schema.Field{Declared: "Share", Type: &schema.Struct{Name: "CGLContextObj"}},
- schema.Field{Declared: "Ctx", Type: &schema.Struct{Name: "CGLContextObjᵖ"}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "CGLError", Method: schema.Int64}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Pix", Type: &schema.Struct{Name: "CGLPixelFormatObj"}},
+ {Declared: "Share", Type: &schema.Struct{Name: "CGLContextObj"}},
+ {Declared: "Ctx", Type: &schema.Struct{Name: "CGLContextObjᵖ"}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "CGLError", Method: schema.Int64}},
},
}
@@ -1985,9 +1985,9 @@ var schemaCGLSetCurrentContext = &schema.Class{
TypeID: binaryIDCGLSetCurrentContext,
Name: "CGLSetCurrentContext",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Ctx", Type: &schema.Struct{Name: "CGLContextObj"}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "CGLError", Method: schema.Int64}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Ctx", Type: &schema.Struct{Name: "CGLContextObj"}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "CGLError", Method: schema.Int64}},
},
}
@@ -2068,10 +2068,10 @@ var schemaCharˢ = &schema.Class{
TypeID: binaryIDCharˢ,
Name: "Charˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -2130,8 +2130,8 @@ var schemaCharᵖ = &schema.Class{
TypeID: binaryIDCharᵖ,
Name: "Charᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -2212,10 +2212,10 @@ var schemaCharᵖˢ = &schema.Class{
TypeID: binaryIDCharᵖˢ,
Name: "Charᵖˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -2274,8 +2274,8 @@ var schemaCharᵖᵖ = &schema.Class{
TypeID: binaryIDCharᵖᵖ,
Name: "Charᵖᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -2354,10 +2354,10 @@ var schemaClearState = &schema.Class{
TypeID: binaryIDClearState,
Name: "ClearState",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "ClearColor", Type: &schema.Struct{Name: "Color"}},
- schema.Field{Declared: "ClearDepth", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "ClearStencil", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "ClearColor", Type: &schema.Struct{Name: "Color"}},
+ {Declared: "ClearDepth", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "ClearStencil", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -2449,11 +2449,11 @@ var schemaRect = &schema.Class{
TypeID: binaryIDRect,
Name: "Rect",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "X", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Y", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "X", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Y", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -2728,25 +2728,25 @@ var schemaRasterizerState = &schema.Class{
TypeID: binaryIDRasterizerState,
Name: "RasterizerState",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "DepthMask", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
- schema.Field{Declared: "DepthTestFunction", Type: &schema.Primitive{Name: "TestFunction", Method: schema.Uint32}},
- schema.Field{Declared: "DepthNear", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "DepthFar", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "ColorMaskRed", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
- schema.Field{Declared: "ColorMaskGreen", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
- schema.Field{Declared: "ColorMaskBlue", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
- schema.Field{Declared: "ColorMaskAlpha", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
- schema.Field{Declared: "StencilMask", Type: &schema.Map{Alias: "FaceModeːu32ᵐ", KeyType: &schema.Primitive{Name: "FaceMode", Method: schema.Uint32}, ValueType: &schema.Primitive{Name: "uint32", Method: schema.Uint32}}},
- schema.Field{Declared: "Viewport", Type: &schema.Struct{Name: "Rect"}},
- schema.Field{Declared: "Scissor", Type: &schema.Struct{Name: "Rect"}},
- schema.Field{Declared: "FrontFace", Type: &schema.Primitive{Name: "FaceOrientation", Method: schema.Uint32}},
- schema.Field{Declared: "CullFace", Type: &schema.Primitive{Name: "FaceMode", Method: schema.Uint32}},
- schema.Field{Declared: "LineWidth", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "PolygonOffsetFactor", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "PolygonOffsetUnits", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "SampleCoverageValue", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "SampleCoverageInvert", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "DepthMask", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "DepthTestFunction", Type: &schema.Primitive{Name: "TestFunction", Method: schema.Uint32}},
+ {Declared: "DepthNear", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "DepthFar", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "ColorMaskRed", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "ColorMaskGreen", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "ColorMaskBlue", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "ColorMaskAlpha", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "StencilMask", Type: &schema.Map{Alias: "FaceModeːu32ᵐ", KeyType: &schema.Primitive{Name: "FaceMode", Method: schema.Uint32}, ValueType: &schema.Primitive{Name: "uint32", Method: schema.Uint32}}},
+ {Declared: "Viewport", Type: &schema.Struct{Name: "Rect"}},
+ {Declared: "Scissor", Type: &schema.Struct{Name: "Rect"}},
+ {Declared: "FrontFace", Type: &schema.Primitive{Name: "FaceOrientation", Method: schema.Uint32}},
+ {Declared: "CullFace", Type: &schema.Primitive{Name: "FaceMode", Method: schema.Uint32}},
+ {Declared: "LineWidth", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "PolygonOffsetFactor", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "PolygonOffsetUnits", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "SampleCoverageValue", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "SampleCoverageInvert", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
},
}
@@ -2805,8 +2805,8 @@ var schemaVertexPointer = &schema.Class{
TypeID: binaryIDVertexPointer,
Name: "VertexPointer",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -2931,14 +2931,14 @@ var schemaVertexAttributeArray = &schema.Class{
TypeID: binaryIDVertexAttributeArray,
Name: "VertexAttributeArray",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "Enabled", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
- schema.Field{Declared: "Size", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "Type", Type: &schema.Primitive{Name: "VertexAttribType", Method: schema.Uint32}},
- schema.Field{Declared: "Normalized", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
- schema.Field{Declared: "Stride", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Buffer", Type: &schema.Primitive{Name: "BufferId", Method: schema.Uint32}},
- schema.Field{Declared: "Pointer", Type: &schema.Struct{Name: "VertexPointer"}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Enabled", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "Size", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "Type", Type: &schema.Primitive{Name: "VertexAttribType", Method: schema.Uint32}},
+ {Declared: "Normalized", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "Stride", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Buffer", Type: &schema.Primitive{Name: "BufferId", Method: schema.Uint32}},
+ {Declared: "Pointer", Type: &schema.Struct{Name: "VertexPointer"}},
},
}
@@ -3028,11 +3028,11 @@ var schemaRenderbuffer = &schema.Class{
TypeID: binaryIDRenderbuffer,
Name: "Renderbuffer",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Data", Type: &schema.Struct{Name: "U8ˢ"}},
- schema.Field{Declared: "Format", Type: &schema.Primitive{Name: "RenderbufferFormat", Method: schema.Uint32}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Data", Type: &schema.Struct{Name: "U8ˢ"}},
+ {Declared: "Format", Type: &schema.Primitive{Name: "RenderbufferFormat", Method: schema.Uint32}},
},
}
@@ -3133,12 +3133,12 @@ var schemaImage = &schema.Class{
TypeID: binaryIDImage,
Name: "Image",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Data", Type: &schema.Struct{Name: "U8ˢ"}},
- schema.Field{Declared: "Size", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "Format", Type: &schema.Primitive{Name: "ImageTexelFormat", Method: schema.Uint32}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Data", Type: &schema.Struct{Name: "U8ˢ"}},
+ {Declared: "Size", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "Format", Type: &schema.Primitive{Name: "ImageTexelFormat", Method: schema.Uint32}},
},
}
@@ -3228,8 +3228,8 @@ var schemaCubemapLevel = &schema.Class{
TypeID: binaryIDCubemapLevel,
Name: "CubemapLevel",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "Faces", Type: &schema.Map{Alias: "CubeMapImageTargetːImageᵐ", KeyType: &schema.Primitive{Name: "CubeMapImageTarget", Method: schema.Uint32}, ValueType: &schema.Struct{Name: "Image"}}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Faces", Type: &schema.Map{Alias: "CubeMapImageTargetːImageᵐ", KeyType: &schema.Primitive{Name: "CubeMapImageTarget", Method: schema.Uint32}, ValueType: &schema.Struct{Name: "Image"}}},
},
}
@@ -3482,20 +3482,20 @@ var schemaTexture = &schema.Class{
TypeID: binaryIDTexture,
Name: "Texture",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "Kind", Type: &schema.Primitive{Name: "TextureKind", Method: schema.Uint32}},
- schema.Field{Declared: "Format", Type: &schema.Primitive{Name: "ImageTexelFormat", Method: schema.Uint32}},
- schema.Field{Declared: "Texture2D", Type: &schema.Map{Alias: "S32ːImageᵐ", KeyType: &schema.Primitive{Name: "int32", Method: schema.Int32}, ValueType: &schema.Struct{Name: "Image"}}},
- schema.Field{Declared: "Cubemap", Type: &schema.Map{Alias: "S32ːCubemapLevelᵐ", KeyType: &schema.Primitive{Name: "int32", Method: schema.Int32}, ValueType: &schema.Struct{Name: "CubemapLevel"}}},
- schema.Field{Declared: "MagFilter", Type: &schema.Primitive{Name: "TextureFilterMode", Method: schema.Uint32}},
- schema.Field{Declared: "MinFilter", Type: &schema.Primitive{Name: "TextureFilterMode", Method: schema.Uint32}},
- schema.Field{Declared: "WrapS", Type: &schema.Primitive{Name: "TextureWrapMode", Method: schema.Uint32}},
- schema.Field{Declared: "WrapT", Type: &schema.Primitive{Name: "TextureWrapMode", Method: schema.Uint32}},
- schema.Field{Declared: "SwizzleR", Type: &schema.Primitive{Name: "TexelComponent", Method: schema.Uint32}},
- schema.Field{Declared: "SwizzleG", Type: &schema.Primitive{Name: "TexelComponent", Method: schema.Uint32}},
- schema.Field{Declared: "SwizzleB", Type: &schema.Primitive{Name: "TexelComponent", Method: schema.Uint32}},
- schema.Field{Declared: "SwizzleA", Type: &schema.Primitive{Name: "TexelComponent", Method: schema.Uint32}},
- schema.Field{Declared: "MaxAnisotropy", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Kind", Type: &schema.Primitive{Name: "TextureKind", Method: schema.Uint32}},
+ {Declared: "Format", Type: &schema.Primitive{Name: "ImageTexelFormat", Method: schema.Uint32}},
+ {Declared: "Texture2D", Type: &schema.Map{Alias: "S32ːImageᵐ", KeyType: &schema.Primitive{Name: "int32", Method: schema.Int32}, ValueType: &schema.Struct{Name: "Image"}}},
+ {Declared: "Cubemap", Type: &schema.Map{Alias: "S32ːCubemapLevelᵐ", KeyType: &schema.Primitive{Name: "int32", Method: schema.Int32}, ValueType: &schema.Struct{Name: "CubemapLevel"}}},
+ {Declared: "MagFilter", Type: &schema.Primitive{Name: "TextureFilterMode", Method: schema.Uint32}},
+ {Declared: "MinFilter", Type: &schema.Primitive{Name: "TextureFilterMode", Method: schema.Uint32}},
+ {Declared: "WrapS", Type: &schema.Primitive{Name: "TextureWrapMode", Method: schema.Uint32}},
+ {Declared: "WrapT", Type: &schema.Primitive{Name: "TextureWrapMode", Method: schema.Uint32}},
+ {Declared: "SwizzleR", Type: &schema.Primitive{Name: "TexelComponent", Method: schema.Uint32}},
+ {Declared: "SwizzleG", Type: &schema.Primitive{Name: "TexelComponent", Method: schema.Uint32}},
+ {Declared: "SwizzleB", Type: &schema.Primitive{Name: "TexelComponent", Method: schema.Uint32}},
+ {Declared: "SwizzleA", Type: &schema.Primitive{Name: "TexelComponent", Method: schema.Uint32}},
+ {Declared: "MaxAnisotropy", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
},
}
@@ -3591,11 +3591,11 @@ var schemaFramebufferAttachmentInfo = &schema.Class{
TypeID: binaryIDFramebufferAttachmentInfo,
Name: "FramebufferAttachmentInfo",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "Object", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "Type", Type: &schema.Primitive{Name: "FramebufferAttachmentType", Method: schema.Uint32}},
- schema.Field{Declared: "TextureLevel", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "CubeMapFace", Type: &schema.Primitive{Name: "CubeMapImageTarget", Method: schema.Uint32}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Object", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "Type", Type: &schema.Primitive{Name: "FramebufferAttachmentType", Method: schema.Uint32}},
+ {Declared: "TextureLevel", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "CubeMapFace", Type: &schema.Primitive{Name: "CubeMapImageTarget", Method: schema.Uint32}},
},
}
@@ -3685,8 +3685,8 @@ var schemaFramebuffer = &schema.Class{
TypeID: binaryIDFramebuffer,
Name: "Framebuffer",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "Attachments", Type: &schema.Map{Alias: "FramebufferAttachmentːFramebufferAttachmentInfoᵐ", KeyType: &schema.Primitive{Name: "FramebufferAttachment", Method: schema.Uint32}, ValueType: &schema.Struct{Name: "FramebufferAttachmentInfo"}}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Attachments", Type: &schema.Map{Alias: "FramebufferAttachmentːFramebufferAttachmentInfoᵐ", KeyType: &schema.Primitive{Name: "FramebufferAttachment", Method: schema.Uint32}, ValueType: &schema.Struct{Name: "FramebufferAttachmentInfo"}}},
},
}
@@ -3796,13 +3796,13 @@ var schemaShader = &schema.Class{
TypeID: binaryIDShader,
Name: "Shader",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "Binary", Type: &schema.Struct{Name: "U8ˢ"}},
- schema.Field{Declared: "Compiled", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
- schema.Field{Declared: "Deletable", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
- schema.Field{Declared: "InfoLog", Type: &schema.Struct{Name: "Charˢ"}},
- schema.Field{Declared: "Source", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "Type", Type: &schema.Primitive{Name: "ShaderType", Method: schema.Uint32}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Binary", Type: &schema.Struct{Name: "U8ˢ"}},
+ {Declared: "Compiled", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "Deletable", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "InfoLog", Type: &schema.Struct{Name: "Charˢ"}},
+ {Declared: "Source", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Type", Type: &schema.Primitive{Name: "ShaderType", Method: schema.Uint32}},
},
}
@@ -3881,10 +3881,10 @@ var schemaVertexAttribute = &schema.Class{
TypeID: binaryIDVertexAttribute,
Name: "VertexAttribute",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "Name", Type: &schema.Struct{Name: "Charˢ"}},
- schema.Field{Declared: "VectorCount", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Type", Type: &schema.Primitive{Name: "ShaderAttribType", Method: schema.Uint32}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Name", Type: &schema.Struct{Name: "Charˢ"}},
+ {Declared: "VectorCount", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Type", Type: &schema.Primitive{Name: "ShaderAttribType", Method: schema.Uint32}},
},
}
@@ -3954,9 +3954,9 @@ var schemaVec2f = &schema.Class{
TypeID: binaryIDVec2f,
Name: "Vec2f",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "X", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Y", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "X", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Y", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
},
}
@@ -4037,10 +4037,10 @@ var schemaVec3f = &schema.Class{
TypeID: binaryIDVec3f,
Name: "Vec3f",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "X", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Y", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Z", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "X", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Y", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Z", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
},
}
@@ -4132,11 +4132,11 @@ var schemaVec4f = &schema.Class{
TypeID: binaryIDVec4f,
Name: "Vec4f",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "X", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Y", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Z", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "W", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "X", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Y", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Z", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "W", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
},
}
@@ -4206,9 +4206,9 @@ var schemaVec2i = &schema.Class{
TypeID: binaryIDVec2i,
Name: "Vec2i",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "X", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Y", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "X", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Y", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -4289,10 +4289,10 @@ var schemaVec3i = &schema.Class{
TypeID: binaryIDVec3i,
Name: "Vec3i",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "X", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Y", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Z", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "X", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Y", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Z", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -4384,11 +4384,11 @@ var schemaVec4i = &schema.Class{
TypeID: binaryIDVec4i,
Name: "Vec4i",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "X", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Y", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Z", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "W", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "X", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Y", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Z", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "W", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -4454,9 +4454,9 @@ var schemaMat2f = &schema.Class{
TypeID: binaryIDMat2f,
Name: "Mat2f",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "Col0", Type: &schema.Struct{Name: "Vec2f"}},
- schema.Field{Declared: "Col1", Type: &schema.Struct{Name: "Vec2f"}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Col0", Type: &schema.Struct{Name: "Vec2f"}},
+ {Declared: "Col1", Type: &schema.Struct{Name: "Vec2f"}},
},
}
@@ -4531,10 +4531,10 @@ var schemaMat3f = &schema.Class{
TypeID: binaryIDMat3f,
Name: "Mat3f",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "Col0", Type: &schema.Struct{Name: "Vec3f"}},
- schema.Field{Declared: "Col1", Type: &schema.Struct{Name: "Vec3f"}},
- schema.Field{Declared: "Col2", Type: &schema.Struct{Name: "Vec3f"}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Col0", Type: &schema.Struct{Name: "Vec3f"}},
+ {Declared: "Col1", Type: &schema.Struct{Name: "Vec3f"}},
+ {Declared: "Col2", Type: &schema.Struct{Name: "Vec3f"}},
},
}
@@ -4618,11 +4618,11 @@ var schemaMat4f = &schema.Class{
TypeID: binaryIDMat4f,
Name: "Mat4f",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "Col0", Type: &schema.Struct{Name: "Vec4f"}},
- schema.Field{Declared: "Col1", Type: &schema.Struct{Name: "Vec4f"}},
- schema.Field{Declared: "Col2", Type: &schema.Struct{Name: "Vec4f"}},
- schema.Field{Declared: "Col3", Type: &schema.Struct{Name: "Vec4f"}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Col0", Type: &schema.Struct{Name: "Vec4f"}},
+ {Declared: "Col1", Type: &schema.Struct{Name: "Vec4f"}},
+ {Declared: "Col2", Type: &schema.Struct{Name: "Vec4f"}},
+ {Declared: "Col3", Type: &schema.Struct{Name: "Vec4f"}},
},
}
@@ -4773,18 +4773,18 @@ var schemaUniformValue = &schema.Class{
TypeID: binaryIDUniformValue,
Name: "UniformValue",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "F32", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Vec2f", Type: &schema.Struct{Name: "Vec2f"}},
- schema.Field{Declared: "Vec3f", Type: &schema.Struct{Name: "Vec3f"}},
- schema.Field{Declared: "Vec4f", Type: &schema.Struct{Name: "Vec4f"}},
- schema.Field{Declared: "S32", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Vec2i", Type: &schema.Struct{Name: "Vec2i"}},
- schema.Field{Declared: "Vec3i", Type: &schema.Struct{Name: "Vec3i"}},
- schema.Field{Declared: "Vec4i", Type: &schema.Struct{Name: "Vec4i"}},
- schema.Field{Declared: "Mat2f", Type: &schema.Struct{Name: "Mat2f"}},
- schema.Field{Declared: "Mat3f", Type: &schema.Struct{Name: "Mat3f"}},
- schema.Field{Declared: "Mat4f", Type: &schema.Struct{Name: "Mat4f"}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "F32", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Vec2f", Type: &schema.Struct{Name: "Vec2f"}},
+ {Declared: "Vec3f", Type: &schema.Struct{Name: "Vec3f"}},
+ {Declared: "Vec4f", Type: &schema.Struct{Name: "Vec4f"}},
+ {Declared: "S32", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Vec2i", Type: &schema.Struct{Name: "Vec2i"}},
+ {Declared: "Vec3i", Type: &schema.Struct{Name: "Vec3i"}},
+ {Declared: "Vec4i", Type: &schema.Struct{Name: "Vec4i"}},
+ {Declared: "Mat2f", Type: &schema.Struct{Name: "Mat2f"}},
+ {Declared: "Mat3f", Type: &schema.Struct{Name: "Mat3f"}},
+ {Declared: "Mat4f", Type: &schema.Struct{Name: "Mat4f"}},
},
}
@@ -4863,10 +4863,10 @@ var schemaUniform = &schema.Class{
TypeID: binaryIDUniform,
Name: "Uniform",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "Type", Type: &schema.Primitive{Name: "ShaderUniformType", Method: schema.Uint32}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "UniformValue"}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Type", Type: &schema.Primitive{Name: "ShaderUniformType", Method: schema.Uint32}},
+ {Declared: "Value", Type: &schema.Struct{Name: "UniformValue"}},
},
}
@@ -5115,14 +5115,14 @@ var schemaProgram = &schema.Class{
TypeID: binaryIDProgram,
Name: "Program",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "Shaders", Type: &schema.Map{Alias: "ShaderTypeːShaderIdᵐ", KeyType: &schema.Primitive{Name: "ShaderType", Method: schema.Uint32}, ValueType: &schema.Primitive{Name: "ShaderId", Method: schema.Uint32}}},
- schema.Field{Declared: "Linked", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
- schema.Field{Declared: "Binary", Type: &schema.Struct{Name: "U8ˢ"}},
- schema.Field{Declared: "AttributeBindings", Type: &schema.Map{Alias: "StringːAttributeLocationᵐ", KeyType: &schema.Primitive{Name: "string", Method: schema.String}, ValueType: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}}},
- schema.Field{Declared: "Attributes", Type: &schema.Map{Alias: "S32ːVertexAttributeᵐ", KeyType: &schema.Primitive{Name: "int32", Method: schema.Int32}, ValueType: &schema.Struct{Name: "VertexAttribute"}}},
- schema.Field{Declared: "Uniforms", Type: &schema.Map{Alias: "UniformLocationːUniformᵐ", KeyType: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}, ValueType: &schema.Struct{Name: "Uniform"}}},
- schema.Field{Declared: "InfoLog", Type: &schema.Struct{Name: "Charˢ"}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Shaders", Type: &schema.Map{Alias: "ShaderTypeːShaderIdᵐ", KeyType: &schema.Primitive{Name: "ShaderType", Method: schema.Uint32}, ValueType: &schema.Primitive{Name: "ShaderId", Method: schema.Uint32}}},
+ {Declared: "Linked", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "Binary", Type: &schema.Struct{Name: "U8ˢ"}},
+ {Declared: "AttributeBindings", Type: &schema.Map{Alias: "StringːAttributeLocationᵐ", KeyType: &schema.Primitive{Name: "string", Method: schema.String}, ValueType: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}}},
+ {Declared: "Attributes", Type: &schema.Map{Alias: "S32ːVertexAttributeᵐ", KeyType: &schema.Primitive{Name: "int32", Method: schema.Int32}, ValueType: &schema.Struct{Name: "VertexAttribute"}}},
+ {Declared: "Uniforms", Type: &schema.Map{Alias: "UniformLocationːUniformᵐ", KeyType: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}, ValueType: &schema.Struct{Name: "Uniform"}}},
+ {Declared: "InfoLog", Type: &schema.Struct{Name: "Charˢ"}},
},
}
@@ -5170,7 +5170,7 @@ var schemaVertexArray = &schema.Class{
TypeID: binaryIDVertexArray,
Name: "VertexArray",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
},
}
@@ -5218,7 +5218,7 @@ var schemaQuery = &schema.Class{
TypeID: binaryIDQuery,
Name: "Query",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
},
}
@@ -5666,15 +5666,15 @@ var schemaObjects = &schema.Class{
TypeID: binaryIDObjects,
Name: "Objects",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "Renderbuffers", Type: &schema.Map{Alias: "RenderbufferIdːRenderbufferʳᵐ", KeyType: &schema.Primitive{Name: "RenderbufferId", Method: schema.Uint32}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "Renderbuffer"}}}},
- schema.Field{Declared: "Textures", Type: &schema.Map{Alias: "TextureIdːTextureʳᵐ", KeyType: &schema.Primitive{Name: "TextureId", Method: schema.Uint32}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "Texture"}}}},
- schema.Field{Declared: "Framebuffers", Type: &schema.Map{Alias: "FramebufferIdːFramebufferʳᵐ", KeyType: &schema.Primitive{Name: "FramebufferId", Method: schema.Uint32}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "Framebuffer"}}}},
- schema.Field{Declared: "Buffers", Type: &schema.Map{Alias: "BufferIdːBufferʳᵐ", KeyType: &schema.Primitive{Name: "BufferId", Method: schema.Uint32}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "Buffer"}}}},
- schema.Field{Declared: "Shaders", Type: &schema.Map{Alias: "ShaderIdːShaderʳᵐ", KeyType: &schema.Primitive{Name: "ShaderId", Method: schema.Uint32}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "Shader"}}}},
- schema.Field{Declared: "Programs", Type: &schema.Map{Alias: "ProgramIdːProgramʳᵐ", KeyType: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "Program"}}}},
- schema.Field{Declared: "VertexArrays", Type: &schema.Map{Alias: "VertexArrayIdːVertexArrayʳᵐ", KeyType: &schema.Primitive{Name: "VertexArrayId", Method: schema.Uint32}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "VertexArray"}}}},
- schema.Field{Declared: "Queries", Type: &schema.Map{Alias: "QueryIdːQueryʳᵐ", KeyType: &schema.Primitive{Name: "QueryId", Method: schema.Uint32}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "Query"}}}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Renderbuffers", Type: &schema.Map{Alias: "RenderbufferIdːRenderbufferʳᵐ", KeyType: &schema.Primitive{Name: "RenderbufferId", Method: schema.Uint32}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "Renderbuffer"}}}},
+ {Declared: "Textures", Type: &schema.Map{Alias: "TextureIdːTextureʳᵐ", KeyType: &schema.Primitive{Name: "TextureId", Method: schema.Uint32}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "Texture"}}}},
+ {Declared: "Framebuffers", Type: &schema.Map{Alias: "FramebufferIdːFramebufferʳᵐ", KeyType: &schema.Primitive{Name: "FramebufferId", Method: schema.Uint32}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "Framebuffer"}}}},
+ {Declared: "Buffers", Type: &schema.Map{Alias: "BufferIdːBufferʳᵐ", KeyType: &schema.Primitive{Name: "BufferId", Method: schema.Uint32}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "Buffer"}}}},
+ {Declared: "Shaders", Type: &schema.Map{Alias: "ShaderIdːShaderʳᵐ", KeyType: &schema.Primitive{Name: "ShaderId", Method: schema.Uint32}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "Shader"}}}},
+ {Declared: "Programs", Type: &schema.Map{Alias: "ProgramIdːProgramʳᵐ", KeyType: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "Program"}}}},
+ {Declared: "VertexArrays", Type: &schema.Map{Alias: "VertexArrayIdːVertexArrayʳᵐ", KeyType: &schema.Primitive{Name: "VertexArrayId", Method: schema.Uint32}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "VertexArray"}}}},
+ {Declared: "Queries", Type: &schema.Map{Alias: "QueryIdːQueryʳᵐ", KeyType: &schema.Primitive{Name: "QueryId", Method: schema.Uint32}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "Query"}}}},
},
}
@@ -6160,23 +6160,23 @@ var schemaContext = &schema.Class{
TypeID: binaryIDContext,
Name: "Context",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "Identifier", Type: &schema.Primitive{Name: "ContextID", Method: schema.Uint32}},
- schema.Field{Declared: "Blending", Type: &schema.Struct{Name: "BlendState"}},
- schema.Field{Declared: "Rasterizing", Type: &schema.Struct{Name: "RasterizerState"}},
- schema.Field{Declared: "Clearing", Type: &schema.Struct{Name: "ClearState"}},
- schema.Field{Declared: "BoundFramebuffers", Type: &schema.Map{Alias: "FramebufferTargetːFramebufferIdᵐ", KeyType: &schema.Primitive{Name: "FramebufferTarget", Method: schema.Uint32}, ValueType: &schema.Primitive{Name: "FramebufferId", Method: schema.Uint32}}},
- schema.Field{Declared: "BoundRenderbuffers", Type: &schema.Map{Alias: "RenderbufferTargetːRenderbufferIdᵐ", KeyType: &schema.Primitive{Name: "RenderbufferTarget", Method: schema.Uint32}, ValueType: &schema.Primitive{Name: "RenderbufferId", Method: schema.Uint32}}},
- schema.Field{Declared: "BoundBuffers", Type: &schema.Map{Alias: "BufferTargetːBufferIdᵐ", KeyType: &schema.Primitive{Name: "BufferTarget", Method: schema.Uint32}, ValueType: &schema.Primitive{Name: "BufferId", Method: schema.Uint32}}},
- schema.Field{Declared: "BoundProgram", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
- schema.Field{Declared: "BoundVertexArray", Type: &schema.Primitive{Name: "VertexArrayId", Method: schema.Uint32}},
- schema.Field{Declared: "VertexAttributeArrays", Type: &schema.Map{Alias: "AttributeLocationːVertexAttributeArrayʳᵐ", KeyType: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "VertexAttributeArray"}}}},
- schema.Field{Declared: "TextureUnits", Type: &schema.Map{Alias: "TextureUnitːTextureTargetːTextureIdᵐᵐ", KeyType: &schema.Primitive{Name: "TextureUnit", Method: schema.Uint32}, ValueType: &schema.Map{Alias: "TextureTargetːTextureIdᵐ", KeyType: &schema.Primitive{Name: "TextureTarget", Method: schema.Uint32}, ValueType: &schema.Primitive{Name: "TextureId", Method: schema.Uint32}}}},
- schema.Field{Declared: "ActiveTextureUnit", Type: &schema.Primitive{Name: "TextureUnit", Method: schema.Uint32}},
- schema.Field{Declared: "Capabilities", Type: &schema.Map{Alias: "Capabilityːboolᵐ", KeyType: &schema.Primitive{Name: "Capability", Method: schema.Uint32}, ValueType: &schema.Primitive{Name: "bool", Method: schema.Bool}}},
- schema.Field{Declared: "GenerateMipmapHint", Type: &schema.Primitive{Name: "HintMode", Method: schema.Uint32}},
- schema.Field{Declared: "PixelStorage", Type: &schema.Map{Alias: "PixelStoreParameterːs32ᵐ", KeyType: &schema.Primitive{Name: "PixelStoreParameter", Method: schema.Uint32}, ValueType: &schema.Primitive{Name: "int32", Method: schema.Int32}}},
- schema.Field{Declared: "Instances", Type: &schema.Struct{Name: "Objects"}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "Identifier", Type: &schema.Primitive{Name: "ContextID", Method: schema.Uint32}},
+ {Declared: "Blending", Type: &schema.Struct{Name: "BlendState"}},
+ {Declared: "Rasterizing", Type: &schema.Struct{Name: "RasterizerState"}},
+ {Declared: "Clearing", Type: &schema.Struct{Name: "ClearState"}},
+ {Declared: "BoundFramebuffers", Type: &schema.Map{Alias: "FramebufferTargetːFramebufferIdᵐ", KeyType: &schema.Primitive{Name: "FramebufferTarget", Method: schema.Uint32}, ValueType: &schema.Primitive{Name: "FramebufferId", Method: schema.Uint32}}},
+ {Declared: "BoundRenderbuffers", Type: &schema.Map{Alias: "RenderbufferTargetːRenderbufferIdᵐ", KeyType: &schema.Primitive{Name: "RenderbufferTarget", Method: schema.Uint32}, ValueType: &schema.Primitive{Name: "RenderbufferId", Method: schema.Uint32}}},
+ {Declared: "BoundBuffers", Type: &schema.Map{Alias: "BufferTargetːBufferIdᵐ", KeyType: &schema.Primitive{Name: "BufferTarget", Method: schema.Uint32}, ValueType: &schema.Primitive{Name: "BufferId", Method: schema.Uint32}}},
+ {Declared: "BoundProgram", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
+ {Declared: "BoundVertexArray", Type: &schema.Primitive{Name: "VertexArrayId", Method: schema.Uint32}},
+ {Declared: "VertexAttributeArrays", Type: &schema.Map{Alias: "AttributeLocationːVertexAttributeArrayʳᵐ", KeyType: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "VertexAttributeArray"}}}},
+ {Declared: "TextureUnits", Type: &schema.Map{Alias: "TextureUnitːTextureTargetːTextureIdᵐᵐ", KeyType: &schema.Primitive{Name: "TextureUnit", Method: schema.Uint32}, ValueType: &schema.Map{Alias: "TextureTargetːTextureIdᵐ", KeyType: &schema.Primitive{Name: "TextureTarget", Method: schema.Uint32}, ValueType: &schema.Primitive{Name: "TextureId", Method: schema.Uint32}}}},
+ {Declared: "ActiveTextureUnit", Type: &schema.Primitive{Name: "TextureUnit", Method: schema.Uint32}},
+ {Declared: "Capabilities", Type: &schema.Map{Alias: "Capabilityːboolᵐ", KeyType: &schema.Primitive{Name: "Capability", Method: schema.Uint32}, ValueType: &schema.Primitive{Name: "bool", Method: schema.Bool}}},
+ {Declared: "GenerateMipmapHint", Type: &schema.Primitive{Name: "HintMode", Method: schema.Uint32}},
+ {Declared: "PixelStorage", Type: &schema.Map{Alias: "PixelStoreParameterːs32ᵐ", KeyType: &schema.Primitive{Name: "PixelStoreParameter", Method: schema.Uint32}, ValueType: &schema.Primitive{Name: "int32", Method: schema.Int32}}},
+ {Declared: "Instances", Type: &schema.Struct{Name: "Objects"}},
},
}
@@ -6265,10 +6265,10 @@ var schemaDiscardFramebufferAttachmentˢ = &schema.Class{
TypeID: binaryIDDiscardFramebufferAttachmentˢ,
Name: "DiscardFramebufferAttachmentˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -6335,8 +6335,8 @@ var schemaDiscardFramebufferAttachmentᵖ = &schema.Class{
TypeID: binaryIDDiscardFramebufferAttachmentᵖ,
Name: "DiscardFramebufferAttachmentᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -6395,8 +6395,8 @@ var schemaEGLConfig = &schema.Class{
TypeID: binaryIDEGLConfig,
Name: "EGLConfig",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -6455,8 +6455,8 @@ var schemaEGLContext = &schema.Class{
TypeID: binaryIDEGLContext,
Name: "EGLContext",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -6515,8 +6515,8 @@ var schemaEGLDisplay = &schema.Class{
TypeID: binaryIDEGLDisplay,
Name: "EGLDisplay",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -6575,8 +6575,8 @@ var schemaEGLSurface = &schema.Class{
TypeID: binaryIDEGLSurface,
Name: "EGLSurface",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -6657,10 +6657,10 @@ var schemaEGLintˢ = &schema.Class{
TypeID: binaryIDEGLintˢ,
Name: "EGLintˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -6719,8 +6719,8 @@ var schemaEGLintᵖ = &schema.Class{
TypeID: binaryIDEGLintᵖ,
Name: "EGLintᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -6811,12 +6811,12 @@ var schemaEglCreateContext = &schema.Class{
TypeID: binaryIDEglCreateContext,
Name: "EglCreateContext",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Display", Type: &schema.Struct{Name: "EGLDisplay"}},
- schema.Field{Declared: "Config", Type: &schema.Struct{Name: "EGLConfig"}},
- schema.Field{Declared: "ShareContext", Type: &schema.Struct{Name: "EGLContext"}},
- schema.Field{Declared: "AttribList", Type: &schema.Struct{Name: "EGLintᵖ"}},
- schema.Field{Declared: "Result", Type: &schema.Struct{Name: "EGLContext"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Display", Type: &schema.Struct{Name: "EGLDisplay"}},
+ {Declared: "Config", Type: &schema.Struct{Name: "EGLConfig"}},
+ {Declared: "ShareContext", Type: &schema.Struct{Name: "EGLContext"}},
+ {Declared: "AttribList", Type: &schema.Struct{Name: "EGLintᵖ"}},
+ {Declared: "Result", Type: &schema.Struct{Name: "EGLContext"}},
},
}
@@ -6900,11 +6900,11 @@ var schemaEglInitialize = &schema.Class{
TypeID: binaryIDEglInitialize,
Name: "EglInitialize",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Dpy", Type: &schema.Struct{Name: "EGLDisplay"}},
- schema.Field{Declared: "Major", Type: &schema.Struct{Name: "EGLintᵖ"}},
- schema.Field{Declared: "Minor", Type: &schema.Struct{Name: "EGLintᵖ"}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "EGLBoolean", Method: schema.Int64}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Dpy", Type: &schema.Struct{Name: "EGLDisplay"}},
+ {Declared: "Major", Type: &schema.Struct{Name: "EGLintᵖ"}},
+ {Declared: "Minor", Type: &schema.Struct{Name: "EGLintᵖ"}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "EGLBoolean", Method: schema.Int64}},
},
}
@@ -6997,12 +6997,12 @@ var schemaEglMakeCurrent = &schema.Class{
TypeID: binaryIDEglMakeCurrent,
Name: "EglMakeCurrent",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Display", Type: &schema.Struct{Name: "EGLDisplay"}},
- schema.Field{Declared: "Draw", Type: &schema.Struct{Name: "EGLSurface"}},
- schema.Field{Declared: "Read", Type: &schema.Struct{Name: "EGLSurface"}},
- schema.Field{Declared: "Context", Type: &schema.Struct{Name: "EGLContext"}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "EGLBoolean", Method: schema.Int64}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Display", Type: &schema.Struct{Name: "EGLDisplay"}},
+ {Declared: "Draw", Type: &schema.Struct{Name: "EGLSurface"}},
+ {Declared: "Read", Type: &schema.Struct{Name: "EGLSurface"}},
+ {Declared: "Context", Type: &schema.Struct{Name: "EGLContext"}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "EGLBoolean", Method: schema.Int64}},
},
}
@@ -7097,12 +7097,12 @@ var schemaEglQuerySurface = &schema.Class{
TypeID: binaryIDEglQuerySurface,
Name: "EglQuerySurface",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Display", Type: &schema.Struct{Name: "EGLDisplay"}},
- schema.Field{Declared: "Surface", Type: &schema.Struct{Name: "EGLSurface"}},
- schema.Field{Declared: "Attribute", Type: &schema.Primitive{Name: "EGLint", Method: schema.Int64}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "EGLintᵖ"}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "EGLBoolean", Method: schema.Int64}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Display", Type: &schema.Struct{Name: "EGLDisplay"}},
+ {Declared: "Surface", Type: &schema.Struct{Name: "EGLSurface"}},
+ {Declared: "Attribute", Type: &schema.Primitive{Name: "EGLint", Method: schema.Int64}},
+ {Declared: "Value", Type: &schema.Struct{Name: "EGLintᵖ"}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "EGLBoolean", Method: schema.Int64}},
},
}
@@ -7161,8 +7161,8 @@ var schemaVoidᵖ = &schema.Class{
TypeID: binaryIDVoidᵖ,
Name: "Voidᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -7237,10 +7237,10 @@ var schemaEglSwapBuffers = &schema.Class{
TypeID: binaryIDEglSwapBuffers,
Name: "EglSwapBuffers",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Display", Type: &schema.Struct{Name: "EGLDisplay"}},
- schema.Field{Declared: "Surface", Type: &schema.Struct{Name: "Voidᵖ"}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "EGLBoolean", Method: schema.Int64}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Display", Type: &schema.Struct{Name: "EGLDisplay"}},
+ {Declared: "Surface", Type: &schema.Struct{Name: "Voidᵖ"}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "EGLBoolean", Method: schema.Int64}},
},
}
@@ -7321,10 +7321,10 @@ var schemaF32ˢ = &schema.Class{
TypeID: binaryIDF32ˢ,
Name: "F32ˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -7383,8 +7383,8 @@ var schemaF32ᵖ = &schema.Class{
TypeID: binaryIDF32ᵖ,
Name: "F32ᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -7430,7 +7430,7 @@ var schemaFlushPostBuffer = &schema.Class{
TypeID: binaryIDFlushPostBuffer,
Name: "FlushPostBuffer",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
},
}
@@ -7515,10 +7515,10 @@ var schemaFramebufferAttachmentˢ = &schema.Class{
TypeID: binaryIDFramebufferAttachmentˢ,
Name: "FramebufferAttachmentˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -7581,8 +7581,8 @@ var schemaFramebufferAttachmentᵖ = &schema.Class{
TypeID: binaryIDFramebufferAttachmentᵖ,
Name: "FramebufferAttachmentᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -7663,10 +7663,10 @@ var schemaFramebufferIdˢ = &schema.Class{
TypeID: binaryIDFramebufferIdˢ,
Name: "FramebufferIdˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -7725,8 +7725,8 @@ var schemaFramebufferIdᵖ = &schema.Class{
TypeID: binaryIDFramebufferIdᵖ,
Name: "FramebufferIdᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -7785,8 +7785,8 @@ var schemaGLXContext = &schema.Class{
TypeID: binaryIDGLXContext,
Name: "GLXContext",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -7845,8 +7845,8 @@ var schemaGLXDrawable = &schema.Class{
TypeID: binaryIDGLXDrawable,
Name: "GLXDrawable",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -7903,8 +7903,8 @@ var schemaGlActiveTexture = &schema.Class{
TypeID: binaryIDGlActiveTexture,
Name: "GlActiveTexture",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Unit", Type: &schema.Primitive{Name: "TextureUnit", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Unit", Type: &schema.Primitive{Name: "TextureUnit", Method: schema.Uint32}},
},
}
@@ -7972,9 +7972,9 @@ var schemaGlAttachShader = &schema.Class{
TypeID: binaryIDGlAttachShader,
Name: "GlAttachShader",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
- schema.Field{Declared: "Shader", Type: &schema.Primitive{Name: "ShaderId", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
+ {Declared: "Shader", Type: &schema.Primitive{Name: "ShaderId", Method: schema.Uint32}},
},
}
@@ -8042,9 +8042,9 @@ var schemaGlBeginQuery = &schema.Class{
TypeID: binaryIDGlBeginQuery,
Name: "GlBeginQuery",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "QueryTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Query", Type: &schema.Primitive{Name: "QueryId", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "QueryTarget", Method: schema.Uint32}},
+ {Declared: "Query", Type: &schema.Primitive{Name: "QueryId", Method: schema.Uint32}},
},
}
@@ -8112,9 +8112,9 @@ var schemaGlBeginQueryEXT = &schema.Class{
TypeID: binaryIDGlBeginQueryEXT,
Name: "GlBeginQueryEXT",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "QueryTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Query", Type: &schema.Primitive{Name: "QueryId", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "QueryTarget", Method: schema.Uint32}},
+ {Declared: "Query", Type: &schema.Primitive{Name: "QueryId", Method: schema.Uint32}},
},
}
@@ -8195,10 +8195,10 @@ var schemaGlBindAttribLocation = &schema.Class{
TypeID: binaryIDGlBindAttribLocation,
Name: "GlBindAttribLocation",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
- schema.Field{Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
+ {Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
},
}
@@ -8266,9 +8266,9 @@ var schemaGlBindBuffer = &schema.Class{
TypeID: binaryIDGlBindBuffer,
Name: "GlBindBuffer",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "BufferTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Buffer", Type: &schema.Primitive{Name: "BufferId", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "BufferTarget", Method: schema.Uint32}},
+ {Declared: "Buffer", Type: &schema.Primitive{Name: "BufferId", Method: schema.Uint32}},
},
}
@@ -8336,9 +8336,9 @@ var schemaGlBindFramebuffer = &schema.Class{
TypeID: binaryIDGlBindFramebuffer,
Name: "GlBindFramebuffer",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "FramebufferTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Framebuffer", Type: &schema.Primitive{Name: "FramebufferId", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "FramebufferTarget", Method: schema.Uint32}},
+ {Declared: "Framebuffer", Type: &schema.Primitive{Name: "FramebufferId", Method: schema.Uint32}},
},
}
@@ -8406,9 +8406,9 @@ var schemaGlBindRenderbuffer = &schema.Class{
TypeID: binaryIDGlBindRenderbuffer,
Name: "GlBindRenderbuffer",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "RenderbufferTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Renderbuffer", Type: &schema.Primitive{Name: "RenderbufferId", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "RenderbufferTarget", Method: schema.Uint32}},
+ {Declared: "Renderbuffer", Type: &schema.Primitive{Name: "RenderbufferId", Method: schema.Uint32}},
},
}
@@ -8476,9 +8476,9 @@ var schemaGlBindTexture = &schema.Class{
TypeID: binaryIDGlBindTexture,
Name: "GlBindTexture",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "TextureTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Texture", Type: &schema.Primitive{Name: "TextureId", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "TextureTarget", Method: schema.Uint32}},
+ {Declared: "Texture", Type: &schema.Primitive{Name: "TextureId", Method: schema.Uint32}},
},
}
@@ -8537,8 +8537,8 @@ var schemaGlBindVertexArrayOES = &schema.Class{
TypeID: binaryIDGlBindVertexArrayOES,
Name: "GlBindVertexArrayOES",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Array", Type: &schema.Primitive{Name: "VertexArrayId", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Array", Type: &schema.Primitive{Name: "VertexArrayId", Method: schema.Uint32}},
},
}
@@ -8628,11 +8628,11 @@ var schemaGlBlendColor = &schema.Class{
TypeID: binaryIDGlBlendColor,
Name: "GlBlendColor",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Red", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Green", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Blue", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Alpha", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Red", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Green", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Blue", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Alpha", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
},
}
@@ -8689,8 +8689,8 @@ var schemaGlBlendEquation = &schema.Class{
TypeID: binaryIDGlBlendEquation,
Name: "GlBlendEquation",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Equation", Type: &schema.Primitive{Name: "BlendEquation", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Equation", Type: &schema.Primitive{Name: "BlendEquation", Method: schema.Uint32}},
},
}
@@ -8762,9 +8762,9 @@ var schemaGlBlendEquationSeparate = &schema.Class{
TypeID: binaryIDGlBlendEquationSeparate,
Name: "GlBlendEquationSeparate",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Rgb", Type: &schema.Primitive{Name: "BlendEquation", Method: schema.Uint32}},
- schema.Field{Declared: "Alpha", Type: &schema.Primitive{Name: "BlendEquation", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Rgb", Type: &schema.Primitive{Name: "BlendEquation", Method: schema.Uint32}},
+ {Declared: "Alpha", Type: &schema.Primitive{Name: "BlendEquation", Method: schema.Uint32}},
},
}
@@ -8832,9 +8832,9 @@ var schemaGlBlendFunc = &schema.Class{
TypeID: binaryIDGlBlendFunc,
Name: "GlBlendFunc",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "SrcFactor", Type: &schema.Primitive{Name: "BlendFactor", Method: schema.Uint32}},
- schema.Field{Declared: "DstFactor", Type: &schema.Primitive{Name: "BlendFactor", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "SrcFactor", Type: &schema.Primitive{Name: "BlendFactor", Method: schema.Uint32}},
+ {Declared: "DstFactor", Type: &schema.Primitive{Name: "BlendFactor", Method: schema.Uint32}},
},
}
@@ -8926,11 +8926,11 @@ var schemaGlBlendFuncSeparate = &schema.Class{
TypeID: binaryIDGlBlendFuncSeparate,
Name: "GlBlendFuncSeparate",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "SrcFactorRgb", Type: &schema.Primitive{Name: "BlendFactor", Method: schema.Uint32}},
- schema.Field{Declared: "DstFactorRgb", Type: &schema.Primitive{Name: "BlendFactor", Method: schema.Uint32}},
- schema.Field{Declared: "SrcFactorAlpha", Type: &schema.Primitive{Name: "BlendFactor", Method: schema.Uint32}},
- schema.Field{Declared: "DstFactorAlpha", Type: &schema.Primitive{Name: "BlendFactor", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "SrcFactorRgb", Type: &schema.Primitive{Name: "BlendFactor", Method: schema.Uint32}},
+ {Declared: "DstFactorRgb", Type: &schema.Primitive{Name: "BlendFactor", Method: schema.Uint32}},
+ {Declared: "SrcFactorAlpha", Type: &schema.Primitive{Name: "BlendFactor", Method: schema.Uint32}},
+ {Declared: "DstFactorAlpha", Type: &schema.Primitive{Name: "BlendFactor", Method: schema.Uint32}},
},
}
@@ -9086,17 +9086,17 @@ var schemaGlBlitFramebuffer = &schema.Class{
TypeID: binaryIDGlBlitFramebuffer,
Name: "GlBlitFramebuffer",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "SrcX0", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "SrcY0", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "SrcX1", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "SrcY1", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "DstX0", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "DstY0", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "DstX1", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "DstY1", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Mask", Type: &schema.Primitive{Name: "ClearMask", Method: schema.Uint32}},
- schema.Field{Declared: "Filter", Type: &schema.Primitive{Name: "TextureFilterMode", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "SrcX0", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "SrcY0", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "SrcX1", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "SrcY1", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "DstX0", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "DstY0", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "DstX1", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "DstY1", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Mask", Type: &schema.Primitive{Name: "ClearMask", Method: schema.Uint32}},
+ {Declared: "Filter", Type: &schema.Primitive{Name: "TextureFilterMode", Method: schema.Uint32}},
},
}
@@ -9184,11 +9184,11 @@ var schemaGlBufferData = &schema.Class{
TypeID: binaryIDGlBufferData,
Name: "GlBufferData",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "BufferTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Size", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Data", Type: &schema.Struct{Name: "BufferDataPointer"}},
- schema.Field{Declared: "Usage", Type: &schema.Primitive{Name: "BufferUsage", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "BufferTarget", Method: schema.Uint32}},
+ {Declared: "Size", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Data", Type: &schema.Struct{Name: "BufferDataPointer"}},
+ {Declared: "Usage", Type: &schema.Primitive{Name: "BufferUsage", Method: schema.Uint32}},
},
}
@@ -9276,11 +9276,11 @@ var schemaGlBufferSubData = &schema.Class{
TypeID: binaryIDGlBufferSubData,
Name: "GlBufferSubData",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "BufferTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Offset", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Size", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Data", Type: &schema.Struct{Name: "Voidᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "BufferTarget", Method: schema.Uint32}},
+ {Declared: "Offset", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Size", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Data", Type: &schema.Struct{Name: "Voidᵖ"}},
},
}
@@ -9352,9 +9352,9 @@ var schemaGlCheckFramebufferStatus = &schema.Class{
TypeID: binaryIDGlCheckFramebufferStatus,
Name: "GlCheckFramebufferStatus",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "FramebufferTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "FramebufferStatus", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "FramebufferTarget", Method: schema.Uint32}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "FramebufferStatus", Method: schema.Uint32}},
},
}
@@ -9411,8 +9411,8 @@ var schemaGlClear = &schema.Class{
TypeID: binaryIDGlClear,
Name: "GlClear",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Mask", Type: &schema.Primitive{Name: "ClearMask", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Mask", Type: &schema.Primitive{Name: "ClearMask", Method: schema.Uint32}},
},
}
@@ -9502,11 +9502,11 @@ var schemaGlClearColor = &schema.Class{
TypeID: binaryIDGlClearColor,
Name: "GlClearColor",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "R", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "G", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "B", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "A", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "R", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "G", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "B", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "A", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
},
}
@@ -9563,8 +9563,8 @@ var schemaGlClearDepthf = &schema.Class{
TypeID: binaryIDGlClearDepthf,
Name: "GlClearDepthf",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Depth", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Depth", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
},
}
@@ -9621,8 +9621,8 @@ var schemaGlClearStencil = &schema.Class{
TypeID: binaryIDGlClearStencil,
Name: "GlClearStencil",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Stencil", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Stencil", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -9712,11 +9712,11 @@ var schemaGlColorMask = &schema.Class{
TypeID: binaryIDGlColorMask,
Name: "GlColorMask",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Red", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
- schema.Field{Declared: "Green", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
- schema.Field{Declared: "Blue", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
- schema.Field{Declared: "Alpha", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Red", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "Green", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "Blue", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "Alpha", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
},
}
@@ -9773,8 +9773,8 @@ var schemaGlCompileShader = &schema.Class{
TypeID: binaryIDGlCompileShader,
Name: "GlCompileShader",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Shader", Type: &schema.Primitive{Name: "ShaderId", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Shader", Type: &schema.Primitive{Name: "ShaderId", Method: schema.Uint32}},
},
}
@@ -9833,8 +9833,8 @@ var schemaTexturePointer = &schema.Class{
TypeID: binaryIDTexturePointer,
Name: "TexturePointer",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -9968,15 +9968,15 @@ var schemaGlCompressedTexImage2D = &schema.Class{
TypeID: binaryIDGlCompressedTexImage2D,
Name: "GlCompressedTexImage2D",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "TextureImageTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Level", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Format", Type: &schema.Primitive{Name: "CompressedTexelFormat", Method: schema.Uint32}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Border", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "ImageSize", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Data", Type: &schema.Struct{Name: "TexturePointer"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "TextureImageTarget", Method: schema.Uint32}},
+ {Declared: "Level", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Format", Type: &schema.Primitive{Name: "CompressedTexelFormat", Method: schema.Uint32}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Border", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "ImageSize", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Data", Type: &schema.Struct{Name: "TexturePointer"}},
},
}
@@ -10123,16 +10123,16 @@ var schemaGlCompressedTexSubImage2D = &schema.Class{
TypeID: binaryIDGlCompressedTexSubImage2D,
Name: "GlCompressedTexSubImage2D",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "TextureImageTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Level", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Xoffset", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Yoffset", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Format", Type: &schema.Primitive{Name: "CompressedTexelFormat", Method: schema.Uint32}},
- schema.Field{Declared: "ImageSize", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Data", Type: &schema.Struct{Name: "TexturePointer"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "TextureImageTarget", Method: schema.Uint32}},
+ {Declared: "Level", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Xoffset", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Yoffset", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Format", Type: &schema.Primitive{Name: "CompressedTexelFormat", Method: schema.Uint32}},
+ {Declared: "ImageSize", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Data", Type: &schema.Struct{Name: "TexturePointer"}},
},
}
@@ -10266,15 +10266,15 @@ var schemaGlCopyTexImage2D = &schema.Class{
TypeID: binaryIDGlCopyTexImage2D,
Name: "GlCopyTexImage2D",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "TextureImageTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Level", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Format", Type: &schema.Primitive{Name: "TexelFormat", Method: schema.Uint32}},
- schema.Field{Declared: "X", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Y", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Border", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "TextureImageTarget", Method: schema.Uint32}},
+ {Declared: "Level", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Format", Type: &schema.Primitive{Name: "TexelFormat", Method: schema.Uint32}},
+ {Declared: "X", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Y", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Border", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -10410,15 +10410,15 @@ var schemaGlCopyTexSubImage2D = &schema.Class{
TypeID: binaryIDGlCopyTexSubImage2D,
Name: "GlCopyTexSubImage2D",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "TextureImageTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Level", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Xoffset", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Yoffset", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "X", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Y", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "TextureImageTarget", Method: schema.Uint32}},
+ {Declared: "Level", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Xoffset", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Yoffset", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "X", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Y", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -10475,8 +10475,8 @@ var schemaGlCreateProgram = &schema.Class{
TypeID: binaryIDGlCreateProgram,
Name: "GlCreateProgram",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
},
}
@@ -10544,9 +10544,9 @@ var schemaGlCreateShader = &schema.Class{
TypeID: binaryIDGlCreateShader,
Name: "GlCreateShader",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Type", Type: &schema.Primitive{Name: "ShaderType", Method: schema.Uint32}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "ShaderId", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Type", Type: &schema.Primitive{Name: "ShaderType", Method: schema.Uint32}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "ShaderId", Method: schema.Uint32}},
},
}
@@ -10603,8 +10603,8 @@ var schemaGlCullFace = &schema.Class{
TypeID: binaryIDGlCullFace,
Name: "GlCullFace",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Mode", Type: &schema.Primitive{Name: "FaceMode", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Mode", Type: &schema.Primitive{Name: "FaceMode", Method: schema.Uint32}},
},
}
@@ -10670,9 +10670,9 @@ var schemaGlDeleteBuffers = &schema.Class{
TypeID: binaryIDGlDeleteBuffers,
Name: "GlDeleteBuffers",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Buffers", Type: &schema.Struct{Name: "BufferIdᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Buffers", Type: &schema.Struct{Name: "BufferIdᵖ"}},
},
}
@@ -10740,9 +10740,9 @@ var schemaGlDeleteFramebuffers = &schema.Class{
TypeID: binaryIDGlDeleteFramebuffers,
Name: "GlDeleteFramebuffers",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Framebuffers", Type: &schema.Struct{Name: "FramebufferIdᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Framebuffers", Type: &schema.Struct{Name: "FramebufferIdᵖ"}},
},
}
@@ -10799,8 +10799,8 @@ var schemaGlDeleteProgram = &schema.Class{
TypeID: binaryIDGlDeleteProgram,
Name: "GlDeleteProgram",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
},
}
@@ -10859,8 +10859,8 @@ var schemaQueryIdᵖ = &schema.Class{
TypeID: binaryIDQueryIdᵖ,
Name: "QueryIdᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -10926,9 +10926,9 @@ var schemaGlDeleteQueries = &schema.Class{
TypeID: binaryIDGlDeleteQueries,
Name: "GlDeleteQueries",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Queries", Type: &schema.Struct{Name: "QueryIdᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Queries", Type: &schema.Struct{Name: "QueryIdᵖ"}},
},
}
@@ -10994,9 +10994,9 @@ var schemaGlDeleteQueriesEXT = &schema.Class{
TypeID: binaryIDGlDeleteQueriesEXT,
Name: "GlDeleteQueriesEXT",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Queries", Type: &schema.Struct{Name: "QueryIdᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Queries", Type: &schema.Struct{Name: "QueryIdᵖ"}},
},
}
@@ -11055,8 +11055,8 @@ var schemaRenderbufferIdᵖ = &schema.Class{
TypeID: binaryIDRenderbufferIdᵖ,
Name: "RenderbufferIdᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -11124,9 +11124,9 @@ var schemaGlDeleteRenderbuffers = &schema.Class{
TypeID: binaryIDGlDeleteRenderbuffers,
Name: "GlDeleteRenderbuffers",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Renderbuffers", Type: &schema.Struct{Name: "RenderbufferIdᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Renderbuffers", Type: &schema.Struct{Name: "RenderbufferIdᵖ"}},
},
}
@@ -11183,8 +11183,8 @@ var schemaGlDeleteShader = &schema.Class{
TypeID: binaryIDGlDeleteShader,
Name: "GlDeleteShader",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Shader", Type: &schema.Primitive{Name: "ShaderId", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Shader", Type: &schema.Primitive{Name: "ShaderId", Method: schema.Uint32}},
},
}
@@ -11243,8 +11243,8 @@ var schemaTextureIdᵖ = &schema.Class{
TypeID: binaryIDTextureIdᵖ,
Name: "TextureIdᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -11310,9 +11310,9 @@ var schemaGlDeleteTextures = &schema.Class{
TypeID: binaryIDGlDeleteTextures,
Name: "GlDeleteTextures",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Textures", Type: &schema.Struct{Name: "TextureIdᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Textures", Type: &schema.Struct{Name: "TextureIdᵖ"}},
},
}
@@ -11371,8 +11371,8 @@ var schemaVertexArrayIdᵖ = &schema.Class{
TypeID: binaryIDVertexArrayIdᵖ,
Name: "VertexArrayIdᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -11442,9 +11442,9 @@ var schemaGlDeleteVertexArraysOES = &schema.Class{
TypeID: binaryIDGlDeleteVertexArraysOES,
Name: "GlDeleteVertexArraysOES",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Arrays", Type: &schema.Struct{Name: "VertexArrayIdᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Arrays", Type: &schema.Struct{Name: "VertexArrayIdᵖ"}},
},
}
@@ -11501,8 +11501,8 @@ var schemaGlDepthFunc = &schema.Class{
TypeID: binaryIDGlDepthFunc,
Name: "GlDepthFunc",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Function", Type: &schema.Primitive{Name: "TestFunction", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Function", Type: &schema.Primitive{Name: "TestFunction", Method: schema.Uint32}},
},
}
@@ -11559,8 +11559,8 @@ var schemaGlDepthMask = &schema.Class{
TypeID: binaryIDGlDepthMask,
Name: "GlDepthMask",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Enabled", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Enabled", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
},
}
@@ -11628,9 +11628,9 @@ var schemaGlDepthRangef = &schema.Class{
TypeID: binaryIDGlDepthRangef,
Name: "GlDepthRangef",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Near", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Far", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Near", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Far", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
},
}
@@ -11698,9 +11698,9 @@ var schemaGlDetachShader = &schema.Class{
TypeID: binaryIDGlDetachShader,
Name: "GlDetachShader",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
- schema.Field{Declared: "Shader", Type: &schema.Primitive{Name: "ShaderId", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
+ {Declared: "Shader", Type: &schema.Primitive{Name: "ShaderId", Method: schema.Uint32}},
},
}
@@ -11757,8 +11757,8 @@ var schemaGlDisable = &schema.Class{
TypeID: binaryIDGlDisable,
Name: "GlDisable",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Capability", Type: &schema.Primitive{Name: "Capability", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Capability", Type: &schema.Primitive{Name: "Capability", Method: schema.Uint32}},
},
}
@@ -11817,8 +11817,8 @@ var schemaGlDisableClientState = &schema.Class{
TypeID: binaryIDGlDisableClientState,
Name: "GlDisableClientState",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Type", Type: &schema.Primitive{Name: "ArrayType", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Type", Type: &schema.Primitive{Name: "ArrayType", Method: schema.Uint32}},
},
}
@@ -11883,8 +11883,8 @@ var schemaGlDisableVertexAttribArray = &schema.Class{
TypeID: binaryIDGlDisableVertexAttribArray,
Name: "GlDisableVertexAttribArray",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
},
}
@@ -11965,10 +11965,10 @@ var schemaGlDiscardFramebufferEXT = &schema.Class{
TypeID: binaryIDGlDiscardFramebufferEXT,
Name: "GlDiscardFramebufferEXT",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "FramebufferTarget", Method: schema.Uint32}},
- schema.Field{Declared: "NumAttachments", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Attachments", Type: &schema.Struct{Name: "DiscardFramebufferAttachmentᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "FramebufferTarget", Method: schema.Uint32}},
+ {Declared: "NumAttachments", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Attachments", Type: &schema.Struct{Name: "DiscardFramebufferAttachmentᵖ"}},
},
}
@@ -12047,10 +12047,10 @@ var schemaGlDrawArrays = &schema.Class{
TypeID: binaryIDGlDrawArrays,
Name: "GlDrawArrays",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "DrawMode", Type: &schema.Primitive{Name: "DrawMode", Method: schema.Uint32}},
- schema.Field{Declared: "FirstIndex", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "IndexCount", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "DrawMode", Type: &schema.Primitive{Name: "DrawMode", Method: schema.Uint32}},
+ {Declared: "FirstIndex", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "IndexCount", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -12109,8 +12109,8 @@ var schemaIndicesPointer = &schema.Class{
TypeID: binaryIDIndicesPointer,
Name: "IndicesPointer",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -12198,11 +12198,11 @@ var schemaGlDrawElements = &schema.Class{
TypeID: binaryIDGlDrawElements,
Name: "GlDrawElements",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "DrawMode", Type: &schema.Primitive{Name: "DrawMode", Method: schema.Uint32}},
- schema.Field{Declared: "ElementCount", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "IndicesType", Type: &schema.Primitive{Name: "IndicesType", Method: schema.Uint32}},
- schema.Field{Declared: "Indices", Type: &schema.Struct{Name: "IndicesPointer"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "DrawMode", Type: &schema.Primitive{Name: "DrawMode", Method: schema.Uint32}},
+ {Declared: "ElementCount", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "IndicesType", Type: &schema.Primitive{Name: "IndicesType", Method: schema.Uint32}},
+ {Declared: "Indices", Type: &schema.Struct{Name: "IndicesPointer"}},
},
}
@@ -12276,9 +12276,9 @@ var schemaGlEGLImageTargetRenderbufferStorageOES = &schema.Class{
TypeID: binaryIDGlEGLImageTargetRenderbufferStorageOES,
Name: "GlEGLImageTargetRenderbufferStorageOES",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "ImageTargetRenderbufferStorage", Method: schema.Uint32}},
- schema.Field{Declared: "Image", Type: &schema.Struct{Name: "TexturePointer"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "ImageTargetRenderbufferStorage", Method: schema.Uint32}},
+ {Declared: "Image", Type: &schema.Struct{Name: "TexturePointer"}},
},
}
@@ -12337,8 +12337,8 @@ var schemaImageOES = &schema.Class{
TypeID: binaryIDImageOES,
Name: "ImageOES",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -12412,9 +12412,9 @@ var schemaGlEGLImageTargetTexture2DOES = &schema.Class{
TypeID: binaryIDGlEGLImageTargetTexture2DOES,
Name: "GlEGLImageTargetTexture2DOES",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "ImageTargetTexture", Method: schema.Uint32}},
- schema.Field{Declared: "Image", Type: &schema.Struct{Name: "ImageOES"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "ImageTargetTexture", Method: schema.Uint32}},
+ {Declared: "Image", Type: &schema.Struct{Name: "ImageOES"}},
},
}
@@ -12471,8 +12471,8 @@ var schemaGlEnable = &schema.Class{
TypeID: binaryIDGlEnable,
Name: "GlEnable",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Capability", Type: &schema.Primitive{Name: "Capability", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Capability", Type: &schema.Primitive{Name: "Capability", Method: schema.Uint32}},
},
}
@@ -12531,8 +12531,8 @@ var schemaGlEnableClientState = &schema.Class{
TypeID: binaryIDGlEnableClientState,
Name: "GlEnableClientState",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Type", Type: &schema.Primitive{Name: "ArrayType", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Type", Type: &schema.Primitive{Name: "ArrayType", Method: schema.Uint32}},
},
}
@@ -12593,8 +12593,8 @@ var schemaGlEnableVertexAttribArray = &schema.Class{
TypeID: binaryIDGlEnableVertexAttribArray,
Name: "GlEnableVertexAttribArray",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
},
}
@@ -12651,8 +12651,8 @@ var schemaGlEndQuery = &schema.Class{
TypeID: binaryIDGlEndQuery,
Name: "GlEndQuery",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "QueryTarget", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "QueryTarget", Method: schema.Uint32}},
},
}
@@ -12709,8 +12709,8 @@ var schemaGlEndQueryEXT = &schema.Class{
TypeID: binaryIDGlEndQueryEXT,
Name: "GlEndQueryEXT",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "QueryTarget", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "QueryTarget", Method: schema.Uint32}},
},
}
@@ -12767,8 +12767,8 @@ var schemaGlEndTilingQCOM = &schema.Class{
TypeID: binaryIDGlEndTilingQCOM,
Name: "GlEndTilingQCOM",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "PreserveMask", Type: &schema.Primitive{Name: "TilePreserveMaskQCOM", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "PreserveMask", Type: &schema.Primitive{Name: "TilePreserveMaskQCOM", Method: schema.Uint32}},
},
}
@@ -12814,7 +12814,7 @@ var schemaGlFinish = &schema.Class{
TypeID: binaryIDGlFinish,
Name: "GlFinish",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
},
}
@@ -12860,7 +12860,7 @@ var schemaGlFlush = &schema.Class{
TypeID: binaryIDGlFlush,
Name: "GlFlush",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
},
}
@@ -12954,11 +12954,11 @@ var schemaGlFramebufferRenderbuffer = &schema.Class{
TypeID: binaryIDGlFramebufferRenderbuffer,
Name: "GlFramebufferRenderbuffer",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "FramebufferTarget", Type: &schema.Primitive{Name: "FramebufferTarget", Method: schema.Uint32}},
- schema.Field{Declared: "FramebufferAttachment", Type: &schema.Primitive{Name: "FramebufferAttachment", Method: schema.Uint32}},
- schema.Field{Declared: "RenderbufferTarget", Type: &schema.Primitive{Name: "RenderbufferTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Renderbuffer", Type: &schema.Primitive{Name: "RenderbufferId", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "FramebufferTarget", Type: &schema.Primitive{Name: "FramebufferTarget", Method: schema.Uint32}},
+ {Declared: "FramebufferAttachment", Type: &schema.Primitive{Name: "FramebufferAttachment", Method: schema.Uint32}},
+ {Declared: "RenderbufferTarget", Type: &schema.Primitive{Name: "RenderbufferTarget", Method: schema.Uint32}},
+ {Declared: "Renderbuffer", Type: &schema.Primitive{Name: "RenderbufferId", Method: schema.Uint32}},
},
}
@@ -13061,12 +13061,12 @@ var schemaGlFramebufferTexture2D = &schema.Class{
TypeID: binaryIDGlFramebufferTexture2D,
Name: "GlFramebufferTexture2D",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "FramebufferTarget", Type: &schema.Primitive{Name: "FramebufferTarget", Method: schema.Uint32}},
- schema.Field{Declared: "FramebufferAttachment", Type: &schema.Primitive{Name: "FramebufferAttachment", Method: schema.Uint32}},
- schema.Field{Declared: "TextureTarget", Type: &schema.Primitive{Name: "TextureImageTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Texture", Type: &schema.Primitive{Name: "TextureId", Method: schema.Uint32}},
- schema.Field{Declared: "Level", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "FramebufferTarget", Type: &schema.Primitive{Name: "FramebufferTarget", Method: schema.Uint32}},
+ {Declared: "FramebufferAttachment", Type: &schema.Primitive{Name: "FramebufferAttachment", Method: schema.Uint32}},
+ {Declared: "TextureTarget", Type: &schema.Primitive{Name: "TextureImageTarget", Method: schema.Uint32}},
+ {Declared: "Texture", Type: &schema.Primitive{Name: "TextureId", Method: schema.Uint32}},
+ {Declared: "Level", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -13123,8 +13123,8 @@ var schemaGlFrontFace = &schema.Class{
TypeID: binaryIDGlFrontFace,
Name: "GlFrontFace",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Orientation", Type: &schema.Primitive{Name: "FaceOrientation", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Orientation", Type: &schema.Primitive{Name: "FaceOrientation", Method: schema.Uint32}},
},
}
@@ -13190,9 +13190,9 @@ var schemaGlGenBuffers = &schema.Class{
TypeID: binaryIDGlGenBuffers,
Name: "GlGenBuffers",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Buffers", Type: &schema.Struct{Name: "BufferIdᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Buffers", Type: &schema.Struct{Name: "BufferIdᵖ"}},
},
}
@@ -13258,9 +13258,9 @@ var schemaGlGenFramebuffers = &schema.Class{
TypeID: binaryIDGlGenFramebuffers,
Name: "GlGenFramebuffers",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Framebuffers", Type: &schema.Struct{Name: "FramebufferIdᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Framebuffers", Type: &schema.Struct{Name: "FramebufferIdᵖ"}},
},
}
@@ -13326,9 +13326,9 @@ var schemaGlGenQueries = &schema.Class{
TypeID: binaryIDGlGenQueries,
Name: "GlGenQueries",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Queries", Type: &schema.Struct{Name: "QueryIdᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Queries", Type: &schema.Struct{Name: "QueryIdᵖ"}},
},
}
@@ -13394,9 +13394,9 @@ var schemaGlGenQueriesEXT = &schema.Class{
TypeID: binaryIDGlGenQueriesEXT,
Name: "GlGenQueriesEXT",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Queries", Type: &schema.Struct{Name: "QueryIdᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Queries", Type: &schema.Struct{Name: "QueryIdᵖ"}},
},
}
@@ -13462,9 +13462,9 @@ var schemaGlGenRenderbuffers = &schema.Class{
TypeID: binaryIDGlGenRenderbuffers,
Name: "GlGenRenderbuffers",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Renderbuffers", Type: &schema.Struct{Name: "RenderbufferIdᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Renderbuffers", Type: &schema.Struct{Name: "RenderbufferIdᵖ"}},
},
}
@@ -13530,9 +13530,9 @@ var schemaGlGenTextures = &schema.Class{
TypeID: binaryIDGlGenTextures,
Name: "GlGenTextures",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Textures", Type: &schema.Struct{Name: "TextureIdᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Textures", Type: &schema.Struct{Name: "TextureIdᵖ"}},
},
}
@@ -13600,9 +13600,9 @@ var schemaGlGenVertexArraysOES = &schema.Class{
TypeID: binaryIDGlGenVertexArraysOES,
Name: "GlGenVertexArraysOES",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Arrays", Type: &schema.Struct{Name: "VertexArrayIdᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Arrays", Type: &schema.Struct{Name: "VertexArrayIdᵖ"}},
},
}
@@ -13659,8 +13659,8 @@ var schemaGlGenerateMipmap = &schema.Class{
TypeID: binaryIDGlGenerateMipmap,
Name: "GlGenerateMipmap",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "TextureImageTarget", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "TextureImageTarget", Method: schema.Uint32}},
},
}
@@ -13719,8 +13719,8 @@ var schemaS32ᵖ = &schema.Class{
TypeID: binaryIDS32ᵖ,
Name: "S32ᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -13781,8 +13781,8 @@ var schemaShaderAttribTypeᵖ = &schema.Class{
TypeID: binaryIDShaderAttribTypeᵖ,
Name: "ShaderAttribTypeᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -13897,14 +13897,14 @@ var schemaGlGetActiveAttrib = &schema.Class{
TypeID: binaryIDGlGetActiveAttrib,
Name: "GlGetActiveAttrib",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
- schema.Field{Declared: "BufferSize", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "BufferBytesWritten", Type: &schema.Struct{Name: "S32ᵖ"}},
- schema.Field{Declared: "VectorCount", Type: &schema.Struct{Name: "S32ᵖ"}},
- schema.Field{Declared: "Type", Type: &schema.Struct{Name: "ShaderAttribTypeᵖ"}},
- schema.Field{Declared: "Name", Type: &schema.Struct{Name: "Charᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
+ {Declared: "BufferSize", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "BufferBytesWritten", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "VectorCount", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "Type", Type: &schema.Struct{Name: "ShaderAttribTypeᵖ"}},
+ {Declared: "Name", Type: &schema.Struct{Name: "Charᵖ"}},
},
}
@@ -13965,8 +13965,8 @@ var schemaShaderUniformTypeᵖ = &schema.Class{
TypeID: binaryIDShaderUniformTypeᵖ,
Name: "ShaderUniformTypeᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -14081,14 +14081,14 @@ var schemaGlGetActiveUniform = &schema.Class{
TypeID: binaryIDGlGetActiveUniform,
Name: "GlGetActiveUniform",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "BufferSize", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "BufferBytesWritten", Type: &schema.Struct{Name: "S32ᵖ"}},
- schema.Field{Declared: "VectorCount", Type: &schema.Struct{Name: "S32ᵖ"}},
- schema.Field{Declared: "Type", Type: &schema.Struct{Name: "ShaderUniformTypeᵖ"}},
- schema.Field{Declared: "Name", Type: &schema.Struct{Name: "Charᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "BufferSize", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "BufferBytesWritten", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "VectorCount", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "Type", Type: &schema.Struct{Name: "ShaderUniformTypeᵖ"}},
+ {Declared: "Name", Type: &schema.Struct{Name: "Charᵖ"}},
},
}
@@ -14147,8 +14147,8 @@ var schemaShaderIdᵖ = &schema.Class{
TypeID: binaryIDShaderIdᵖ,
Name: "ShaderIdᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -14236,11 +14236,11 @@ var schemaGlGetAttachedShaders = &schema.Class{
TypeID: binaryIDGlGetAttachedShaders,
Name: "GlGetAttachedShaders",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
- schema.Field{Declared: "BufferLength", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "ShadersLengthWritten", Type: &schema.Struct{Name: "S32ᵖ"}},
- schema.Field{Declared: "Shaders", Type: &schema.Struct{Name: "ShaderIdᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
+ {Declared: "BufferLength", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "ShadersLengthWritten", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "Shaders", Type: &schema.Struct{Name: "ShaderIdᵖ"}},
},
}
@@ -14321,10 +14321,10 @@ var schemaGlGetAttribLocation = &schema.Class{
TypeID: binaryIDGlGetAttribLocation,
Name: "GlGetAttribLocation",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
- schema.Field{Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
+ {Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
},
}
@@ -14390,9 +14390,9 @@ var schemaGlGetBooleanv = &schema.Class{
TypeID: binaryIDGlGetBooleanv,
Name: "GlGetBooleanv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Param", Type: &schema.Primitive{Name: "StateVariable", Method: schema.Uint32}},
- schema.Field{Declared: "Values", Type: &schema.Struct{Name: "Boolᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Param", Type: &schema.Primitive{Name: "StateVariable", Method: schema.Uint32}},
+ {Declared: "Values", Type: &schema.Struct{Name: "Boolᵖ"}},
},
}
@@ -14471,10 +14471,10 @@ var schemaGlGetBufferParameteriv = &schema.Class{
TypeID: binaryIDGlGetBufferParameteriv,
Name: "GlGetBufferParameteriv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "BufferTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Parameter", Type: &schema.Primitive{Name: "BufferParameter", Method: schema.Uint32}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "BufferTarget", Method: schema.Uint32}},
+ {Declared: "Parameter", Type: &schema.Primitive{Name: "BufferParameter", Method: schema.Uint32}},
+ {Declared: "Value", Type: &schema.Struct{Name: "S32ᵖ"}},
},
}
@@ -14531,8 +14531,8 @@ var schemaGlGetError = &schema.Class{
TypeID: binaryIDGlGetError,
Name: "GlGetError",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "Error", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "Error", Method: schema.Uint32}},
},
}
@@ -14598,9 +14598,9 @@ var schemaGlGetFloatv = &schema.Class{
TypeID: binaryIDGlGetFloatv,
Name: "GlGetFloatv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Param", Type: &schema.Primitive{Name: "StateVariable", Method: schema.Uint32}},
- schema.Field{Declared: "Values", Type: &schema.Struct{Name: "F32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Param", Type: &schema.Primitive{Name: "StateVariable", Method: schema.Uint32}},
+ {Declared: "Values", Type: &schema.Struct{Name: "F32ᵖ"}},
},
}
@@ -14696,11 +14696,11 @@ var schemaGlGetFramebufferAttachmentParameteriv = &schema.Class{
TypeID: binaryIDGlGetFramebufferAttachmentParameteriv,
Name: "GlGetFramebufferAttachmentParameteriv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "FramebufferTarget", Type: &schema.Primitive{Name: "FramebufferTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Attachment", Type: &schema.Primitive{Name: "FramebufferAttachment", Method: schema.Uint32}},
- schema.Field{Declared: "Parameter", Type: &schema.Primitive{Name: "FramebufferAttachmentParameter", Method: schema.Uint32}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "FramebufferTarget", Type: &schema.Primitive{Name: "FramebufferTarget", Method: schema.Uint32}},
+ {Declared: "Attachment", Type: &schema.Primitive{Name: "FramebufferAttachment", Method: schema.Uint32}},
+ {Declared: "Parameter", Type: &schema.Primitive{Name: "FramebufferAttachmentParameter", Method: schema.Uint32}},
+ {Declared: "Value", Type: &schema.Struct{Name: "S32ᵖ"}},
},
}
@@ -14765,8 +14765,8 @@ var schemaGlGetGraphicsResetStatusEXT = &schema.Class{
TypeID: binaryIDGlGetGraphicsResetStatusEXT,
Name: "GlGetGraphicsResetStatusEXT",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "ResetStatus", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "ResetStatus", Method: schema.Uint32}},
},
}
@@ -14832,9 +14832,9 @@ var schemaGlGetIntegerv = &schema.Class{
TypeID: binaryIDGlGetIntegerv,
Name: "GlGetIntegerv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Param", Type: &schema.Primitive{Name: "StateVariable", Method: schema.Uint32}},
- schema.Field{Declared: "Values", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Param", Type: &schema.Primitive{Name: "StateVariable", Method: schema.Uint32}},
+ {Declared: "Values", Type: &schema.Struct{Name: "S32ᵖ"}},
},
}
@@ -14893,8 +14893,8 @@ var schemaU32ᵖ = &schema.Class{
TypeID: binaryIDU32ᵖ,
Name: "U32ᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -14991,12 +14991,12 @@ var schemaGlGetProgramBinaryOES = &schema.Class{
TypeID: binaryIDGlGetProgramBinaryOES,
Name: "GlGetProgramBinaryOES",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
- schema.Field{Declared: "BufferSize", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "BytesWritten", Type: &schema.Struct{Name: "S32ᵖ"}},
- schema.Field{Declared: "BinaryFormat", Type: &schema.Struct{Name: "U32ᵖ"}},
- schema.Field{Declared: "Binary", Type: &schema.Struct{Name: "Voidᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
+ {Declared: "BufferSize", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "BytesWritten", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "BinaryFormat", Type: &schema.Struct{Name: "U32ᵖ"}},
+ {Declared: "Binary", Type: &schema.Struct{Name: "Voidᵖ"}},
},
}
@@ -15084,11 +15084,11 @@ var schemaGlGetProgramInfoLog = &schema.Class{
TypeID: binaryIDGlGetProgramInfoLog,
Name: "GlGetProgramInfoLog",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
- schema.Field{Declared: "BufferLength", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "StringLengthWritten", Type: &schema.Struct{Name: "S32ᵖ"}},
- schema.Field{Declared: "Info", Type: &schema.Struct{Name: "Charᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
+ {Declared: "BufferLength", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "StringLengthWritten", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "Info", Type: &schema.Struct{Name: "Charᵖ"}},
},
}
@@ -15165,10 +15165,10 @@ var schemaGlGetProgramiv = &schema.Class{
TypeID: binaryIDGlGetProgramiv,
Name: "GlGetProgramiv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
- schema.Field{Declared: "Parameter", Type: &schema.Primitive{Name: "ProgramParameter", Method: schema.Uint32}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
+ {Declared: "Parameter", Type: &schema.Primitive{Name: "ProgramParameter", Method: schema.Uint32}},
+ {Declared: "Value", Type: &schema.Struct{Name: "S32ᵖ"}},
},
}
@@ -15227,8 +15227,8 @@ var schemaS64ᵖ = &schema.Class{
TypeID: binaryIDS64ᵖ,
Name: "S64ᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -15309,10 +15309,10 @@ var schemaGlGetQueryObjecti64vEXT = &schema.Class{
TypeID: binaryIDGlGetQueryObjecti64vEXT,
Name: "GlGetQueryObjecti64vEXT",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Query", Type: &schema.Primitive{Name: "QueryId", Method: schema.Uint32}},
- schema.Field{Declared: "Parameter", Type: &schema.Primitive{Name: "QueryObjectParameter", Method: schema.Uint32}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "S64ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Query", Type: &schema.Primitive{Name: "QueryId", Method: schema.Uint32}},
+ {Declared: "Parameter", Type: &schema.Primitive{Name: "QueryObjectParameter", Method: schema.Uint32}},
+ {Declared: "Value", Type: &schema.Struct{Name: "S64ᵖ"}},
},
}
@@ -15391,10 +15391,10 @@ var schemaGlGetQueryObjectivEXT = &schema.Class{
TypeID: binaryIDGlGetQueryObjectivEXT,
Name: "GlGetQueryObjectivEXT",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Query", Type: &schema.Primitive{Name: "QueryId", Method: schema.Uint32}},
- schema.Field{Declared: "Parameter", Type: &schema.Primitive{Name: "QueryObjectParameter", Method: schema.Uint32}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Query", Type: &schema.Primitive{Name: "QueryId", Method: schema.Uint32}},
+ {Declared: "Parameter", Type: &schema.Primitive{Name: "QueryObjectParameter", Method: schema.Uint32}},
+ {Declared: "Value", Type: &schema.Struct{Name: "S32ᵖ"}},
},
}
@@ -15453,8 +15453,8 @@ var schemaU64ᵖ = &schema.Class{
TypeID: binaryIDU64ᵖ,
Name: "U64ᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -15535,10 +15535,10 @@ var schemaGlGetQueryObjectui64vEXT = &schema.Class{
TypeID: binaryIDGlGetQueryObjectui64vEXT,
Name: "GlGetQueryObjectui64vEXT",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Query", Type: &schema.Primitive{Name: "QueryId", Method: schema.Uint32}},
- schema.Field{Declared: "Parameter", Type: &schema.Primitive{Name: "QueryObjectParameter", Method: schema.Uint32}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "U64ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Query", Type: &schema.Primitive{Name: "QueryId", Method: schema.Uint32}},
+ {Declared: "Parameter", Type: &schema.Primitive{Name: "QueryObjectParameter", Method: schema.Uint32}},
+ {Declared: "Value", Type: &schema.Struct{Name: "U64ᵖ"}},
},
}
@@ -15617,10 +15617,10 @@ var schemaGlGetQueryObjectuiv = &schema.Class{
TypeID: binaryIDGlGetQueryObjectuiv,
Name: "GlGetQueryObjectuiv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Query", Type: &schema.Primitive{Name: "QueryId", Method: schema.Uint32}},
- schema.Field{Declared: "Parameter", Type: &schema.Primitive{Name: "QueryObjectParameter", Method: schema.Uint32}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "U32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Query", Type: &schema.Primitive{Name: "QueryId", Method: schema.Uint32}},
+ {Declared: "Parameter", Type: &schema.Primitive{Name: "QueryObjectParameter", Method: schema.Uint32}},
+ {Declared: "Value", Type: &schema.Struct{Name: "U32ᵖ"}},
},
}
@@ -15699,10 +15699,10 @@ var schemaGlGetQueryObjectuivEXT = &schema.Class{
TypeID: binaryIDGlGetQueryObjectuivEXT,
Name: "GlGetQueryObjectuivEXT",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Query", Type: &schema.Primitive{Name: "QueryId", Method: schema.Uint32}},
- schema.Field{Declared: "Parameter", Type: &schema.Primitive{Name: "QueryObjectParameter", Method: schema.Uint32}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "U32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Query", Type: &schema.Primitive{Name: "QueryId", Method: schema.Uint32}},
+ {Declared: "Parameter", Type: &schema.Primitive{Name: "QueryObjectParameter", Method: schema.Uint32}},
+ {Declared: "Value", Type: &schema.Struct{Name: "U32ᵖ"}},
},
}
@@ -15779,10 +15779,10 @@ var schemaGlGetQueryiv = &schema.Class{
TypeID: binaryIDGlGetQueryiv,
Name: "GlGetQueryiv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "QueryTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Parameter", Type: &schema.Primitive{Name: "QueryParameter", Method: schema.Uint32}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "QueryTarget", Method: schema.Uint32}},
+ {Declared: "Parameter", Type: &schema.Primitive{Name: "QueryParameter", Method: schema.Uint32}},
+ {Declared: "Value", Type: &schema.Struct{Name: "S32ᵖ"}},
},
}
@@ -15859,10 +15859,10 @@ var schemaGlGetQueryivEXT = &schema.Class{
TypeID: binaryIDGlGetQueryivEXT,
Name: "GlGetQueryivEXT",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "QueryTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Parameter", Type: &schema.Primitive{Name: "QueryParameter", Method: schema.Uint32}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "QueryTarget", Method: schema.Uint32}},
+ {Declared: "Parameter", Type: &schema.Primitive{Name: "QueryParameter", Method: schema.Uint32}},
+ {Declared: "Value", Type: &schema.Struct{Name: "S32ᵖ"}},
},
}
@@ -15947,10 +15947,10 @@ var schemaGlGetRenderbufferParameteriv = &schema.Class{
TypeID: binaryIDGlGetRenderbufferParameteriv,
Name: "GlGetRenderbufferParameteriv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "RenderbufferTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Parameter", Type: &schema.Primitive{Name: "RenderbufferParameter", Method: schema.Uint32}},
- schema.Field{Declared: "Values", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "RenderbufferTarget", Method: schema.Uint32}},
+ {Declared: "Parameter", Type: &schema.Primitive{Name: "RenderbufferParameter", Method: schema.Uint32}},
+ {Declared: "Values", Type: &schema.Struct{Name: "S32ᵖ"}},
},
}
@@ -16036,11 +16036,11 @@ var schemaGlGetShaderInfoLog = &schema.Class{
TypeID: binaryIDGlGetShaderInfoLog,
Name: "GlGetShaderInfoLog",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Shader", Type: &schema.Primitive{Name: "ShaderId", Method: schema.Uint32}},
- schema.Field{Declared: "BufferLength", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "StringLengthWritten", Type: &schema.Struct{Name: "S32ᵖ"}},
- schema.Field{Declared: "Info", Type: &schema.Struct{Name: "Charᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Shader", Type: &schema.Primitive{Name: "ShaderId", Method: schema.Uint32}},
+ {Declared: "BufferLength", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "StringLengthWritten", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "Info", Type: &schema.Struct{Name: "Charᵖ"}},
},
}
@@ -16134,11 +16134,11 @@ var schemaGlGetShaderPrecisionFormat = &schema.Class{
TypeID: binaryIDGlGetShaderPrecisionFormat,
Name: "GlGetShaderPrecisionFormat",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "ShaderType", Type: &schema.Primitive{Name: "ShaderType", Method: schema.Uint32}},
- schema.Field{Declared: "PrecisionType", Type: &schema.Primitive{Name: "PrecisionType", Method: schema.Uint32}},
- schema.Field{Declared: "Range", Type: &schema.Struct{Name: "S32ᵖ"}},
- schema.Field{Declared: "Precision", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "ShaderType", Type: &schema.Primitive{Name: "ShaderType", Method: schema.Uint32}},
+ {Declared: "PrecisionType", Type: &schema.Primitive{Name: "PrecisionType", Method: schema.Uint32}},
+ {Declared: "Range", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "Precision", Type: &schema.Struct{Name: "S32ᵖ"}},
},
}
@@ -16224,11 +16224,11 @@ var schemaGlGetShaderSource = &schema.Class{
TypeID: binaryIDGlGetShaderSource,
Name: "GlGetShaderSource",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Shader", Type: &schema.Primitive{Name: "ShaderId", Method: schema.Uint32}},
- schema.Field{Declared: "BufferLength", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "StringLengthWritten", Type: &schema.Struct{Name: "S32ᵖ"}},
- schema.Field{Declared: "Source", Type: &schema.Struct{Name: "Charᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Shader", Type: &schema.Primitive{Name: "ShaderId", Method: schema.Uint32}},
+ {Declared: "BufferLength", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "StringLengthWritten", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "Source", Type: &schema.Struct{Name: "Charᵖ"}},
},
}
@@ -16305,10 +16305,10 @@ var schemaGlGetShaderiv = &schema.Class{
TypeID: binaryIDGlGetShaderiv,
Name: "GlGetShaderiv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Shader", Type: &schema.Primitive{Name: "ShaderId", Method: schema.Uint32}},
- schema.Field{Declared: "Parameter", Type: &schema.Primitive{Name: "ShaderParameter", Method: schema.Uint32}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Shader", Type: &schema.Primitive{Name: "ShaderId", Method: schema.Uint32}},
+ {Declared: "Parameter", Type: &schema.Primitive{Name: "ShaderParameter", Method: schema.Uint32}},
+ {Declared: "Value", Type: &schema.Struct{Name: "S32ᵖ"}},
},
}
@@ -16374,9 +16374,9 @@ var schemaGlGetString = &schema.Class{
TypeID: binaryIDGlGetString,
Name: "GlGetString",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Param", Type: &schema.Primitive{Name: "StringConstant", Method: schema.Uint32}},
- schema.Field{Declared: "Result", Type: &schema.Struct{Name: "Charᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Param", Type: &schema.Primitive{Name: "StringConstant", Method: schema.Uint32}},
+ {Declared: "Result", Type: &schema.Struct{Name: "Charᵖ"}},
},
}
@@ -16455,10 +16455,10 @@ var schemaGlGetTexParameterfv = &schema.Class{
TypeID: binaryIDGlGetTexParameterfv,
Name: "GlGetTexParameterfv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "TextureTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Parameter", Type: &schema.Primitive{Name: "TextureParameter", Method: schema.Uint32}},
- schema.Field{Declared: "Values", Type: &schema.Struct{Name: "F32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "TextureTarget", Method: schema.Uint32}},
+ {Declared: "Parameter", Type: &schema.Primitive{Name: "TextureParameter", Method: schema.Uint32}},
+ {Declared: "Values", Type: &schema.Struct{Name: "F32ᵖ"}},
},
}
@@ -16537,10 +16537,10 @@ var schemaGlGetTexParameteriv = &schema.Class{
TypeID: binaryIDGlGetTexParameteriv,
Name: "GlGetTexParameteriv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "TextureTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Parameter", Type: &schema.Primitive{Name: "TextureParameter", Method: schema.Uint32}},
- schema.Field{Declared: "Values", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "TextureTarget", Method: schema.Uint32}},
+ {Declared: "Parameter", Type: &schema.Primitive{Name: "TextureParameter", Method: schema.Uint32}},
+ {Declared: "Values", Type: &schema.Struct{Name: "S32ᵖ"}},
},
}
@@ -16621,10 +16621,10 @@ var schemaGlGetUniformLocation = &schema.Class{
TypeID: binaryIDGlGetUniformLocation,
Name: "GlGetUniformLocation",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
- schema.Field{Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
+ {Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
},
}
@@ -16701,10 +16701,10 @@ var schemaGlGetUniformfv = &schema.Class{
TypeID: binaryIDGlGetUniformfv,
Name: "GlGetUniformfv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
- schema.Field{Declared: "Values", Type: &schema.Struct{Name: "F32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
+ {Declared: "Values", Type: &schema.Struct{Name: "F32ᵖ"}},
},
}
@@ -16781,10 +16781,10 @@ var schemaGlGetUniformiv = &schema.Class{
TypeID: binaryIDGlGetUniformiv,
Name: "GlGetUniformiv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
- schema.Field{Declared: "Values", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
+ {Declared: "Values", Type: &schema.Struct{Name: "S32ᵖ"}},
},
}
@@ -16852,9 +16852,9 @@ var schemaGlHint = &schema.Class{
TypeID: binaryIDGlHint,
Name: "GlHint",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "HintTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Mode", Type: &schema.Primitive{Name: "HintMode", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "HintTarget", Method: schema.Uint32}},
+ {Declared: "Mode", Type: &schema.Primitive{Name: "HintMode", Method: schema.Uint32}},
},
}
@@ -16924,9 +16924,9 @@ var schemaGlInsertEventMarkerEXT = &schema.Class{
TypeID: binaryIDGlInsertEventMarkerEXT,
Name: "GlInsertEventMarkerEXT",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Length", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Marker", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Length", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Marker", Type: &schema.Primitive{Name: "string", Method: schema.String}},
},
}
@@ -17007,10 +17007,10 @@ var schemaGlInvalidateFramebuffer = &schema.Class{
TypeID: binaryIDGlInvalidateFramebuffer,
Name: "GlInvalidateFramebuffer",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "FramebufferTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Attachments", Type: &schema.Struct{Name: "FramebufferAttachmentᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "FramebufferTarget", Method: schema.Uint32}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Attachments", Type: &schema.Struct{Name: "FramebufferAttachmentᵖ"}},
},
}
@@ -17078,9 +17078,9 @@ var schemaGlIsBuffer = &schema.Class{
TypeID: binaryIDGlIsBuffer,
Name: "GlIsBuffer",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Buffer", Type: &schema.Primitive{Name: "BufferId", Method: schema.Uint32}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Buffer", Type: &schema.Primitive{Name: "BufferId", Method: schema.Uint32}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
},
}
@@ -17148,9 +17148,9 @@ var schemaGlIsEnabled = &schema.Class{
TypeID: binaryIDGlIsEnabled,
Name: "GlIsEnabled",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Capability", Type: &schema.Primitive{Name: "Capability", Method: schema.Uint32}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Capability", Type: &schema.Primitive{Name: "Capability", Method: schema.Uint32}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
},
}
@@ -17218,9 +17218,9 @@ var schemaGlIsFramebuffer = &schema.Class{
TypeID: binaryIDGlIsFramebuffer,
Name: "GlIsFramebuffer",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Framebuffer", Type: &schema.Primitive{Name: "FramebufferId", Method: schema.Uint32}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Framebuffer", Type: &schema.Primitive{Name: "FramebufferId", Method: schema.Uint32}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
},
}
@@ -17288,9 +17288,9 @@ var schemaGlIsProgram = &schema.Class{
TypeID: binaryIDGlIsProgram,
Name: "GlIsProgram",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
},
}
@@ -17358,9 +17358,9 @@ var schemaGlIsQuery = &schema.Class{
TypeID: binaryIDGlIsQuery,
Name: "GlIsQuery",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Query", Type: &schema.Primitive{Name: "QueryId", Method: schema.Uint32}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Query", Type: &schema.Primitive{Name: "QueryId", Method: schema.Uint32}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
},
}
@@ -17428,9 +17428,9 @@ var schemaGlIsQueryEXT = &schema.Class{
TypeID: binaryIDGlIsQueryEXT,
Name: "GlIsQueryEXT",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Query", Type: &schema.Primitive{Name: "QueryId", Method: schema.Uint32}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Query", Type: &schema.Primitive{Name: "QueryId", Method: schema.Uint32}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
},
}
@@ -17498,9 +17498,9 @@ var schemaGlIsRenderbuffer = &schema.Class{
TypeID: binaryIDGlIsRenderbuffer,
Name: "GlIsRenderbuffer",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Renderbuffer", Type: &schema.Primitive{Name: "RenderbufferId", Method: schema.Uint32}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Renderbuffer", Type: &schema.Primitive{Name: "RenderbufferId", Method: schema.Uint32}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
},
}
@@ -17568,9 +17568,9 @@ var schemaGlIsShader = &schema.Class{
TypeID: binaryIDGlIsShader,
Name: "GlIsShader",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Shader", Type: &schema.Primitive{Name: "ShaderId", Method: schema.Uint32}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Shader", Type: &schema.Primitive{Name: "ShaderId", Method: schema.Uint32}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
},
}
@@ -17638,9 +17638,9 @@ var schemaGlIsTexture = &schema.Class{
TypeID: binaryIDGlIsTexture,
Name: "GlIsTexture",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Texture", Type: &schema.Primitive{Name: "TextureId", Method: schema.Uint32}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Texture", Type: &schema.Primitive{Name: "TextureId", Method: schema.Uint32}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
},
}
@@ -17708,9 +17708,9 @@ var schemaGlIsVertexArrayOES = &schema.Class{
TypeID: binaryIDGlIsVertexArrayOES,
Name: "GlIsVertexArrayOES",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Array", Type: &schema.Primitive{Name: "VertexArrayId", Method: schema.Uint32}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Array", Type: &schema.Primitive{Name: "VertexArrayId", Method: schema.Uint32}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
},
}
@@ -17767,8 +17767,8 @@ var schemaGlLineWidth = &schema.Class{
TypeID: binaryIDGlLineWidth,
Name: "GlLineWidth",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
},
}
@@ -17825,8 +17825,8 @@ var schemaGlLinkProgram = &schema.Class{
TypeID: binaryIDGlLinkProgram,
Name: "GlLinkProgram",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
},
}
@@ -17925,12 +17925,12 @@ var schemaGlMapBufferRange = &schema.Class{
TypeID: binaryIDGlMapBufferRange,
Name: "GlMapBufferRange",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "BufferTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Offset", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Length", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Access", Type: &schema.Primitive{Name: "MapBufferRangeAccess", Method: schema.Uint32}},
- schema.Field{Declared: "Result", Type: &schema.Struct{Name: "Voidᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "BufferTarget", Method: schema.Uint32}},
+ {Declared: "Offset", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Length", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Access", Type: &schema.Primitive{Name: "MapBufferRangeAccess", Method: schema.Uint32}},
+ {Declared: "Result", Type: &schema.Struct{Name: "Voidᵖ"}},
},
}
@@ -17998,9 +17998,9 @@ var schemaGlPixelStorei = &schema.Class{
TypeID: binaryIDGlPixelStorei,
Name: "GlPixelStorei",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Parameter", Type: &schema.Primitive{Name: "PixelStoreParameter", Method: schema.Uint32}},
- schema.Field{Declared: "Value", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Parameter", Type: &schema.Primitive{Name: "PixelStoreParameter", Method: schema.Uint32}},
+ {Declared: "Value", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -18068,9 +18068,9 @@ var schemaGlPolygonOffset = &schema.Class{
TypeID: binaryIDGlPolygonOffset,
Name: "GlPolygonOffset",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "ScaleFactor", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Units", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "ScaleFactor", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Units", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
},
}
@@ -18118,7 +18118,7 @@ var schemaGlPopGroupMarkerEXT = &schema.Class{
TypeID: binaryIDGlPopGroupMarkerEXT,
Name: "GlPopGroupMarkerEXT",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
},
}
@@ -18206,11 +18206,11 @@ var schemaGlProgramBinaryOES = &schema.Class{
TypeID: binaryIDGlProgramBinaryOES,
Name: "GlProgramBinaryOES",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
- schema.Field{Declared: "BinaryFormat", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "Binary", Type: &schema.Struct{Name: "Voidᵖ"}},
- schema.Field{Declared: "BinarySize", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
+ {Declared: "BinaryFormat", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "Binary", Type: &schema.Struct{Name: "Voidᵖ"}},
+ {Declared: "BinarySize", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -18280,9 +18280,9 @@ var schemaGlPushGroupMarkerEXT = &schema.Class{
TypeID: binaryIDGlPushGroupMarkerEXT,
Name: "GlPushGroupMarkerEXT",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Length", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Marker", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Length", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Marker", Type: &schema.Primitive{Name: "string", Method: schema.String}},
},
}
@@ -18350,9 +18350,9 @@ var schemaGlQueryCounterEXT = &schema.Class{
TypeID: binaryIDGlQueryCounterEXT,
Name: "GlQueryCounterEXT",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Query", Type: &schema.Primitive{Name: "QueryId", Method: schema.Uint32}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "QueryTarget", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Query", Type: &schema.Primitive{Name: "QueryId", Method: schema.Uint32}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "QueryTarget", Method: schema.Uint32}},
},
}
@@ -18473,14 +18473,14 @@ var schemaGlReadPixels = &schema.Class{
TypeID: binaryIDGlReadPixels,
Name: "GlReadPixels",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "X", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Y", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Format", Type: &schema.Primitive{Name: "BaseTexelFormat", Method: schema.Uint32}},
- schema.Field{Declared: "Type", Type: &schema.Primitive{Name: "TexelType", Method: schema.Uint32}},
- schema.Field{Declared: "Data", Type: &schema.Struct{Name: "Voidᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "X", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Y", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Format", Type: &schema.Primitive{Name: "BaseTexelFormat", Method: schema.Uint32}},
+ {Declared: "Type", Type: &schema.Primitive{Name: "TexelType", Method: schema.Uint32}},
+ {Declared: "Data", Type: &schema.Struct{Name: "Voidᵖ"}},
},
}
@@ -18530,7 +18530,7 @@ var schemaGlReleaseShaderCompiler = &schema.Class{
TypeID: binaryIDGlReleaseShaderCompiler,
Name: "GlReleaseShaderCompiler",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
},
}
@@ -18622,11 +18622,11 @@ var schemaGlRenderbufferStorage = &schema.Class{
TypeID: binaryIDGlRenderbufferStorage,
Name: "GlRenderbufferStorage",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "RenderbufferTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Format", Type: &schema.Primitive{Name: "RenderbufferFormat", Method: schema.Uint32}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "RenderbufferTarget", Method: schema.Uint32}},
+ {Declared: "Format", Type: &schema.Primitive{Name: "RenderbufferFormat", Method: schema.Uint32}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -18735,12 +18735,12 @@ var schemaGlRenderbufferStorageMultisample = &schema.Class{
TypeID: binaryIDGlRenderbufferStorageMultisample,
Name: "GlRenderbufferStorageMultisample",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "RenderbufferTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Samples", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Format", Type: &schema.Primitive{Name: "RenderbufferFormat", Method: schema.Uint32}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "RenderbufferTarget", Method: schema.Uint32}},
+ {Declared: "Samples", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Format", Type: &schema.Primitive{Name: "RenderbufferFormat", Method: schema.Uint32}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -18808,9 +18808,9 @@ var schemaGlSampleCoverage = &schema.Class{
TypeID: binaryIDGlSampleCoverage,
Name: "GlSampleCoverage",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Value", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Invert", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Value", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Invert", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
},
}
@@ -18900,11 +18900,11 @@ var schemaGlScissor = &schema.Class{
TypeID: binaryIDGlScissor,
Name: "GlScissor",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "X", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Y", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "X", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Y", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -19001,12 +19001,12 @@ var schemaGlShaderBinary = &schema.Class{
TypeID: binaryIDGlShaderBinary,
Name: "GlShaderBinary",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Shaders", Type: &schema.Struct{Name: "ShaderIdᵖ"}},
- schema.Field{Declared: "BinaryFormat", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "Binary", Type: &schema.Struct{Name: "Voidᵖ"}},
- schema.Field{Declared: "BinarySize", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Shaders", Type: &schema.Struct{Name: "ShaderIdᵖ"}},
+ {Declared: "BinaryFormat", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "Binary", Type: &schema.Struct{Name: "Voidᵖ"}},
+ {Declared: "BinarySize", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -19092,11 +19092,11 @@ var schemaGlShaderSource = &schema.Class{
TypeID: binaryIDGlShaderSource,
Name: "GlShaderSource",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Shader", Type: &schema.Primitive{Name: "ShaderId", Method: schema.Uint32}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Source", Type: &schema.Struct{Name: "Charᵖᵖ"}},
- schema.Field{Declared: "Length", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Shader", Type: &schema.Primitive{Name: "ShaderId", Method: schema.Uint32}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Source", Type: &schema.Struct{Name: "Charᵖᵖ"}},
+ {Declared: "Length", Type: &schema.Struct{Name: "S32ᵖ"}},
},
}
@@ -19197,12 +19197,12 @@ var schemaGlStartTilingQCOM = &schema.Class{
TypeID: binaryIDGlStartTilingQCOM,
Name: "GlStartTilingQCOM",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "X", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Y", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "PreserveMask", Type: &schema.Primitive{Name: "TilePreserveMaskQCOM", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "X", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Y", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "PreserveMask", Type: &schema.Primitive{Name: "TilePreserveMaskQCOM", Method: schema.Uint32}},
},
}
@@ -19294,11 +19294,11 @@ var schemaGlStencilFuncSeparate = &schema.Class{
TypeID: binaryIDGlStencilFuncSeparate,
Name: "GlStencilFuncSeparate",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Face", Type: &schema.Primitive{Name: "FaceMode", Method: schema.Uint32}},
- schema.Field{Declared: "Function", Type: &schema.Primitive{Name: "TestFunction", Method: schema.Uint32}},
- schema.Field{Declared: "ReferenceValue", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Mask", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Face", Type: &schema.Primitive{Name: "FaceMode", Method: schema.Uint32}},
+ {Declared: "Function", Type: &schema.Primitive{Name: "TestFunction", Method: schema.Uint32}},
+ {Declared: "ReferenceValue", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Mask", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -19355,8 +19355,8 @@ var schemaGlStencilMask = &schema.Class{
TypeID: binaryIDGlStencilMask,
Name: "GlStencilMask",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Mask", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Mask", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
},
}
@@ -19426,9 +19426,9 @@ var schemaGlStencilMaskSeparate = &schema.Class{
TypeID: binaryIDGlStencilMaskSeparate,
Name: "GlStencilMaskSeparate",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Face", Type: &schema.Primitive{Name: "FaceMode", Method: schema.Uint32}},
- schema.Field{Declared: "Mask", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Face", Type: &schema.Primitive{Name: "FaceMode", Method: schema.Uint32}},
+ {Declared: "Mask", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
},
}
@@ -19520,11 +19520,11 @@ var schemaGlStencilOpSeparate = &schema.Class{
TypeID: binaryIDGlStencilOpSeparate,
Name: "GlStencilOpSeparate",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Face", Type: &schema.Primitive{Name: "FaceMode", Method: schema.Uint32}},
- schema.Field{Declared: "StencilFail", Type: &schema.Primitive{Name: "StencilAction", Method: schema.Uint32}},
- schema.Field{Declared: "StencilPassDepthFail", Type: &schema.Primitive{Name: "StencilAction", Method: schema.Uint32}},
- schema.Field{Declared: "StencilPassDepthPass", Type: &schema.Primitive{Name: "StencilAction", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Face", Type: &schema.Primitive{Name: "FaceMode", Method: schema.Uint32}},
+ {Declared: "StencilFail", Type: &schema.Primitive{Name: "StencilAction", Method: schema.Uint32}},
+ {Declared: "StencilPassDepthFail", Type: &schema.Primitive{Name: "StencilAction", Method: schema.Uint32}},
+ {Declared: "StencilPassDepthPass", Type: &schema.Primitive{Name: "StencilAction", Method: schema.Uint32}},
},
}
@@ -19667,16 +19667,16 @@ var schemaGlTexImage2D = &schema.Class{
TypeID: binaryIDGlTexImage2D,
Name: "GlTexImage2D",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "TextureImageTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Level", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "InternalFormat", Type: &schema.Primitive{Name: "TexelFormat", Method: schema.Uint32}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Border", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Format", Type: &schema.Primitive{Name: "TexelFormat", Method: schema.Uint32}},
- schema.Field{Declared: "Type", Type: &schema.Primitive{Name: "TexelType", Method: schema.Uint32}},
- schema.Field{Declared: "Data", Type: &schema.Struct{Name: "TexturePointer"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "TextureImageTarget", Method: schema.Uint32}},
+ {Declared: "Level", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "InternalFormat", Type: &schema.Primitive{Name: "TexelFormat", Method: schema.Uint32}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Border", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Format", Type: &schema.Primitive{Name: "TexelFormat", Method: schema.Uint32}},
+ {Declared: "Type", Type: &schema.Primitive{Name: "TexelType", Method: schema.Uint32}},
+ {Declared: "Data", Type: &schema.Struct{Name: "TexturePointer"}},
},
}
@@ -19755,10 +19755,10 @@ var schemaGlTexParameterf = &schema.Class{
TypeID: binaryIDGlTexParameterf,
Name: "GlTexParameterf",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "TextureTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Parameter", Type: &schema.Primitive{Name: "TextureParameter", Method: schema.Uint32}},
- schema.Field{Declared: "Value", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "TextureTarget", Method: schema.Uint32}},
+ {Declared: "Parameter", Type: &schema.Primitive{Name: "TextureParameter", Method: schema.Uint32}},
+ {Declared: "Value", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
},
}
@@ -19837,10 +19837,10 @@ var schemaGlTexParameteri = &schema.Class{
TypeID: binaryIDGlTexParameteri,
Name: "GlTexParameteri",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "TextureTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Parameter", Type: &schema.Primitive{Name: "TextureParameter", Method: schema.Uint32}},
- schema.Field{Declared: "Value", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "TextureTarget", Method: schema.Uint32}},
+ {Declared: "Parameter", Type: &schema.Primitive{Name: "TextureParameter", Method: schema.Uint32}},
+ {Declared: "Value", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -19930,11 +19930,11 @@ var schemaGlTexStorage1DEXT = &schema.Class{
TypeID: binaryIDGlTexStorage1DEXT,
Name: "GlTexStorage1DEXT",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "TextureTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Levels", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Format", Type: &schema.Primitive{Name: "TexelFormat", Method: schema.Uint32}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "TextureTarget", Method: schema.Uint32}},
+ {Declared: "Levels", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Format", Type: &schema.Primitive{Name: "TexelFormat", Method: schema.Uint32}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -20035,12 +20035,12 @@ var schemaGlTexStorage2DEXT = &schema.Class{
TypeID: binaryIDGlTexStorage2DEXT,
Name: "GlTexStorage2DEXT",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "TextureTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Levels", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Format", Type: &schema.Primitive{Name: "TexelFormat", Method: schema.Uint32}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "TextureTarget", Method: schema.Uint32}},
+ {Declared: "Levels", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Format", Type: &schema.Primitive{Name: "TexelFormat", Method: schema.Uint32}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -20152,13 +20152,13 @@ var schemaGlTexStorage3DEXT = &schema.Class{
TypeID: binaryIDGlTexStorage3DEXT,
Name: "GlTexStorage3DEXT",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "TextureTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Levels", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Format", Type: &schema.Primitive{Name: "TexelFormat", Method: schema.Uint32}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Depth", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "TextureTarget", Method: schema.Uint32}},
+ {Declared: "Levels", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Format", Type: &schema.Primitive{Name: "TexelFormat", Method: schema.Uint32}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Depth", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -20301,16 +20301,16 @@ var schemaGlTexSubImage2D = &schema.Class{
TypeID: binaryIDGlTexSubImage2D,
Name: "GlTexSubImage2D",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "TextureImageTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Level", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Xoffset", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Yoffset", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Format", Type: &schema.Primitive{Name: "TexelFormat", Method: schema.Uint32}},
- schema.Field{Declared: "Type", Type: &schema.Primitive{Name: "TexelType", Method: schema.Uint32}},
- schema.Field{Declared: "Data", Type: &schema.Struct{Name: "TexturePointer"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "TextureImageTarget", Method: schema.Uint32}},
+ {Declared: "Level", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Xoffset", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Yoffset", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Format", Type: &schema.Primitive{Name: "TexelFormat", Method: schema.Uint32}},
+ {Declared: "Type", Type: &schema.Primitive{Name: "TexelType", Method: schema.Uint32}},
+ {Declared: "Data", Type: &schema.Struct{Name: "TexturePointer"}},
},
}
@@ -20413,12 +20413,12 @@ var schemaGlTextureStorage1DEXT = &schema.Class{
TypeID: binaryIDGlTextureStorage1DEXT,
Name: "GlTextureStorage1DEXT",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Texture", Type: &schema.Primitive{Name: "TextureId", Method: schema.Uint32}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "TextureTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Levels", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Format", Type: &schema.Primitive{Name: "TexelFormat", Method: schema.Uint32}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Texture", Type: &schema.Primitive{Name: "TextureId", Method: schema.Uint32}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "TextureTarget", Method: schema.Uint32}},
+ {Declared: "Levels", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Format", Type: &schema.Primitive{Name: "TexelFormat", Method: schema.Uint32}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -20532,13 +20532,13 @@ var schemaGlTextureStorage2DEXT = &schema.Class{
TypeID: binaryIDGlTextureStorage2DEXT,
Name: "GlTextureStorage2DEXT",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Texture", Type: &schema.Primitive{Name: "TextureId", Method: schema.Uint32}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "TextureTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Levels", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Format", Type: &schema.Primitive{Name: "TexelFormat", Method: schema.Uint32}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Texture", Type: &schema.Primitive{Name: "TextureId", Method: schema.Uint32}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "TextureTarget", Method: schema.Uint32}},
+ {Declared: "Levels", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Format", Type: &schema.Primitive{Name: "TexelFormat", Method: schema.Uint32}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -20663,14 +20663,14 @@ var schemaGlTextureStorage3DEXT = &schema.Class{
TypeID: binaryIDGlTextureStorage3DEXT,
Name: "GlTextureStorage3DEXT",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Texture", Type: &schema.Primitive{Name: "TextureId", Method: schema.Uint32}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "TextureTarget", Method: schema.Uint32}},
- schema.Field{Declared: "Levels", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Format", Type: &schema.Primitive{Name: "TexelFormat", Method: schema.Uint32}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Depth", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Texture", Type: &schema.Primitive{Name: "TextureId", Method: schema.Uint32}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "TextureTarget", Method: schema.Uint32}},
+ {Declared: "Levels", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Format", Type: &schema.Primitive{Name: "TexelFormat", Method: schema.Uint32}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Depth", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -20738,9 +20738,9 @@ var schemaGlUniform1f = &schema.Class{
TypeID: binaryIDGlUniform1f,
Name: "GlUniform1f",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
- schema.Field{Declared: "Value", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
+ {Declared: "Value", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
},
}
@@ -20817,10 +20817,10 @@ var schemaGlUniform1fv = &schema.Class{
TypeID: binaryIDGlUniform1fv,
Name: "GlUniform1fv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "F32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Value", Type: &schema.Struct{Name: "F32ᵖ"}},
},
}
@@ -20888,9 +20888,9 @@ var schemaGlUniform1i = &schema.Class{
TypeID: binaryIDGlUniform1i,
Name: "GlUniform1i",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
- schema.Field{Declared: "Value", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
+ {Declared: "Value", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -20967,10 +20967,10 @@ var schemaGlUniform1iv = &schema.Class{
TypeID: binaryIDGlUniform1iv,
Name: "GlUniform1iv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Value", Type: &schema.Struct{Name: "S32ᵖ"}},
},
}
@@ -21049,10 +21049,10 @@ var schemaGlUniform2f = &schema.Class{
TypeID: binaryIDGlUniform2f,
Name: "GlUniform2f",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
- schema.Field{Declared: "Value0", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Value1", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
+ {Declared: "Value0", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Value1", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
},
}
@@ -21129,10 +21129,10 @@ var schemaGlUniform2fv = &schema.Class{
TypeID: binaryIDGlUniform2fv,
Name: "GlUniform2fv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "F32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Value", Type: &schema.Struct{Name: "F32ᵖ"}},
},
}
@@ -21211,10 +21211,10 @@ var schemaGlUniform2i = &schema.Class{
TypeID: binaryIDGlUniform2i,
Name: "GlUniform2i",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
- schema.Field{Declared: "Value0", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Value1", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
+ {Declared: "Value0", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Value1", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -21291,10 +21291,10 @@ var schemaGlUniform2iv = &schema.Class{
TypeID: binaryIDGlUniform2iv,
Name: "GlUniform2iv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Value", Type: &schema.Struct{Name: "S32ᵖ"}},
},
}
@@ -21384,11 +21384,11 @@ var schemaGlUniform3f = &schema.Class{
TypeID: binaryIDGlUniform3f,
Name: "GlUniform3f",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
- schema.Field{Declared: "Value0", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Value1", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Value2", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
+ {Declared: "Value0", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Value1", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Value2", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
},
}
@@ -21465,10 +21465,10 @@ var schemaGlUniform3fv = &schema.Class{
TypeID: binaryIDGlUniform3fv,
Name: "GlUniform3fv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "F32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Value", Type: &schema.Struct{Name: "F32ᵖ"}},
},
}
@@ -21558,11 +21558,11 @@ var schemaGlUniform3i = &schema.Class{
TypeID: binaryIDGlUniform3i,
Name: "GlUniform3i",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
- schema.Field{Declared: "Value0", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Value1", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Value2", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
+ {Declared: "Value0", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Value1", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Value2", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -21639,10 +21639,10 @@ var schemaGlUniform3iv = &schema.Class{
TypeID: binaryIDGlUniform3iv,
Name: "GlUniform3iv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Value", Type: &schema.Struct{Name: "S32ᵖ"}},
},
}
@@ -21743,12 +21743,12 @@ var schemaGlUniform4f = &schema.Class{
TypeID: binaryIDGlUniform4f,
Name: "GlUniform4f",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
- schema.Field{Declared: "Value0", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Value1", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Value2", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Value3", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
+ {Declared: "Value0", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Value1", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Value2", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Value3", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
},
}
@@ -21825,10 +21825,10 @@ var schemaGlUniform4fv = &schema.Class{
TypeID: binaryIDGlUniform4fv,
Name: "GlUniform4fv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "F32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Value", Type: &schema.Struct{Name: "F32ᵖ"}},
},
}
@@ -21929,12 +21929,12 @@ var schemaGlUniform4i = &schema.Class{
TypeID: binaryIDGlUniform4i,
Name: "GlUniform4i",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
- schema.Field{Declared: "Value0", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Value1", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Value2", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Value3", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
+ {Declared: "Value0", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Value1", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Value2", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Value3", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -22011,10 +22011,10 @@ var schemaGlUniform4iv = &schema.Class{
TypeID: binaryIDGlUniform4iv,
Name: "GlUniform4iv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Value", Type: &schema.Struct{Name: "S32ᵖ"}},
},
}
@@ -22102,11 +22102,11 @@ var schemaGlUniformMatrix2fv = &schema.Class{
TypeID: binaryIDGlUniformMatrix2fv,
Name: "GlUniformMatrix2fv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Transpose", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
- schema.Field{Declared: "Values", Type: &schema.Struct{Name: "F32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Transpose", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "Values", Type: &schema.Struct{Name: "F32ᵖ"}},
},
}
@@ -22194,11 +22194,11 @@ var schemaGlUniformMatrix3fv = &schema.Class{
TypeID: binaryIDGlUniformMatrix3fv,
Name: "GlUniformMatrix3fv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Transpose", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
- schema.Field{Declared: "Values", Type: &schema.Struct{Name: "F32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Transpose", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "Values", Type: &schema.Struct{Name: "F32ᵖ"}},
},
}
@@ -22286,11 +22286,11 @@ var schemaGlUniformMatrix4fv = &schema.Class{
TypeID: binaryIDGlUniformMatrix4fv,
Name: "GlUniformMatrix4fv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Transpose", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
- schema.Field{Declared: "Values", Type: &schema.Struct{Name: "F32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "UniformLocation", Method: schema.Int32}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Transpose", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "Values", Type: &schema.Struct{Name: "F32ᵖ"}},
},
}
@@ -22347,8 +22347,8 @@ var schemaGlUnmapBuffer = &schema.Class{
TypeID: binaryIDGlUnmapBuffer,
Name: "GlUnmapBuffer",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Target", Type: &schema.Primitive{Name: "BufferTarget", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Target", Type: &schema.Primitive{Name: "BufferTarget", Method: schema.Uint32}},
},
}
@@ -22405,8 +22405,8 @@ var schemaGlUseProgram = &schema.Class{
TypeID: binaryIDGlUseProgram,
Name: "GlUseProgram",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
},
}
@@ -22463,8 +22463,8 @@ var schemaGlValidateProgram = &schema.Class{
TypeID: binaryIDGlValidateProgram,
Name: "GlValidateProgram",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Program", Type: &schema.Primitive{Name: "ProgramId", Method: schema.Uint32}},
},
}
@@ -22532,9 +22532,9 @@ var schemaGlVertexAttrib1f = &schema.Class{
TypeID: binaryIDGlVertexAttrib1f,
Name: "GlVertexAttrib1f",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
- schema.Field{Declared: "Value0", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
+ {Declared: "Value0", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
},
}
@@ -22600,9 +22600,9 @@ var schemaGlVertexAttrib1fv = &schema.Class{
TypeID: binaryIDGlVertexAttrib1fv,
Name: "GlVertexAttrib1fv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "F32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
+ {Declared: "Value", Type: &schema.Struct{Name: "F32ᵖ"}},
},
}
@@ -22681,10 +22681,10 @@ var schemaGlVertexAttrib2f = &schema.Class{
TypeID: binaryIDGlVertexAttrib2f,
Name: "GlVertexAttrib2f",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
- schema.Field{Declared: "Value0", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Value1", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
+ {Declared: "Value0", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Value1", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
},
}
@@ -22750,9 +22750,9 @@ var schemaGlVertexAttrib2fv = &schema.Class{
TypeID: binaryIDGlVertexAttrib2fv,
Name: "GlVertexAttrib2fv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "F32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
+ {Declared: "Value", Type: &schema.Struct{Name: "F32ᵖ"}},
},
}
@@ -22842,11 +22842,11 @@ var schemaGlVertexAttrib3f = &schema.Class{
TypeID: binaryIDGlVertexAttrib3f,
Name: "GlVertexAttrib3f",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
- schema.Field{Declared: "Value0", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Value1", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Value2", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
+ {Declared: "Value0", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Value1", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Value2", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
},
}
@@ -22912,9 +22912,9 @@ var schemaGlVertexAttrib3fv = &schema.Class{
TypeID: binaryIDGlVertexAttrib3fv,
Name: "GlVertexAttrib3fv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "F32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
+ {Declared: "Value", Type: &schema.Struct{Name: "F32ᵖ"}},
},
}
@@ -23015,12 +23015,12 @@ var schemaGlVertexAttrib4f = &schema.Class{
TypeID: binaryIDGlVertexAttrib4f,
Name: "GlVertexAttrib4f",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
- schema.Field{Declared: "Value0", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Value1", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Value2", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "Value3", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
+ {Declared: "Value0", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Value1", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Value2", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "Value3", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
},
}
@@ -23086,9 +23086,9 @@ var schemaGlVertexAttrib4fv = &schema.Class{
TypeID: binaryIDGlVertexAttrib4fv,
Name: "GlVertexAttrib4fv",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
- schema.Field{Declared: "Value", Type: &schema.Struct{Name: "F32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
+ {Declared: "Value", Type: &schema.Struct{Name: "F32ᵖ"}},
},
}
@@ -23200,13 +23200,13 @@ var schemaGlVertexAttribPointer = &schema.Class{
TypeID: binaryIDGlVertexAttribPointer,
Name: "GlVertexAttribPointer",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
- schema.Field{Declared: "Size", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Type", Type: &schema.Primitive{Name: "VertexAttribType", Method: schema.Uint32}},
- schema.Field{Declared: "Normalized", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
- schema.Field{Declared: "Stride", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Data", Type: &schema.Struct{Name: "VertexPointer"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Location", Type: &schema.Primitive{Name: "AttributeLocation", Method: schema.Uint32}},
+ {Declared: "Size", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Type", Type: &schema.Primitive{Name: "VertexAttribType", Method: schema.Uint32}},
+ {Declared: "Normalized", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "Stride", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Data", Type: &schema.Struct{Name: "VertexPointer"}},
},
}
@@ -23296,11 +23296,11 @@ var schemaGlViewport = &schema.Class{
TypeID: binaryIDGlViewport,
Name: "GlViewport",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "X", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Y", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
- schema.Field{Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "X", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Y", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "Height", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -23393,12 +23393,12 @@ var schemaGlXCreateContext = &schema.Class{
TypeID: binaryIDGlXCreateContext,
Name: "GlXCreateContext",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Dpy", Type: &schema.Struct{Name: "Voidᵖ"}},
- schema.Field{Declared: "Vis", Type: &schema.Struct{Name: "Voidᵖ"}},
- schema.Field{Declared: "ShareList", Type: &schema.Struct{Name: "GLXContext"}},
- schema.Field{Declared: "Direct", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
- schema.Field{Declared: "Result", Type: &schema.Struct{Name: "GLXContext"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Dpy", Type: &schema.Struct{Name: "Voidᵖ"}},
+ {Declared: "Vis", Type: &schema.Struct{Name: "Voidᵖ"}},
+ {Declared: "ShareList", Type: &schema.Struct{Name: "GLXContext"}},
+ {Declared: "Direct", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "Result", Type: &schema.Struct{Name: "GLXContext"}},
},
}
@@ -23504,13 +23504,13 @@ var schemaGlXCreateNewContext = &schema.Class{
TypeID: binaryIDGlXCreateNewContext,
Name: "GlXCreateNewContext",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Display", Type: &schema.Struct{Name: "Voidᵖ"}},
- schema.Field{Declared: "Fbconfig", Type: &schema.Struct{Name: "Voidᵖ"}},
- schema.Field{Declared: "Type", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "Shared", Type: &schema.Struct{Name: "GLXContext"}},
- schema.Field{Declared: "Direct", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
- schema.Field{Declared: "Result", Type: &schema.Struct{Name: "GLXContext"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Display", Type: &schema.Struct{Name: "Voidᵖ"}},
+ {Declared: "Fbconfig", Type: &schema.Struct{Name: "Voidᵖ"}},
+ {Declared: "Type", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "Shared", Type: &schema.Struct{Name: "GLXContext"}},
+ {Declared: "Direct", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "Result", Type: &schema.Struct{Name: "GLXContext"}},
},
}
@@ -23594,11 +23594,11 @@ var schemaGlXMakeContextCurrent = &schema.Class{
TypeID: binaryIDGlXMakeContextCurrent,
Name: "GlXMakeContextCurrent",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Display", Type: &schema.Struct{Name: "Voidᵖ"}},
- schema.Field{Declared: "Draw", Type: &schema.Struct{Name: "GLXDrawable"}},
- schema.Field{Declared: "Read", Type: &schema.Struct{Name: "GLXDrawable"}},
- schema.Field{Declared: "Ctx", Type: &schema.Struct{Name: "GLXContext"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Display", Type: &schema.Struct{Name: "Voidᵖ"}},
+ {Declared: "Draw", Type: &schema.Struct{Name: "GLXDrawable"}},
+ {Declared: "Read", Type: &schema.Struct{Name: "GLXDrawable"}},
+ {Declared: "Ctx", Type: &schema.Struct{Name: "GLXContext"}},
},
}
@@ -23662,9 +23662,9 @@ var schemaGlXSwapBuffers = &schema.Class{
TypeID: binaryIDGlXSwapBuffers,
Name: "GlXSwapBuffers",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Display", Type: &schema.Struct{Name: "Voidᵖ"}},
- schema.Field{Declared: "Drawable", Type: &schema.Struct{Name: "GLXDrawable"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Display", Type: &schema.Struct{Name: "Voidᵖ"}},
+ {Declared: "Drawable", Type: &schema.Struct{Name: "GLXDrawable"}},
},
}
@@ -23723,8 +23723,8 @@ var schemaHGLRC = &schema.Class{
TypeID: binaryIDHGLRC,
Name: "HGLRC",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -24025,13 +24025,13 @@ var schemaGlobals = &schema.Class{
TypeID: binaryIDGlobals,
Name: "Globals",
Fields: []schema.Field{
- schema.Field{Declared: "NextContextID", Type: &schema.Primitive{Name: "ContextID", Method: schema.Uint32}},
- schema.Field{Declared: "CurrentThread", Type: &schema.Primitive{Name: "ThreadID", Method: schema.Uint32}},
- schema.Field{Declared: "Contexts", Type: &schema.Map{Alias: "ThreadIDːContextʳᵐ", KeyType: &schema.Primitive{Name: "ThreadID", Method: schema.Uint32}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "Context"}}}},
- schema.Field{Declared: "EGLContexts", Type: &schema.Map{Alias: "EGLContextːContextʳᵐ", KeyType: &schema.Struct{Name: "EGLContext"}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "Context"}}}},
- schema.Field{Declared: "GLXContexts", Type: &schema.Map{Alias: "GLXContextːContextʳᵐ", KeyType: &schema.Struct{Name: "GLXContext"}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "Context"}}}},
- schema.Field{Declared: "WGLContexts", Type: &schema.Map{Alias: "HGLRCːContextʳᵐ", KeyType: &schema.Struct{Name: "HGLRC"}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "Context"}}}},
- schema.Field{Declared: "CGLContexts", Type: &schema.Map{Alias: "CGLContextObjːContextʳᵐ", KeyType: &schema.Struct{Name: "CGLContextObj"}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "Context"}}}},
+ {Declared: "NextContextID", Type: &schema.Primitive{Name: "ContextID", Method: schema.Uint32}},
+ {Declared: "CurrentThread", Type: &schema.Primitive{Name: "ThreadID", Method: schema.Uint32}},
+ {Declared: "Contexts", Type: &schema.Map{Alias: "ThreadIDːContextʳᵐ", KeyType: &schema.Primitive{Name: "ThreadID", Method: schema.Uint32}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "Context"}}}},
+ {Declared: "EGLContexts", Type: &schema.Map{Alias: "EGLContextːContextʳᵐ", KeyType: &schema.Struct{Name: "EGLContext"}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "Context"}}}},
+ {Declared: "GLXContexts", Type: &schema.Map{Alias: "GLXContextːContextʳᵐ", KeyType: &schema.Struct{Name: "GLXContext"}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "Context"}}}},
+ {Declared: "WGLContexts", Type: &schema.Map{Alias: "HGLRCːContextʳᵐ", KeyType: &schema.Struct{Name: "HGLRC"}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "Context"}}}},
+ {Declared: "CGLContexts", Type: &schema.Map{Alias: "CGLContextObjːContextʳᵐ", KeyType: &schema.Struct{Name: "CGLContextObj"}, ValueType: &schema.Pointer{Type: &schema.Struct{Name: "Context"}}}},
},
}
@@ -24090,8 +24090,8 @@ var schemaHDC = &schema.Class{
TypeID: binaryIDHDC,
Name: "HDC",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -24172,10 +24172,10 @@ var schemaIntˢ = &schema.Class{
TypeID: binaryIDIntˢ,
Name: "Intˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -24234,8 +24234,8 @@ var schemaIntᵖ = &schema.Class{
TypeID: binaryIDIntᵖ,
Name: "Intᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -24316,10 +24316,10 @@ var schemaQueryIdˢ = &schema.Class{
TypeID: binaryIDQueryIdˢ,
Name: "QueryIdˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -24400,10 +24400,10 @@ var schemaRenderbufferIdˢ = &schema.Class{
TypeID: binaryIDRenderbufferIdˢ,
Name: "RenderbufferIdˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -24460,8 +24460,8 @@ var schemaReplayBindRenderer = &schema.Class{
TypeID: binaryIDReplayBindRenderer,
Name: "ReplayBindRenderer",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Id", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Id", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
},
}
@@ -24520,8 +24520,8 @@ var schemaReplayCreateRenderer = &schema.Class{
TypeID: binaryIDReplayCreateRenderer,
Name: "ReplayCreateRenderer",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Id", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Id", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
},
}
@@ -24602,10 +24602,10 @@ var schemaS32ˢ = &schema.Class{
TypeID: binaryIDS32ˢ,
Name: "S32ˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -24686,10 +24686,10 @@ var schemaS64ˢ = &schema.Class{
TypeID: binaryIDS64ˢ,
Name: "S64ˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -24770,10 +24770,10 @@ var schemaShaderAttribTypeˢ = &schema.Class{
TypeID: binaryIDShaderAttribTypeˢ,
Name: "ShaderAttribTypeˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -24854,10 +24854,10 @@ var schemaShaderIdˢ = &schema.Class{
TypeID: binaryIDShaderIdˢ,
Name: "ShaderIdˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -24940,10 +24940,10 @@ var schemaShaderUniformTypeˢ = &schema.Class{
TypeID: binaryIDShaderUniformTypeˢ,
Name: "ShaderUniformTypeˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -25000,8 +25000,8 @@ var schemaStartTimer = &schema.Class{
TypeID: binaryIDStartTimer,
Name: "StartTimer",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Index", Type: &schema.Primitive{Name: "uint8", Method: schema.Uint8}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Index", Type: &schema.Primitive{Name: "uint8", Method: schema.Uint8}},
},
}
@@ -25069,9 +25069,9 @@ var schemaStopTimer = &schema.Class{
TypeID: binaryIDStopTimer,
Name: "StopTimer",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Index", Type: &schema.Primitive{Name: "uint8", Method: schema.Uint8}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Index", Type: &schema.Primitive{Name: "uint8", Method: schema.Uint8}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
},
}
@@ -25152,10 +25152,10 @@ var schemaTextureIdˢ = &schema.Class{
TypeID: binaryIDTextureIdˢ,
Name: "TextureIdˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -25236,10 +25236,10 @@ var schemaU32ˢ = &schema.Class{
TypeID: binaryIDU32ˢ,
Name: "U32ˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -25320,10 +25320,10 @@ var schemaU64ˢ = &schema.Class{
TypeID: binaryIDU64ˢ,
Name: "U64ˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -25382,8 +25382,8 @@ var schemaU8ᵖ = &schema.Class{
TypeID: binaryIDU8ᵖ,
Name: "U8ᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -25464,10 +25464,10 @@ var schemaVertexArrayIdˢ = &schema.Class{
TypeID: binaryIDVertexArrayIdˢ,
Name: "VertexArrayIdˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -25548,10 +25548,10 @@ var schemaVoidˢ = &schema.Class{
TypeID: binaryIDVoidˢ,
Name: "Voidˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -25615,9 +25615,9 @@ var schemaWglCreateContext = &schema.Class{
TypeID: binaryIDWglCreateContext,
Name: "WglCreateContext",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Hdc", Type: &schema.Struct{Name: "HDC"}},
- schema.Field{Declared: "Result", Type: &schema.Struct{Name: "HGLRC"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Hdc", Type: &schema.Struct{Name: "HDC"}},
+ {Declared: "Result", Type: &schema.Struct{Name: "HGLRC"}},
},
}
@@ -25707,11 +25707,11 @@ var schemaWglCreateContextAttribsARB = &schema.Class{
TypeID: binaryIDWglCreateContextAttribsARB,
Name: "WglCreateContextAttribsARB",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Hdc", Type: &schema.Struct{Name: "HDC"}},
- schema.Field{Declared: "HShareContext", Type: &schema.Struct{Name: "HGLRC"}},
- schema.Field{Declared: "AttribList", Type: &schema.Struct{Name: "Intᵖ"}},
- schema.Field{Declared: "Result", Type: &schema.Struct{Name: "HGLRC"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Hdc", Type: &schema.Struct{Name: "HDC"}},
+ {Declared: "HShareContext", Type: &schema.Struct{Name: "HGLRC"}},
+ {Declared: "AttribList", Type: &schema.Struct{Name: "Intᵖ"}},
+ {Declared: "Result", Type: &schema.Struct{Name: "HGLRC"}},
},
}
@@ -25786,10 +25786,10 @@ var schemaWglMakeCurrent = &schema.Class{
TypeID: binaryIDWglMakeCurrent,
Name: "WglMakeCurrent",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Hdc", Type: &schema.Struct{Name: "HDC"}},
- schema.Field{Declared: "Hglrc", Type: &schema.Struct{Name: "HGLRC"}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "BOOL", Method: schema.Int64}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Hdc", Type: &schema.Struct{Name: "HDC"}},
+ {Declared: "Hglrc", Type: &schema.Struct{Name: "HGLRC"}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "BOOL", Method: schema.Int64}},
},
}
@@ -25844,8 +25844,8 @@ var schemaWglSwapBuffers = &schema.Class{
TypeID: binaryIDWglSwapBuffers,
Name: "WglSwapBuffers",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Hdc", Type: &schema.Struct{Name: "HDC"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Hdc", Type: &schema.Struct{Name: "HDC"}},
},
}
diff --git a/gfxapi/test/test_binary.go b/gfxapi/test/test_binary.go
index e074a7eab..faec052b7 100644
--- a/gfxapi/test/test_binary.go
+++ b/gfxapi/test/test_binary.go
@@ -300,10 +300,10 @@ var schemaBoolˢ = &schema.Class{
TypeID: binaryIDBoolˢ,
Name: "Boolˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -362,8 +362,8 @@ var schemaBoolᵖ = &schema.Class{
TypeID: binaryIDBoolᵖ,
Name: "Boolᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -444,10 +444,10 @@ var schemaCharˢ = &schema.Class{
TypeID: binaryIDCharˢ,
Name: "Charˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -506,8 +506,8 @@ var schemaCharᵖ = &schema.Class{
TypeID: binaryIDCharᵖ,
Name: "Charᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -588,10 +588,10 @@ var schemaCharᵖˢ = &schema.Class{
TypeID: binaryIDCharᵖˢ,
Name: "Charᵖˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -650,8 +650,8 @@ var schemaCharᵖᵖ = &schema.Class{
TypeID: binaryIDCharᵖᵖ,
Name: "Charᵖᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -708,8 +708,8 @@ var schemaCmdBool = &schema.Class{
TypeID: binaryIDCmdBool,
Name: "CmdBool",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
},
}
@@ -764,8 +764,8 @@ var schemaCmdCharptrToString = &schema.Class{
TypeID: binaryIDCmdCharptrToString,
Name: "CmdCharptrToString",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "S", Type: &schema.Struct{Name: "Charᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "S", Type: &schema.Struct{Name: "Charᵖ"}},
},
}
@@ -833,9 +833,9 @@ var schemaCmdCharsliceToString = &schema.Class{
TypeID: binaryIDCmdCharsliceToString,
Name: "CmdCharsliceToString",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "S", Type: &schema.Struct{Name: "Charᵖ"}},
- schema.Field{Declared: "Len", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "S", Type: &schema.Struct{Name: "Charᵖ"}},
+ {Declared: "Len", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
},
}
@@ -894,8 +894,8 @@ var schemaU8ᵖ = &schema.Class{
TypeID: binaryIDU8ᵖ,
Name: "U8ᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -961,9 +961,9 @@ var schemaCmdClone = &schema.Class{
TypeID: binaryIDCmdClone,
Name: "CmdClone",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Src", Type: &schema.Struct{Name: "U8ᵖ"}},
- schema.Field{Declared: "Cnt", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Src", Type: &schema.Struct{Name: "U8ᵖ"}},
+ {Declared: "Cnt", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
},
}
@@ -1029,9 +1029,9 @@ var schemaCmdCopy = &schema.Class{
TypeID: binaryIDCmdCopy,
Name: "CmdCopy",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Src", Type: &schema.Struct{Name: "U8ᵖ"}},
- schema.Field{Declared: "Cnt", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Src", Type: &schema.Struct{Name: "U8ᵖ"}},
+ {Declared: "Cnt", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
},
}
@@ -1088,8 +1088,8 @@ var schemaCmdF32 = &schema.Class{
TypeID: binaryIDCmdF32,
Name: "CmdF32",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
},
}
@@ -1146,8 +1146,8 @@ var schemaCmdF64 = &schema.Class{
TypeID: binaryIDCmdF64,
Name: "CmdF64",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "float64", Method: schema.Float64}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "float64", Method: schema.Float64}},
},
}
@@ -1204,8 +1204,8 @@ var schemaCmdMake = &schema.Class{
TypeID: binaryIDCmdMake,
Name: "CmdMake",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Cnt", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Cnt", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
},
}
@@ -1264,8 +1264,8 @@ var schemaVoidᵖ = &schema.Class{
TypeID: binaryIDVoidᵖ,
Name: "Voidᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -1320,8 +1320,8 @@ var schemaCmdPointer = &schema.Class{
TypeID: binaryIDCmdPointer,
Name: "CmdPointer",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Result", Type: &schema.Struct{Name: "Voidᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Result", Type: &schema.Struct{Name: "Voidᵖ"}},
},
}
@@ -1378,8 +1378,8 @@ var schemaCmdRemapped = &schema.Class{
TypeID: binaryIDCmdRemapped,
Name: "CmdRemapped",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "remapped", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "remapped", Method: schema.Uint32}},
},
}
@@ -1436,8 +1436,8 @@ var schemaCmdS16 = &schema.Class{
TypeID: binaryIDCmdS16,
Name: "CmdS16",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "int16", Method: schema.Int16}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "int16", Method: schema.Int16}},
},
}
@@ -1494,8 +1494,8 @@ var schemaCmdS32 = &schema.Class{
TypeID: binaryIDCmdS32,
Name: "CmdS32",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -1552,8 +1552,8 @@ var schemaCmdS64 = &schema.Class{
TypeID: binaryIDCmdS64,
Name: "CmdS64",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "int64", Method: schema.Int64}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "int64", Method: schema.Int64}},
},
}
@@ -1610,8 +1610,8 @@ var schemaCmdS8 = &schema.Class{
TypeID: binaryIDCmdS8,
Name: "CmdS8",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "int8", Method: schema.Int8}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "int8", Method: schema.Int8}},
},
}
@@ -1668,8 +1668,8 @@ var schemaCmdString = &schema.Class{
TypeID: binaryIDCmdString,
Name: "CmdString",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "string", Method: schema.String}},
},
}
@@ -1726,8 +1726,8 @@ var schemaCmdU16 = &schema.Class{
TypeID: binaryIDCmdU16,
Name: "CmdU16",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "uint16", Method: schema.Uint16}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "uint16", Method: schema.Uint16}},
},
}
@@ -1784,8 +1784,8 @@ var schemaCmdU32 = &schema.Class{
TypeID: binaryIDCmdU32,
Name: "CmdU32",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
},
}
@@ -1842,8 +1842,8 @@ var schemaCmdU64 = &schema.Class{
TypeID: binaryIDCmdU64,
Name: "CmdU64",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
},
}
@@ -1900,8 +1900,8 @@ var schemaCmdU8 = &schema.Class{
TypeID: binaryIDCmdU8,
Name: "CmdU8",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "uint8", Method: schema.Uint8}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "uint8", Method: schema.Uint8}},
},
}
@@ -1958,8 +1958,8 @@ var schemaCmdUnknownRet = &schema.Class{
TypeID: binaryIDCmdUnknownRet,
Name: "CmdUnknownRet",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "Result", Type: &schema.Primitive{Name: "int64", Method: schema.Int64}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "Result", Type: &schema.Primitive{Name: "int64", Method: schema.Int64}},
},
}
@@ -2018,8 +2018,8 @@ var schemaIntᵖ = &schema.Class{
TypeID: binaryIDIntᵖ,
Name: "Intᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -2074,8 +2074,8 @@ var schemaCmdUnknownWritePtr = &schema.Class{
TypeID: binaryIDCmdUnknownWritePtr,
Name: "CmdUnknownWritePtr",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "P", Type: &schema.Struct{Name: "Intᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "P", Type: &schema.Struct{Name: "Intᵖ"}},
},
}
@@ -2132,8 +2132,8 @@ var schemaCmdUnknownWriteSlice = &schema.Class{
TypeID: binaryIDCmdUnknownWriteSlice,
Name: "CmdUnknownWriteSlice",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "Intᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "Intᵖ"}},
},
}
@@ -2179,7 +2179,7 @@ var schemaCmdVoid = &schema.Class{
TypeID: binaryIDCmdVoid,
Name: "CmdVoid",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
},
}
@@ -2238,8 +2238,8 @@ var schemaU32ᵖ = &schema.Class{
TypeID: binaryIDU32ᵖ,
Name: "U32ᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -2312,10 +2312,10 @@ var schemaCmdVoid3InArrays = &schema.Class{
TypeID: binaryIDCmdVoid3InArrays,
Name: "CmdVoid3InArrays",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "U8ᵖ"}},
- schema.Field{Declared: "B", Type: &schema.Struct{Name: "U32ᵖ"}},
- schema.Field{Declared: "C", Type: &schema.Struct{Name: "Intᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "U8ᵖ"}},
+ {Declared: "B", Type: &schema.Struct{Name: "U32ᵖ"}},
+ {Declared: "C", Type: &schema.Struct{Name: "Intᵖ"}},
},
}
@@ -2394,10 +2394,10 @@ var schemaCmdVoid3Remapped = &schema.Class{
TypeID: binaryIDCmdVoid3Remapped,
Name: "CmdVoid3Remapped",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Primitive{Name: "remapped", Method: schema.Uint32}},
- schema.Field{Declared: "B", Type: &schema.Primitive{Name: "remapped", Method: schema.Uint32}},
- schema.Field{Declared: "C", Type: &schema.Primitive{Name: "remapped", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Primitive{Name: "remapped", Method: schema.Uint32}},
+ {Declared: "B", Type: &schema.Primitive{Name: "remapped", Method: schema.Uint32}},
+ {Declared: "C", Type: &schema.Primitive{Name: "remapped", Method: schema.Uint32}},
},
}
@@ -2476,10 +2476,10 @@ var schemaCmdVoid3Strings = &schema.Class{
TypeID: binaryIDCmdVoid3Strings,
Name: "CmdVoid3Strings",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "B", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "C", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "B", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "C", Type: &schema.Primitive{Name: "string", Method: schema.String}},
},
}
@@ -2536,8 +2536,8 @@ var schemaCmdVoidBool = &schema.Class{
TypeID: binaryIDCmdVoidBool,
Name: "CmdVoidBool",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
},
}
@@ -2594,8 +2594,8 @@ var schemaCmdVoidF32 = &schema.Class{
TypeID: binaryIDCmdVoidF32,
Name: "CmdVoidF32",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
},
}
@@ -2652,8 +2652,8 @@ var schemaCmdVoidF64 = &schema.Class{
TypeID: binaryIDCmdVoidF64,
Name: "CmdVoidF64",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Primitive{Name: "float64", Method: schema.Float64}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Primitive{Name: "float64", Method: schema.Float64}},
},
}
@@ -2723,9 +2723,9 @@ var schemaCmdVoidInArrayOfPointers = &schema.Class{
TypeID: binaryIDCmdVoidInArrayOfPointers,
Name: "CmdVoidInArrayOfPointers",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "Charᵖᵖ"}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "Charᵖᵖ"}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -2784,8 +2784,8 @@ var schemaRemappedᵖ = &schema.Class{
TypeID: binaryIDRemappedᵖ,
Name: "Remappedᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -2844,8 +2844,8 @@ var schemaCmdVoidInArrayOfRemapped = &schema.Class{
TypeID: binaryIDCmdVoidInArrayOfRemapped,
Name: "CmdVoidInArrayOfRemapped",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "Remappedᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "Remappedᵖ"}},
},
}
@@ -2904,8 +2904,8 @@ var schemaCmdVoidOutArrayOfRemapped = &schema.Class{
TypeID: binaryIDCmdVoidOutArrayOfRemapped,
Name: "CmdVoidOutArrayOfRemapped",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "Remappedᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "Remappedᵖ"}},
},
}
@@ -2968,8 +2968,8 @@ var schemaCmdVoidOutArrayOfUnknownRemapped = &schema.Class{
TypeID: binaryIDCmdVoidOutArrayOfUnknownRemapped,
Name: "CmdVoidOutArrayOfUnknownRemapped",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "Remappedᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "Remappedᵖ"}},
},
}
@@ -3024,8 +3024,8 @@ var schemaCmdVoidReadBool = &schema.Class{
TypeID: binaryIDCmdVoidReadBool,
Name: "CmdVoidReadBool",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "Boolᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "Boolᵖ"}},
},
}
@@ -3084,8 +3084,8 @@ var schemaF32ᵖ = &schema.Class{
TypeID: binaryIDF32ᵖ,
Name: "F32ᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -3140,8 +3140,8 @@ var schemaCmdVoidReadF32 = &schema.Class{
TypeID: binaryIDCmdVoidReadF32,
Name: "CmdVoidReadF32",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "F32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "F32ᵖ"}},
},
}
@@ -3200,8 +3200,8 @@ var schemaF64ᵖ = &schema.Class{
TypeID: binaryIDF64ᵖ,
Name: "F64ᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -3256,8 +3256,8 @@ var schemaCmdVoidReadF64 = &schema.Class{
TypeID: binaryIDCmdVoidReadF64,
Name: "CmdVoidReadF64",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "F64ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "F64ᵖ"}},
},
}
@@ -3316,8 +3316,8 @@ var schemaU16ᵖ = &schema.Class{
TypeID: binaryIDU16ᵖ,
Name: "U16ᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -3390,10 +3390,10 @@ var schemaCmdVoidReadPtrs = &schema.Class{
TypeID: binaryIDCmdVoidReadPtrs,
Name: "CmdVoidReadPtrs",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "F32ᵖ"}},
- schema.Field{Declared: "B", Type: &schema.Struct{Name: "U16ᵖ"}},
- schema.Field{Declared: "C", Type: &schema.Struct{Name: "Boolᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "F32ᵖ"}},
+ {Declared: "B", Type: &schema.Struct{Name: "U16ᵖ"}},
+ {Declared: "C", Type: &schema.Struct{Name: "Boolᵖ"}},
},
}
@@ -3452,8 +3452,8 @@ var schemaS16ᵖ = &schema.Class{
TypeID: binaryIDS16ᵖ,
Name: "S16ᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -3508,8 +3508,8 @@ var schemaCmdVoidReadS16 = &schema.Class{
TypeID: binaryIDCmdVoidReadS16,
Name: "CmdVoidReadS16",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "S16ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "S16ᵖ"}},
},
}
@@ -3568,8 +3568,8 @@ var schemaS32ᵖ = &schema.Class{
TypeID: binaryIDS32ᵖ,
Name: "S32ᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -3624,8 +3624,8 @@ var schemaCmdVoidReadS32 = &schema.Class{
TypeID: binaryIDCmdVoidReadS32,
Name: "CmdVoidReadS32",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "S32ᵖ"}},
},
}
@@ -3684,8 +3684,8 @@ var schemaS64ᵖ = &schema.Class{
TypeID: binaryIDS64ᵖ,
Name: "S64ᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -3740,8 +3740,8 @@ var schemaCmdVoidReadS64 = &schema.Class{
TypeID: binaryIDCmdVoidReadS64,
Name: "CmdVoidReadS64",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "S64ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "S64ᵖ"}},
},
}
@@ -3800,8 +3800,8 @@ var schemaS8ᵖ = &schema.Class{
TypeID: binaryIDS8ᵖ,
Name: "S8ᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -3856,8 +3856,8 @@ var schemaCmdVoidReadS8 = &schema.Class{
TypeID: binaryIDCmdVoidReadS8,
Name: "CmdVoidReadS8",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "S8ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "S8ᵖ"}},
},
}
@@ -3912,8 +3912,8 @@ var schemaCmdVoidReadU16 = &schema.Class{
TypeID: binaryIDCmdVoidReadU16,
Name: "CmdVoidReadU16",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "U16ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "U16ᵖ"}},
},
}
@@ -3968,8 +3968,8 @@ var schemaCmdVoidReadU32 = &schema.Class{
TypeID: binaryIDCmdVoidReadU32,
Name: "CmdVoidReadU32",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "U32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "U32ᵖ"}},
},
}
@@ -4028,8 +4028,8 @@ var schemaU64ᵖ = &schema.Class{
TypeID: binaryIDU64ᵖ,
Name: "U64ᵖ",
Fields: []schema.Field{
- schema.Field{Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Address", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -4084,8 +4084,8 @@ var schemaCmdVoidReadU64 = &schema.Class{
TypeID: binaryIDCmdVoidReadU64,
Name: "CmdVoidReadU64",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "U64ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "U64ᵖ"}},
},
}
@@ -4140,8 +4140,8 @@ var schemaCmdVoidReadU8 = &schema.Class{
TypeID: binaryIDCmdVoidReadU8,
Name: "CmdVoidReadU8",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "U8ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "U8ᵖ"}},
},
}
@@ -4198,8 +4198,8 @@ var schemaCmdVoidS16 = &schema.Class{
TypeID: binaryIDCmdVoidS16,
Name: "CmdVoidS16",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Primitive{Name: "int16", Method: schema.Int16}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Primitive{Name: "int16", Method: schema.Int16}},
},
}
@@ -4256,8 +4256,8 @@ var schemaCmdVoidS32 = &schema.Class{
TypeID: binaryIDCmdVoidS32,
Name: "CmdVoidS32",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Primitive{Name: "int32", Method: schema.Int32}},
},
}
@@ -4314,8 +4314,8 @@ var schemaCmdVoidS64 = &schema.Class{
TypeID: binaryIDCmdVoidS64,
Name: "CmdVoidS64",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Primitive{Name: "int64", Method: schema.Int64}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Primitive{Name: "int64", Method: schema.Int64}},
},
}
@@ -4372,8 +4372,8 @@ var schemaCmdVoidS8 = &schema.Class{
TypeID: binaryIDCmdVoidS8,
Name: "CmdVoidS8",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Primitive{Name: "int8", Method: schema.Int8}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Primitive{Name: "int8", Method: schema.Int8}},
},
}
@@ -4430,8 +4430,8 @@ var schemaCmdVoidString = &schema.Class{
TypeID: binaryIDCmdVoidString,
Name: "CmdVoidString",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Primitive{Name: "string", Method: schema.String}},
},
}
@@ -4488,8 +4488,8 @@ var schemaCmdVoidU16 = &schema.Class{
TypeID: binaryIDCmdVoidU16,
Name: "CmdVoidU16",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Primitive{Name: "uint16", Method: schema.Uint16}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Primitive{Name: "uint16", Method: schema.Uint16}},
},
}
@@ -4546,8 +4546,8 @@ var schemaCmdVoidU32 = &schema.Class{
TypeID: binaryIDCmdVoidU32,
Name: "CmdVoidU32",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
},
}
@@ -4604,8 +4604,8 @@ var schemaCmdVoidU64 = &schema.Class{
TypeID: binaryIDCmdVoidU64,
Name: "CmdVoidU64",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
},
}
@@ -4662,8 +4662,8 @@ var schemaCmdVoidU8 = &schema.Class{
TypeID: binaryIDCmdVoidU8,
Name: "CmdVoidU8",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Primitive{Name: "uint8", Method: schema.Uint8}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Primitive{Name: "uint8", Method: schema.Uint8}},
},
}
@@ -4718,8 +4718,8 @@ var schemaCmdVoidWriteBool = &schema.Class{
TypeID: binaryIDCmdVoidWriteBool,
Name: "CmdVoidWriteBool",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "Boolᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "Boolᵖ"}},
},
}
@@ -4774,8 +4774,8 @@ var schemaCmdVoidWriteF32 = &schema.Class{
TypeID: binaryIDCmdVoidWriteF32,
Name: "CmdVoidWriteF32",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "F32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "F32ᵖ"}},
},
}
@@ -4830,8 +4830,8 @@ var schemaCmdVoidWriteF64 = &schema.Class{
TypeID: binaryIDCmdVoidWriteF64,
Name: "CmdVoidWriteF64",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "F64ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "F64ᵖ"}},
},
}
@@ -4904,10 +4904,10 @@ var schemaCmdVoidWritePtrs = &schema.Class{
TypeID: binaryIDCmdVoidWritePtrs,
Name: "CmdVoidWritePtrs",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "F32ᵖ"}},
- schema.Field{Declared: "B", Type: &schema.Struct{Name: "U16ᵖ"}},
- schema.Field{Declared: "C", Type: &schema.Struct{Name: "Boolᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "F32ᵖ"}},
+ {Declared: "B", Type: &schema.Struct{Name: "U16ᵖ"}},
+ {Declared: "C", Type: &schema.Struct{Name: "Boolᵖ"}},
},
}
@@ -4962,8 +4962,8 @@ var schemaCmdVoidWriteS16 = &schema.Class{
TypeID: binaryIDCmdVoidWriteS16,
Name: "CmdVoidWriteS16",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "S16ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "S16ᵖ"}},
},
}
@@ -5018,8 +5018,8 @@ var schemaCmdVoidWriteS32 = &schema.Class{
TypeID: binaryIDCmdVoidWriteS32,
Name: "CmdVoidWriteS32",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "S32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "S32ᵖ"}},
},
}
@@ -5074,8 +5074,8 @@ var schemaCmdVoidWriteS64 = &schema.Class{
TypeID: binaryIDCmdVoidWriteS64,
Name: "CmdVoidWriteS64",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "S64ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "S64ᵖ"}},
},
}
@@ -5130,8 +5130,8 @@ var schemaCmdVoidWriteS8 = &schema.Class{
TypeID: binaryIDCmdVoidWriteS8,
Name: "CmdVoidWriteS8",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "S8ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "S8ᵖ"}},
},
}
@@ -5186,8 +5186,8 @@ var schemaCmdVoidWriteU16 = &schema.Class{
TypeID: binaryIDCmdVoidWriteU16,
Name: "CmdVoidWriteU16",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "U16ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "U16ᵖ"}},
},
}
@@ -5242,8 +5242,8 @@ var schemaCmdVoidWriteU32 = &schema.Class{
TypeID: binaryIDCmdVoidWriteU32,
Name: "CmdVoidWriteU32",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "U32ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "U32ᵖ"}},
},
}
@@ -5298,8 +5298,8 @@ var schemaCmdVoidWriteU64 = &schema.Class{
TypeID: binaryIDCmdVoidWriteU64,
Name: "CmdVoidWriteU64",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "U64ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "U64ᵖ"}},
},
}
@@ -5354,8 +5354,8 @@ var schemaCmdVoidWriteU8 = &schema.Class{
TypeID: binaryIDCmdVoidWriteU8,
Name: "CmdVoidWriteU8",
Fields: []schema.Field{
- schema.Field{Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "U8ᵖ"}},
+ {Declared: "observations", Type: &schema.Struct{Name: "atom.Observations"}},
+ {Declared: "A", Type: &schema.Struct{Name: "U8ᵖ"}},
},
}
@@ -5436,10 +5436,10 @@ var schemaF32ˢ = &schema.Class{
TypeID: binaryIDF32ˢ,
Name: "F32ˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -5520,10 +5520,10 @@ var schemaF64ˢ = &schema.Class{
TypeID: binaryIDF64ˢ,
Name: "F64ˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -5604,10 +5604,10 @@ var schemaU8ˢ = &schema.Class{
TypeID: binaryIDU8ˢ,
Name: "U8ˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -5664,8 +5664,8 @@ var schemaGlobals = &schema.Class{
TypeID: binaryIDGlobals,
Name: "Globals",
Fields: []schema.Field{
- schema.Field{Declared: "Buf", Type: &schema.Struct{Name: "U8ˢ"}},
- schema.Field{Declared: "Str", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Buf", Type: &schema.Struct{Name: "U8ˢ"}},
+ {Declared: "Str", Type: &schema.Primitive{Name: "string", Method: schema.String}},
},
}
@@ -5713,7 +5713,7 @@ var schemaImported = &schema.Class{
TypeID: binaryIDImported,
Name: "Imported",
Fields: []schema.Field{
- schema.Field{Declared: "Value", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "Value", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
},
}
@@ -5772,8 +5772,8 @@ var schemaIncluded = &schema.Class{
TypeID: binaryIDIncluded,
Name: "Included",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "S", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "S", Type: &schema.Primitive{Name: "string", Method: schema.String}},
},
}
@@ -5854,10 +5854,10 @@ var schemaIntˢ = &schema.Class{
TypeID: binaryIDIntˢ,
Name: "Intˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -5938,10 +5938,10 @@ var schemaRemappedˢ = &schema.Class{
TypeID: binaryIDRemappedˢ,
Name: "Remappedˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -6022,10 +6022,10 @@ var schemaS16ˢ = &schema.Class{
TypeID: binaryIDS16ˢ,
Name: "S16ˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -6106,10 +6106,10 @@ var schemaS32ˢ = &schema.Class{
TypeID: binaryIDS32ˢ,
Name: "S32ˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -6190,10 +6190,10 @@ var schemaS64ˢ = &schema.Class{
TypeID: binaryIDS64ˢ,
Name: "S64ˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -6274,10 +6274,10 @@ var schemaS8ˢ = &schema.Class{
TypeID: binaryIDS8ˢ,
Name: "S8ˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -6343,9 +6343,9 @@ var schemaTester = &schema.Class{
TypeID: binaryIDTester,
Name: "Tester",
Fields: []schema.Field{
- schema.Field{Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
- schema.Field{Declared: "A", Type: &schema.Struct{Name: "Imported"}},
- schema.Field{Declared: "B", Type: &schema.Struct{Name: "Included"}},
+ {Declared: "CreatedAt", Type: &schema.Primitive{Name: "atom.ID", Method: schema.Uint64}},
+ {Declared: "A", Type: &schema.Struct{Name: "Imported"}},
+ {Declared: "B", Type: &schema.Struct{Name: "Included"}},
},
}
@@ -6426,10 +6426,10 @@ var schemaU16ˢ = &schema.Class{
TypeID: binaryIDU16ˢ,
Name: "U16ˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -6510,10 +6510,10 @@ var schemaU32ˢ = &schema.Class{
TypeID: binaryIDU32ˢ,
Name: "U32ˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -6594,10 +6594,10 @@ var schemaU64ˢ = &schema.Class{
TypeID: binaryIDU64ˢ,
Name: "U64ˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
@@ -6678,9 +6678,9 @@ var schemaVoidˢ = &schema.Class{
TypeID: binaryIDVoidˢ,
Name: "Voidˢ",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
+ {Declared: "Root", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "memory.Pointer", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Pool", Type: &schema.Primitive{Name: "memory.PoolID", Method: schema.Uint32}},
},
}
diff --git a/log/log_binary.go b/log/log_binary.go
index 5fe07751e..16f63622b 100644
--- a/log/log_binary.go
+++ b/log/log_binary.go
@@ -7,11 +7,6 @@ package log
import "fmt"
-func init() {
-}
-
-var ()
-
const _Kind_name = "InfoWarningError"
var _Kind_map = map[Kind]string{
diff --git a/memory/memory_binary.go b/memory/memory_binary.go
index e3b774b13..d6ea758b2 100644
--- a/memory/memory_binary.go
+++ b/memory/memory_binary.go
@@ -76,8 +76,8 @@ var schemaRange = &schema.Class{
TypeID: binaryIDRange,
Name: "Range",
Fields: []schema.Field{
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "Pointer", Method: schema.Uint64}},
- schema.Field{Declared: "Size", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "Pointer", Method: schema.Uint64}},
+ {Declared: "Size", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
},
}
diff --git a/multiplexer/multiplexer_binary.go b/multiplexer/multiplexer_binary.go
index 8d369da2b..bbd6e5329 100644
--- a/multiplexer/multiplexer_binary.go
+++ b/multiplexer/multiplexer_binary.go
@@ -67,7 +67,7 @@ var schemamsgCloseChannel = &schema.Class{
TypeID: binaryIDmsgCloseChannel,
Name: "msgCloseChannel",
Fields: []schema.Field{
- schema.Field{Declared: "channelId", Type: &schema.Primitive{Name: "channelId", Method: schema.Uint32}},
+ {Declared: "channelId", Type: &schema.Primitive{Name: "channelId", Method: schema.Uint32}},
},
}
@@ -136,8 +136,8 @@ var schemamsgData = &schema.Class{
TypeID: binaryIDmsgData,
Name: "msgData",
Fields: []schema.Field{
- schema.Field{Declared: "c", Type: &schema.Primitive{Name: "channelId", Method: schema.Uint32}},
- schema.Field{Declared: "d", Type: &schema.Slice{Alias: "", ValueType: &schema.Primitive{Name: "byte", Method: schema.Uint8}}},
+ {Declared: "c", Type: &schema.Primitive{Name: "channelId", Method: schema.Uint32}},
+ {Declared: "d", Type: &schema.Slice{Alias: "", ValueType: &schema.Primitive{Name: "byte", Method: schema.Uint8}}},
},
}
@@ -185,6 +185,6 @@ var schemamsgOpenChannel = &schema.Class{
TypeID: binaryIDmsgOpenChannel,
Name: "msgOpenChannel",
Fields: []schema.Field{
- schema.Field{Declared: "channelId", Type: &schema.Primitive{Name: "channelId", Method: schema.Uint32}},
+ {Declared: "channelId", Type: &schema.Primitive{Name: "channelId", Method: schema.Uint32}},
},
}
diff --git a/parse/parse_binary.go b/parse/parse_binary.go
index a5b9c442b..7be99008c 100644
--- a/parse/parse_binary.go
+++ b/parse/parse_binary.go
@@ -7,11 +7,6 @@ package parse
import "fmt"
-func init() {
-}
-
-var ()
-
const _NumberKind_name = "NotNumericDecimalOctalHexadecimalFloatingScientific"
var _NumberKind_map = map[NumberKind]string{
diff --git a/replay/protocol/protocol_binary.go b/replay/protocol/protocol_binary.go
index e93fba34f..8df330daa 100644
--- a/replay/protocol/protocol_binary.go
+++ b/replay/protocol/protocol_binary.go
@@ -78,8 +78,8 @@ var schemaResourceInfo = &schema.Class{
TypeID: binaryIDResourceInfo,
Name: "ResourceInfo",
Fields: []schema.Field{
- schema.Field{Declared: "ID", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "Size", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "ID", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Size", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
},
}
@@ -207,11 +207,11 @@ var schemaPayload = &schema.Class{
TypeID: binaryIDPayload,
Name: "Payload",
Fields: []schema.Field{
- schema.Field{Declared: "StackSize", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "VolatileMemorySize", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "Constants", Type: &schema.Slice{Alias: "", ValueType: &schema.Primitive{Name: "byte", Method: schema.Uint8}}},
- schema.Field{Declared: "Resources", Type: &schema.Slice{Alias: "", ValueType: &schema.Struct{Name: "ResourceInfo"}}},
- schema.Field{Declared: "Opcodes", Type: &schema.Slice{Alias: "", ValueType: &schema.Primitive{Name: "byte", Method: schema.Uint8}}},
+ {Declared: "StackSize", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "VolatileMemorySize", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "Constants", Type: &schema.Slice{Alias: "", ValueType: &schema.Primitive{Name: "byte", Method: schema.Uint8}}},
+ {Declared: "Resources", Type: &schema.Slice{Alias: "", ValueType: &schema.Struct{Name: "ResourceInfo"}}},
+ {Declared: "Opcodes", Type: &schema.Slice{Alias: "", ValueType: &schema.Primitive{Name: "byte", Method: schema.Uint8}}},
},
}
diff --git a/rpc/rpc_binary.go b/rpc/rpc_binary.go
index 77714ce20..e49b00028 100644
--- a/rpc/rpc_binary.go
+++ b/rpc/rpc_binary.go
@@ -63,6 +63,6 @@ var schemaError = &schema.Class{
TypeID: binaryIDError,
Name: "Error",
Fields: []schema.Field{
- schema.Field{Declared: "message", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "message", Type: &schema.Primitive{Name: "string", Method: schema.String}},
},
}
diff --git a/rpc/rpc_binary_test.go b/rpc/rpc_binary_test.go
index 16bce2f2c..654e321dc 100644
--- a/rpc/rpc_binary_test.go
+++ b/rpc/rpc_binary_test.go
@@ -67,7 +67,7 @@ var schemadelay = &schema.Class{
TypeID: binaryIDdelay,
Name: "delay",
Fields: []schema.Field{
- schema.Field{Declared: "data", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "data", Type: &schema.Primitive{Name: "string", Method: schema.String}},
},
}
@@ -115,7 +115,7 @@ var schemarequest = &schema.Class{
TypeID: binaryIDrequest,
Name: "request",
Fields: []schema.Field{
- schema.Field{Declared: "data", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "data", Type: &schema.Primitive{Name: "string", Method: schema.String}},
},
}
@@ -163,6 +163,6 @@ var schemaresponse = &schema.Class{
TypeID: binaryIDresponse,
Name: "response",
Fields: []schema.Field{
- schema.Field{Declared: "data", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "data", Type: &schema.Primitive{Name: "string", Method: schema.String}},
},
}
diff --git a/rpc/test/test_binary.go b/rpc/test/test_binary.go
index 8b61c25f1..bff6ed4db 100644
--- a/rpc/test/test_binary.go
+++ b/rpc/test/test_binary.go
@@ -132,8 +132,8 @@ var schemaDerived = &schema.Class{
TypeID: binaryIDDerived,
Name: "Derived",
Fields: []schema.Field{
- schema.Field{Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "Enum", Type: &schema.Primitive{Name: "Enum", Method: schema.Int32}},
+ {Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Enum", Type: &schema.Primitive{Name: "Enum", Method: schema.Int32}},
},
}
@@ -198,8 +198,8 @@ var schemaListNode = &schema.Class{
TypeID: binaryIDListNode,
Name: "ListNode",
Fields: []schema.Field{
- schema.Field{Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "Next", Type: &schema.Pointer{Type: &schema.Struct{Name: "ListNode"}}},
+ {Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Next", Type: &schema.Pointer{Type: &schema.Struct{Name: "ListNode"}}},
},
}
@@ -269,9 +269,9 @@ var schemaResource = &schema.Class{
TypeID: binaryIDResource,
Name: "Resource",
Fields: []schema.Field{
- schema.Field{Declared: "Int", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "Float", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
- schema.Field{Declared: "String", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Int", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "Float", Type: &schema.Primitive{Name: "float32", Method: schema.Float32}},
+ {Declared: "String", Type: &schema.Primitive{Name: "string", Method: schema.String}},
},
}
@@ -319,7 +319,7 @@ var schemaResourceId = &schema.Class{
TypeID: binaryIDResourceId,
Name: "ResourceId",
Fields: []schema.Field{
- schema.Field{Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
+ {Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
},
}
@@ -389,9 +389,9 @@ var schemaStruct = &schema.Class{
TypeID: binaryIDStruct,
Name: "Struct",
Fields: []schema.Field{
- schema.Field{Declared: "String", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "U32", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "Enum", Type: &schema.Primitive{Name: "Enum", Method: schema.Int32}},
+ {Declared: "String", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "U32", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "Enum", Type: &schema.Primitive{Name: "Enum", Method: schema.Int32}},
},
}
@@ -450,8 +450,8 @@ var schemacallAdd = &schema.Class{
TypeID: binaryIDcallAdd,
Name: "callAdd",
Fields: []schema.Field{
- schema.Field{Declared: "a", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "b", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "a", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "b", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
},
}
@@ -499,7 +499,7 @@ var schemacallEnumToString = &schema.Class{
TypeID: binaryIDcallEnumToString,
Name: "callEnumToString",
Fields: []schema.Field{
- schema.Field{Declared: "e", Type: &schema.Primitive{Name: "Enum", Method: schema.Int32}},
+ {Declared: "e", Type: &schema.Primitive{Name: "Enum", Method: schema.Int32}},
},
}
@@ -800,7 +800,7 @@ var schemacallResolveResource = &schema.Class{
TypeID: binaryIDcallResolveResource,
Name: "callResolveResource",
Fields: []schema.Field{
- schema.Field{Declared: "r", Type: &schema.Struct{Name: "ResourceId"}},
+ {Declared: "r", Type: &schema.Struct{Name: "ResourceId"}},
},
}
@@ -846,7 +846,7 @@ var schemacallSetStruct = &schema.Class{
TypeID: binaryIDcallSetStruct,
Name: "callSetStruct",
Fields: []schema.Field{
- schema.Field{Declared: "s", Type: &schema.Struct{Name: "Struct"}},
+ {Declared: "s", Type: &schema.Struct{Name: "Struct"}},
},
}
@@ -892,7 +892,7 @@ var schemacallUseResource = &schema.Class{
TypeID: binaryIDcallUseResource,
Name: "callUseResource",
Fields: []schema.Field{
- schema.Field{Declared: "r", Type: &schema.Struct{Name: "ResourceId"}},
+ {Declared: "r", Type: &schema.Struct{Name: "ResourceId"}},
},
}
@@ -940,7 +940,7 @@ var schemaresultAdd = &schema.Class{
TypeID: binaryIDresultAdd,
Name: "resultAdd",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "value", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
},
}
@@ -988,7 +988,7 @@ var schemaresultEnumToString = &schema.Class{
TypeID: binaryIDresultEnumToString,
Name: "resultEnumToString",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "value", Type: &schema.Primitive{Name: "string", Method: schema.String}},
},
}
@@ -1042,7 +1042,7 @@ var schemaresultGetBase = &schema.Class{
TypeID: binaryIDresultGetBase,
Name: "resultGetBase",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Interface{Name: "Base"}},
+ {Declared: "value", Type: &schema.Interface{Name: "Base"}},
},
}
@@ -1096,7 +1096,7 @@ var schemaresultGetDerived = &schema.Class{
TypeID: binaryIDresultGetDerived,
Name: "resultGetDerived",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Interface{Name: "Base"}},
+ {Declared: "value", Type: &schema.Interface{Name: "Base"}},
},
}
@@ -1152,7 +1152,7 @@ var schemaresultGetListNodeChain = &schema.Class{
TypeID: binaryIDresultGetListNodeChain,
Name: "resultGetListNodeChain",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Pointer{Type: &schema.Struct{Name: "ListNode"}}},
+ {Declared: "value", Type: &schema.Pointer{Type: &schema.Struct{Name: "ListNode"}}},
},
}
@@ -1232,7 +1232,7 @@ var schemaresultGetListNodeChainArray = &schema.Class{
TypeID: binaryIDresultGetListNodeChainArray,
Name: "resultGetListNodeChainArray",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Slice{Alias: "ListNodePtrArray", ValueType: &schema.Pointer{Type: &schema.Struct{Name: "ListNode"}}}},
+ {Declared: "value", Type: &schema.Slice{Alias: "ListNodePtrArray", ValueType: &schema.Pointer{Type: &schema.Struct{Name: "ListNode"}}}},
},
}
@@ -1278,7 +1278,7 @@ var schemaresultGetResource = &schema.Class{
TypeID: binaryIDresultGetResource,
Name: "resultGetResource",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Struct{Name: "ResourceId"}},
+ {Declared: "value", Type: &schema.Struct{Name: "ResourceId"}},
},
}
@@ -1336,7 +1336,7 @@ var schemaresultGetSingleListNode = &schema.Class{
TypeID: binaryIDresultGetSingleListNode,
Name: "resultGetSingleListNode",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Pointer{Type: &schema.Struct{Name: "ListNode"}}},
+ {Declared: "value", Type: &schema.Pointer{Type: &schema.Struct{Name: "ListNode"}}},
},
}
@@ -1382,7 +1382,7 @@ var schemaresultGetStruct = &schema.Class{
TypeID: binaryIDresultGetStruct,
Name: "resultGetStruct",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Struct{Name: "Struct"}},
+ {Declared: "value", Type: &schema.Struct{Name: "Struct"}},
},
}
@@ -1430,7 +1430,7 @@ var schemaresultResolveResource = &schema.Class{
TypeID: binaryIDresultResolveResource,
Name: "resultResolveResource",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Struct{Name: "Resource"}},
+ {Declared: "value", Type: &schema.Struct{Name: "Resource"}},
},
}
diff --git a/service/service_binary.go b/service/service_binary.go
index 92b85e0ec..dbe66364f 100644
--- a/service/service_binary.go
+++ b/service/service_binary.go
@@ -217,7 +217,7 @@ var schemaApiId = &schema.Class{
TypeID: binaryIDApiId,
Name: "ApiId",
Fields: []schema.Field{
- schema.Field{Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
+ {Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
},
}
@@ -282,8 +282,8 @@ var schemaFieldInfo = &schema.Class{
TypeID: binaryIDFieldInfo,
Name: "FieldInfo",
Fields: []schema.Field{
- schema.Field{Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "Type", Type: &schema.Interface{Name: "TypeInfo"}},
+ {Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Type", Type: &schema.Interface{Name: "TypeInfo"}},
},
}
@@ -377,9 +377,9 @@ var schemaStructInfo = &schema.Class{
TypeID: binaryIDStructInfo,
Name: "StructInfo",
Fields: []schema.Field{
- schema.Field{Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "Kind", Type: &schema.Primitive{Name: "TypeKind", Method: schema.Int32}},
- schema.Field{Declared: "Fields", Type: &schema.Slice{Alias: "FieldInfoPtrArray", ValueType: &schema.Pointer{Type: &schema.Struct{Name: "FieldInfo"}}}},
+ {Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Kind", Type: &schema.Primitive{Name: "TypeKind", Method: schema.Int32}},
+ {Declared: "Fields", Type: &schema.Slice{Alias: "FieldInfoPtrArray", ValueType: &schema.Pointer{Type: &schema.Struct{Name: "FieldInfo"}}}},
},
}
@@ -434,8 +434,8 @@ var schemaApiSchema = &schema.Class{
TypeID: binaryIDApiSchema,
Name: "ApiSchema",
Fields: []schema.Field{
- schema.Field{Declared: "Api", Type: &schema.Struct{Name: "ApiId"}},
- schema.Field{Declared: "State", Type: &schema.Struct{Name: "StructInfo"}},
+ {Declared: "Api", Type: &schema.Struct{Name: "ApiId"}},
+ {Declared: "State", Type: &schema.Struct{Name: "StructInfo"}},
},
}
@@ -511,9 +511,9 @@ var schemaArrayInfo = &schema.Class{
TypeID: binaryIDArrayInfo,
Name: "ArrayInfo",
Fields: []schema.Field{
- schema.Field{Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "Kind", Type: &schema.Primitive{Name: "TypeKind", Method: schema.Int32}},
- schema.Field{Declared: "ElementType", Type: &schema.Interface{Name: "TypeInfo"}},
+ {Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Kind", Type: &schema.Primitive{Name: "TypeKind", Method: schema.Int32}},
+ {Declared: "ElementType", Type: &schema.Interface{Name: "TypeInfo"}},
},
}
@@ -572,8 +572,8 @@ var schemaAtomRange = &schema.Class{
TypeID: binaryIDAtomRange,
Name: "AtomRange",
Fields: []schema.Field{
- schema.Field{Declared: "First", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "First", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Count", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
},
}
@@ -657,9 +657,9 @@ var schemaAtomGroup = &schema.Class{
TypeID: binaryIDAtomGroup,
Name: "AtomGroup",
Fields: []schema.Field{
- schema.Field{Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "Range", Type: &schema.Struct{Name: "AtomRange"}},
- schema.Field{Declared: "SubGroups", Type: &schema.Slice{Alias: "AtomGroupArray", ValueType: &schema.Struct{Name: "AtomGroup"}}},
+ {Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Range", Type: &schema.Struct{Name: "AtomRange"}},
+ {Declared: "SubGroups", Type: &schema.Slice{Alias: "AtomGroupArray", ValueType: &schema.Struct{Name: "AtomGroup"}}},
},
}
@@ -735,9 +735,9 @@ var schemaParameterInfo = &schema.Class{
TypeID: binaryIDParameterInfo,
Name: "ParameterInfo",
Fields: []schema.Field{
- schema.Field{Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "Type", Type: &schema.Interface{Name: "TypeInfo"}},
- schema.Field{Declared: "Out", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Type", Type: &schema.Interface{Name: "TypeInfo"}},
+ {Declared: "Out", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
},
}
@@ -876,14 +876,14 @@ var schemaAtomInfo = &schema.Class{
TypeID: binaryIDAtomInfo,
Name: "AtomInfo",
Fields: []schema.Field{
- schema.Field{Declared: "Api", Type: &schema.Struct{Name: "ApiId"}},
- schema.Field{Declared: "Type", Type: &schema.Primitive{Name: "uint16", Method: schema.Uint16}},
- schema.Field{Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "Parameters", Type: &schema.Slice{Alias: "ParameterInfoArray", ValueType: &schema.Struct{Name: "ParameterInfo"}}},
- schema.Field{Declared: "IsCommand", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
- schema.Field{Declared: "IsDrawCall", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
- schema.Field{Declared: "IsEndOfFrame", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
- schema.Field{Declared: "DocumentationUrl", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Api", Type: &schema.Struct{Name: "ApiId"}},
+ {Declared: "Type", Type: &schema.Primitive{Name: "uint16", Method: schema.Uint16}},
+ {Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Parameters", Type: &schema.Slice{Alias: "ParameterInfoArray", ValueType: &schema.Struct{Name: "ParameterInfo"}}},
+ {Declared: "IsCommand", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "IsDrawCall", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "IsEndOfFrame", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "DocumentationUrl", Type: &schema.Primitive{Name: "string", Method: schema.String}},
},
}
@@ -953,9 +953,9 @@ var schemaAtomRangeTimer = &schema.Class{
TypeID: binaryIDAtomRangeTimer,
Name: "AtomRangeTimer",
Fields: []schema.Field{
- schema.Field{Declared: "FromAtomId", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "ToAtomId", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Nanoseconds", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "FromAtomId", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "ToAtomId", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Nanoseconds", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
},
}
@@ -1013,7 +1013,7 @@ var schemaAtomStream = &schema.Class{
TypeID: binaryIDAtomStream,
Name: "AtomStream",
Fields: []schema.Field{
- schema.Field{Declared: "Data", Type: &schema.Slice{Alias: "U8Array", ValueType: &schema.Primitive{Name: "uint8", Method: schema.Uint8}}},
+ {Declared: "Data", Type: &schema.Slice{Alias: "U8Array", ValueType: &schema.Primitive{Name: "uint8", Method: schema.Uint8}}},
},
}
@@ -1061,7 +1061,7 @@ var schemaAtomStreamId = &schema.Class{
TypeID: binaryIDAtomStreamId,
Name: "AtomStreamId",
Fields: []schema.Field{
- schema.Field{Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
+ {Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
},
}
@@ -1120,8 +1120,8 @@ var schemaAtomTimer = &schema.Class{
TypeID: binaryIDAtomTimer,
Name: "AtomTimer",
Fields: []schema.Field{
- schema.Field{Declared: "AtomId", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Nanoseconds", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "AtomId", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Nanoseconds", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
},
}
@@ -1179,7 +1179,7 @@ var schemaBinary = &schema.Class{
TypeID: binaryIDBinary,
Name: "Binary",
Fields: []schema.Field{
- schema.Field{Declared: "Data", Type: &schema.Slice{Alias: "U8Array", ValueType: &schema.Primitive{Name: "uint8", Method: schema.Uint8}}},
+ {Declared: "Data", Type: &schema.Slice{Alias: "U8Array", ValueType: &schema.Primitive{Name: "uint8", Method: schema.Uint8}}},
},
}
@@ -1227,7 +1227,7 @@ var schemaBinaryId = &schema.Class{
TypeID: binaryIDBinaryId,
Name: "BinaryId",
Fields: []schema.Field{
- schema.Field{Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
+ {Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
},
}
@@ -1275,7 +1275,7 @@ var schemaSchemaId = &schema.Class{
TypeID: binaryIDSchemaId,
Name: "SchemaId",
Fields: []schema.Field{
- schema.Field{Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
+ {Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
},
}
@@ -1368,10 +1368,10 @@ var schemaCapture = &schema.Class{
TypeID: binaryIDCapture,
Name: "Capture",
Fields: []schema.Field{
- schema.Field{Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "Atoms", Type: &schema.Struct{Name: "AtomStreamId"}},
- schema.Field{Declared: "Apis", Type: &schema.Slice{Alias: "ApiIdArray", ValueType: &schema.Struct{Name: "ApiId"}}},
- schema.Field{Declared: "Schema", Type: &schema.Struct{Name: "SchemaId"}},
+ {Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Atoms", Type: &schema.Struct{Name: "AtomStreamId"}},
+ {Declared: "Apis", Type: &schema.Slice{Alias: "ApiIdArray", ValueType: &schema.Struct{Name: "ApiId"}}},
+ {Declared: "Schema", Type: &schema.Struct{Name: "SchemaId"}},
},
}
@@ -1419,7 +1419,7 @@ var schemaCaptureId = &schema.Class{
TypeID: binaryIDCaptureId,
Name: "CaptureId",
Fields: []schema.Field{
- schema.Field{Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
+ {Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
},
}
@@ -1548,10 +1548,10 @@ var schemaClassInfo = &schema.Class{
TypeID: binaryIDClassInfo,
Name: "ClassInfo",
Fields: []schema.Field{
- schema.Field{Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "Kind", Type: &schema.Primitive{Name: "TypeKind", Method: schema.Int32}},
- schema.Field{Declared: "Fields", Type: &schema.Slice{Alias: "FieldInfoPtrArray", ValueType: &schema.Pointer{Type: &schema.Struct{Name: "FieldInfo"}}}},
- schema.Field{Declared: "Extends", Type: &schema.Slice{Alias: "ClassInfoPtrArray", ValueType: &schema.Pointer{Type: &schema.Struct{Name: "ClassInfo"}}}},
+ {Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Kind", Type: &schema.Primitive{Name: "TypeKind", Method: schema.Int32}},
+ {Declared: "Fields", Type: &schema.Slice{Alias: "FieldInfoPtrArray", ValueType: &schema.Pointer{Type: &schema.Struct{Name: "FieldInfo"}}}},
+ {Declared: "Extends", Type: &schema.Slice{Alias: "ClassInfoPtrArray", ValueType: &schema.Pointer{Type: &schema.Struct{Name: "ClassInfo"}}}},
},
}
@@ -1665,13 +1665,13 @@ var schemaDevice = &schema.Class{
TypeID: binaryIDDevice,
Name: "Device",
Fields: []schema.Field{
- schema.Field{Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "Model", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "OS", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "PointerSize", Type: &schema.Primitive{Name: "uint8", Method: schema.Uint8}},
- schema.Field{Declared: "PointerAlignment", Type: &schema.Primitive{Name: "uint8", Method: schema.Uint8}},
- schema.Field{Declared: "MaxMemorySize", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "RequiresShaderPatching", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Model", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "OS", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "PointerSize", Type: &schema.Primitive{Name: "uint8", Method: schema.Uint8}},
+ {Declared: "PointerAlignment", Type: &schema.Primitive{Name: "uint8", Method: schema.Uint8}},
+ {Declared: "MaxMemorySize", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "RequiresShaderPatching", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
},
}
@@ -1719,7 +1719,7 @@ var schemaDeviceId = &schema.Class{
TypeID: binaryIDDeviceId,
Name: "DeviceId",
Fields: []schema.Field{
- schema.Field{Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
+ {Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
},
}
@@ -1778,8 +1778,8 @@ var schemaEnumEntry = &schema.Class{
TypeID: binaryIDEnumEntry,
Name: "EnumEntry",
Fields: []schema.Field{
- schema.Field{Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "Value", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Value", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
},
}
@@ -1900,10 +1900,10 @@ var schemaEnumInfo = &schema.Class{
TypeID: binaryIDEnumInfo,
Name: "EnumInfo",
Fields: []schema.Field{
- schema.Field{Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "Kind", Type: &schema.Primitive{Name: "TypeKind", Method: schema.Int32}},
- schema.Field{Declared: "Entries", Type: &schema.Slice{Alias: "EnumEntryArray", ValueType: &schema.Struct{Name: "EnumEntry"}}},
- schema.Field{Declared: "Extends", Type: &schema.Slice{Alias: "EnumInfoPtrArray", ValueType: &schema.Pointer{Type: &schema.Struct{Name: "EnumInfo"}}}},
+ {Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Kind", Type: &schema.Primitive{Name: "TypeKind", Method: schema.Int32}},
+ {Declared: "Entries", Type: &schema.Slice{Alias: "EnumEntryArray", ValueType: &schema.Struct{Name: "EnumEntry"}}},
+ {Declared: "Extends", Type: &schema.Slice{Alias: "EnumInfoPtrArray", ValueType: &schema.Pointer{Type: &schema.Struct{Name: "EnumInfo"}}}},
},
}
@@ -1949,7 +1949,7 @@ var schemaHierarchy = &schema.Class{
TypeID: binaryIDHierarchy,
Name: "Hierarchy",
Fields: []schema.Field{
- schema.Field{Declared: "Root", Type: &schema.Struct{Name: "AtomGroup"}},
+ {Declared: "Root", Type: &schema.Struct{Name: "AtomGroup"}},
},
}
@@ -1997,7 +1997,7 @@ var schemaHierarchyId = &schema.Class{
TypeID: binaryIDHierarchyId,
Name: "HierarchyId",
Fields: []schema.Field{
- schema.Field{Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
+ {Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
},
}
@@ -2076,10 +2076,10 @@ var schemaImageInfo = &schema.Class{
TypeID: binaryIDImageInfo,
Name: "ImageInfo",
Fields: []schema.Field{
- schema.Field{Declared: "Format", Type: &schema.Primitive{Name: "ImageFormat", Method: schema.Int32}},
- schema.Field{Declared: "Width", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "Height", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "Data", Type: &schema.Struct{Name: "BinaryId"}},
+ {Declared: "Format", Type: &schema.Primitive{Name: "ImageFormat", Method: schema.Int32}},
+ {Declared: "Width", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "Height", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "Data", Type: &schema.Struct{Name: "BinaryId"}},
},
}
@@ -2127,7 +2127,7 @@ var schemaImageInfoId = &schema.Class{
TypeID: binaryIDImageInfoId,
Name: "ImageInfoId",
Fields: []schema.Field{
- schema.Field{Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
+ {Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
},
}
@@ -2220,10 +2220,10 @@ var schemaMapInfo = &schema.Class{
TypeID: binaryIDMapInfo,
Name: "MapInfo",
Fields: []schema.Field{
- schema.Field{Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "Kind", Type: &schema.Primitive{Name: "TypeKind", Method: schema.Int32}},
- schema.Field{Declared: "KeyType", Type: &schema.Interface{Name: "TypeInfo"}},
- schema.Field{Declared: "ValueType", Type: &schema.Interface{Name: "TypeInfo"}},
+ {Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Kind", Type: &schema.Primitive{Name: "TypeKind", Method: schema.Int32}},
+ {Declared: "KeyType", Type: &schema.Interface{Name: "TypeInfo"}},
+ {Declared: "ValueType", Type: &schema.Interface{Name: "TypeInfo"}},
},
}
@@ -2282,8 +2282,8 @@ var schemaMemoryRange = &schema.Class{
TypeID: binaryIDMemoryRange,
Name: "MemoryRange",
Fields: []schema.Field{
- schema.Field{Declared: "Base", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "Size", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Base", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "Size", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
},
}
@@ -2422,10 +2422,10 @@ var schemaMemoryInfo = &schema.Class{
TypeID: binaryIDMemoryInfo,
Name: "MemoryInfo",
Fields: []schema.Field{
- schema.Field{Declared: "Data", Type: &schema.Slice{Alias: "U8Array", ValueType: &schema.Primitive{Name: "uint8", Method: schema.Uint8}}},
- schema.Field{Declared: "Stale", Type: &schema.Slice{Alias: "MemoryRangeArray", ValueType: &schema.Struct{Name: "MemoryRange"}}},
- schema.Field{Declared: "Current", Type: &schema.Slice{Alias: "MemoryRangeArray", ValueType: &schema.Struct{Name: "MemoryRange"}}},
- schema.Field{Declared: "Unknown", Type: &schema.Slice{Alias: "MemoryRangeArray", ValueType: &schema.Struct{Name: "MemoryRange"}}},
+ {Declared: "Data", Type: &schema.Slice{Alias: "U8Array", ValueType: &schema.Primitive{Name: "uint8", Method: schema.Uint8}}},
+ {Declared: "Stale", Type: &schema.Slice{Alias: "MemoryRangeArray", ValueType: &schema.Struct{Name: "MemoryRange"}}},
+ {Declared: "Current", Type: &schema.Slice{Alias: "MemoryRangeArray", ValueType: &schema.Struct{Name: "MemoryRange"}}},
+ {Declared: "Unknown", Type: &schema.Slice{Alias: "MemoryRangeArray", ValueType: &schema.Struct{Name: "MemoryRange"}}},
},
}
@@ -2473,7 +2473,7 @@ var schemaMemoryInfoId = &schema.Class{
TypeID: binaryIDMemoryInfoId,
Name: "MemoryInfoId",
Fields: []schema.Field{
- schema.Field{Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
+ {Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
},
}
@@ -2543,9 +2543,9 @@ var schemaRenderSettings = &schema.Class{
TypeID: binaryIDRenderSettings,
Name: "RenderSettings",
Fields: []schema.Field{
- schema.Field{Declared: "MaxWidth", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "MaxHeight", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "Wireframe", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
+ {Declared: "MaxWidth", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "MaxHeight", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "Wireframe", Type: &schema.Primitive{Name: "bool", Method: schema.Bool}},
},
}
@@ -2636,8 +2636,8 @@ var schemaSchema = &schema.Class{
TypeID: binaryIDSchema,
Name: "Schema",
Fields: []schema.Field{
- schema.Field{Declared: "Atoms", Type: &schema.Slice{Alias: "AtomInfoArray", ValueType: &schema.Struct{Name: "AtomInfo"}}},
- schema.Field{Declared: "Apis", Type: &schema.Slice{Alias: "ApiSchemaArray", ValueType: &schema.Struct{Name: "ApiSchema"}}},
+ {Declared: "Atoms", Type: &schema.Slice{Alias: "AtomInfoArray", ValueType: &schema.Struct{Name: "AtomInfo"}}},
+ {Declared: "Apis", Type: &schema.Slice{Alias: "ApiSchemaArray", ValueType: &schema.Struct{Name: "ApiSchema"}}},
},
}
@@ -2696,8 +2696,8 @@ var schemaSimpleInfo = &schema.Class{
TypeID: binaryIDSimpleInfo,
Name: "SimpleInfo",
Fields: []schema.Field{
- schema.Field{Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "Kind", Type: &schema.Primitive{Name: "TypeKind", Method: schema.Int32}},
+ {Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Kind", Type: &schema.Primitive{Name: "TypeKind", Method: schema.Int32}},
},
}
@@ -2784,10 +2784,10 @@ var schemaStaticArrayInfo = &schema.Class{
TypeID: binaryIDStaticArrayInfo,
Name: "StaticArrayInfo",
Fields: []schema.Field{
- schema.Field{Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "Kind", Type: &schema.Primitive{Name: "TypeKind", Method: schema.Int32}},
- schema.Field{Declared: "ElementType", Type: &schema.Interface{Name: "TypeInfo"}},
- schema.Field{Declared: "Size", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "Name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Kind", Type: &schema.Primitive{Name: "TypeKind", Method: schema.Int32}},
+ {Declared: "ElementType", Type: &schema.Interface{Name: "TypeInfo"}},
+ {Declared: "Size", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
},
}
@@ -2905,9 +2905,9 @@ var schemaTimingInfo = &schema.Class{
TypeID: binaryIDTimingInfo,
Name: "TimingInfo",
Fields: []schema.Field{
- schema.Field{Declared: "PerCommand", Type: &schema.Slice{Alias: "AtomTimerArray", ValueType: &schema.Struct{Name: "AtomTimer"}}},
- schema.Field{Declared: "PerDrawCall", Type: &schema.Slice{Alias: "AtomRangeTimerArray", ValueType: &schema.Struct{Name: "AtomRangeTimer"}}},
- schema.Field{Declared: "PerFrame", Type: &schema.Slice{Alias: "AtomRangeTimerArray", ValueType: &schema.Struct{Name: "AtomRangeTimer"}}},
+ {Declared: "PerCommand", Type: &schema.Slice{Alias: "AtomTimerArray", ValueType: &schema.Struct{Name: "AtomTimer"}}},
+ {Declared: "PerDrawCall", Type: &schema.Slice{Alias: "AtomRangeTimerArray", ValueType: &schema.Struct{Name: "AtomRangeTimer"}}},
+ {Declared: "PerFrame", Type: &schema.Slice{Alias: "AtomRangeTimerArray", ValueType: &schema.Struct{Name: "AtomRangeTimer"}}},
},
}
@@ -2955,7 +2955,7 @@ var schemaTimingInfoId = &schema.Class{
TypeID: binaryIDTimingInfoId,
Name: "TimingInfoId",
Fields: []schema.Field{
- schema.Field{Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
+ {Declared: "ID", Type: &schema.Primitive{Name: "binary.ID", Method: schema.ID}},
},
}
@@ -3113,11 +3113,11 @@ var schemacallGetFramebufferColor = &schema.Class{
TypeID: binaryIDcallGetFramebufferColor,
Name: "callGetFramebufferColor",
Fields: []schema.Field{
- schema.Field{Declared: "device", Type: &schema.Struct{Name: "DeviceId"}},
- schema.Field{Declared: "capture", Type: &schema.Struct{Name: "CaptureId"}},
- schema.Field{Declared: "api", Type: &schema.Struct{Name: "ApiId"}},
- schema.Field{Declared: "after", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "settings", Type: &schema.Struct{Name: "RenderSettings"}},
+ {Declared: "device", Type: &schema.Struct{Name: "DeviceId"}},
+ {Declared: "capture", Type: &schema.Struct{Name: "CaptureId"}},
+ {Declared: "api", Type: &schema.Struct{Name: "ApiId"}},
+ {Declared: "after", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "settings", Type: &schema.Struct{Name: "RenderSettings"}},
},
}
@@ -3196,10 +3196,10 @@ var schemacallGetFramebufferDepth = &schema.Class{
TypeID: binaryIDcallGetFramebufferDepth,
Name: "callGetFramebufferDepth",
Fields: []schema.Field{
- schema.Field{Declared: "device", Type: &schema.Struct{Name: "DeviceId"}},
- schema.Field{Declared: "capture", Type: &schema.Struct{Name: "CaptureId"}},
- schema.Field{Declared: "api", Type: &schema.Struct{Name: "ApiId"}},
- schema.Field{Declared: "after", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "device", Type: &schema.Struct{Name: "DeviceId"}},
+ {Declared: "capture", Type: &schema.Struct{Name: "CaptureId"}},
+ {Declared: "api", Type: &schema.Struct{Name: "ApiId"}},
+ {Declared: "after", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
},
}
@@ -3245,7 +3245,7 @@ var schemacallGetHierarchy = &schema.Class{
TypeID: binaryIDcallGetHierarchy,
Name: "callGetHierarchy",
Fields: []schema.Field{
- schema.Field{Declared: "capture", Type: &schema.Struct{Name: "CaptureId"}},
+ {Declared: "capture", Type: &schema.Struct{Name: "CaptureId"}},
},
}
@@ -3311,9 +3311,9 @@ var schemacallGetMemoryInfo = &schema.Class{
TypeID: binaryIDcallGetMemoryInfo,
Name: "callGetMemoryInfo",
Fields: []schema.Field{
- schema.Field{Declared: "capture", Type: &schema.Struct{Name: "CaptureId"}},
- schema.Field{Declared: "after", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "rng", Type: &schema.Struct{Name: "MemoryRange"}},
+ {Declared: "capture", Type: &schema.Struct{Name: "CaptureId"}},
+ {Declared: "after", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "rng", Type: &schema.Struct{Name: "MemoryRange"}},
},
}
@@ -3370,8 +3370,8 @@ var schemacallGetState = &schema.Class{
TypeID: binaryIDcallGetState,
Name: "callGetState",
Fields: []schema.Field{
- schema.Field{Declared: "capture", Type: &schema.Struct{Name: "CaptureId"}},
- schema.Field{Declared: "after", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "capture", Type: &schema.Struct{Name: "CaptureId"}},
+ {Declared: "after", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
},
}
@@ -3437,9 +3437,9 @@ var schemacallGetTimingInfo = &schema.Class{
TypeID: binaryIDcallGetTimingInfo,
Name: "callGetTimingInfo",
Fields: []schema.Field{
- schema.Field{Declared: "device", Type: &schema.Struct{Name: "DeviceId"}},
- schema.Field{Declared: "capture", Type: &schema.Struct{Name: "CaptureId"}},
- schema.Field{Declared: "mask", Type: &schema.Primitive{Name: "TimingMask", Method: schema.Int32}},
+ {Declared: "device", Type: &schema.Struct{Name: "DeviceId"}},
+ {Declared: "capture", Type: &schema.Struct{Name: "CaptureId"}},
+ {Declared: "mask", Type: &schema.Primitive{Name: "TimingMask", Method: schema.Int32}},
},
}
@@ -3508,8 +3508,8 @@ var schemacallImport = &schema.Class{
TypeID: binaryIDcallImport,
Name: "callImport",
Fields: []schema.Field{
- schema.Field{Declared: "name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
- schema.Field{Declared: "Data", Type: &schema.Slice{Alias: "U8Array", ValueType: &schema.Primitive{Name: "uint8", Method: schema.Uint8}}},
+ {Declared: "name", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "Data", Type: &schema.Slice{Alias: "U8Array", ValueType: &schema.Primitive{Name: "uint8", Method: schema.Uint8}}},
},
}
@@ -3628,12 +3628,12 @@ var schemacallPrerenderFramebuffers = &schema.Class{
TypeID: binaryIDcallPrerenderFramebuffers,
Name: "callPrerenderFramebuffers",
Fields: []schema.Field{
- schema.Field{Declared: "device", Type: &schema.Struct{Name: "DeviceId"}},
- schema.Field{Declared: "capture", Type: &schema.Struct{Name: "CaptureId"}},
- schema.Field{Declared: "api", Type: &schema.Struct{Name: "ApiId"}},
- schema.Field{Declared: "width", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "height", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
- schema.Field{Declared: "atomIds", Type: &schema.Slice{Alias: "U64Array", ValueType: &schema.Primitive{Name: "uint64", Method: schema.Uint64}}},
+ {Declared: "device", Type: &schema.Struct{Name: "DeviceId"}},
+ {Declared: "capture", Type: &schema.Struct{Name: "CaptureId"}},
+ {Declared: "api", Type: &schema.Struct{Name: "ApiId"}},
+ {Declared: "width", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "height", Type: &schema.Primitive{Name: "uint32", Method: schema.Uint32}},
+ {Declared: "atomIds", Type: &schema.Slice{Alias: "U64Array", ValueType: &schema.Primitive{Name: "uint64", Method: schema.Uint64}}},
},
}
@@ -3710,10 +3710,10 @@ var schemacallReplaceAtom = &schema.Class{
TypeID: binaryIDcallReplaceAtom,
Name: "callReplaceAtom",
Fields: []schema.Field{
- schema.Field{Declared: "capture", Type: &schema.Struct{Name: "CaptureId"}},
- schema.Field{Declared: "atomId", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
- schema.Field{Declared: "atomType", Type: &schema.Primitive{Name: "uint16", Method: schema.Uint16}},
- schema.Field{Declared: "data", Type: &schema.Struct{Name: "Binary"}},
+ {Declared: "capture", Type: &schema.Struct{Name: "CaptureId"}},
+ {Declared: "atomId", Type: &schema.Primitive{Name: "uint64", Method: schema.Uint64}},
+ {Declared: "atomType", Type: &schema.Primitive{Name: "uint16", Method: schema.Uint16}},
+ {Declared: "data", Type: &schema.Struct{Name: "Binary"}},
},
}
@@ -3761,7 +3761,7 @@ var schemacallResolveAtomStream = &schema.Class{
TypeID: binaryIDcallResolveAtomStream,
Name: "callResolveAtomStream",
Fields: []schema.Field{
- schema.Field{Declared: "id", Type: &schema.Struct{Name: "AtomStreamId"}},
+ {Declared: "id", Type: &schema.Struct{Name: "AtomStreamId"}},
},
}
@@ -3807,7 +3807,7 @@ var schemacallResolveBinary = &schema.Class{
TypeID: binaryIDcallResolveBinary,
Name: "callResolveBinary",
Fields: []schema.Field{
- schema.Field{Declared: "id", Type: &schema.Struct{Name: "BinaryId"}},
+ {Declared: "id", Type: &schema.Struct{Name: "BinaryId"}},
},
}
@@ -3853,7 +3853,7 @@ var schemacallResolveCapture = &schema.Class{
TypeID: binaryIDcallResolveCapture,
Name: "callResolveCapture",
Fields: []schema.Field{
- schema.Field{Declared: "id", Type: &schema.Struct{Name: "CaptureId"}},
+ {Declared: "id", Type: &schema.Struct{Name: "CaptureId"}},
},
}
@@ -3899,7 +3899,7 @@ var schemacallResolveDevice = &schema.Class{
TypeID: binaryIDcallResolveDevice,
Name: "callResolveDevice",
Fields: []schema.Field{
- schema.Field{Declared: "id", Type: &schema.Struct{Name: "DeviceId"}},
+ {Declared: "id", Type: &schema.Struct{Name: "DeviceId"}},
},
}
@@ -3947,7 +3947,7 @@ var schemacallResolveHierarchy = &schema.Class{
TypeID: binaryIDcallResolveHierarchy,
Name: "callResolveHierarchy",
Fields: []schema.Field{
- schema.Field{Declared: "id", Type: &schema.Struct{Name: "HierarchyId"}},
+ {Declared: "id", Type: &schema.Struct{Name: "HierarchyId"}},
},
}
@@ -3995,7 +3995,7 @@ var schemacallResolveImageInfo = &schema.Class{
TypeID: binaryIDcallResolveImageInfo,
Name: "callResolveImageInfo",
Fields: []schema.Field{
- schema.Field{Declared: "id", Type: &schema.Struct{Name: "ImageInfoId"}},
+ {Declared: "id", Type: &schema.Struct{Name: "ImageInfoId"}},
},
}
@@ -4043,7 +4043,7 @@ var schemacallResolveMemoryInfo = &schema.Class{
TypeID: binaryIDcallResolveMemoryInfo,
Name: "callResolveMemoryInfo",
Fields: []schema.Field{
- schema.Field{Declared: "id", Type: &schema.Struct{Name: "MemoryInfoId"}},
+ {Declared: "id", Type: &schema.Struct{Name: "MemoryInfoId"}},
},
}
@@ -4089,7 +4089,7 @@ var schemacallResolveSchema = &schema.Class{
TypeID: binaryIDcallResolveSchema,
Name: "callResolveSchema",
Fields: []schema.Field{
- schema.Field{Declared: "id", Type: &schema.Struct{Name: "SchemaId"}},
+ {Declared: "id", Type: &schema.Struct{Name: "SchemaId"}},
},
}
@@ -4137,7 +4137,7 @@ var schemacallResolveTimingInfo = &schema.Class{
TypeID: binaryIDcallResolveTimingInfo,
Name: "callResolveTimingInfo",
Fields: []schema.Field{
- schema.Field{Declared: "id", Type: &schema.Struct{Name: "TimingInfoId"}},
+ {Declared: "id", Type: &schema.Struct{Name: "TimingInfoId"}},
},
}
@@ -4201,7 +4201,7 @@ var schemaresultGetCaptures = &schema.Class{
TypeID: binaryIDresultGetCaptures,
Name: "resultGetCaptures",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Slice{Alias: "CaptureIdArray", ValueType: &schema.Struct{Name: "CaptureId"}}},
+ {Declared: "value", Type: &schema.Slice{Alias: "CaptureIdArray", ValueType: &schema.Struct{Name: "CaptureId"}}},
},
}
@@ -4265,7 +4265,7 @@ var schemaresultGetDevices = &schema.Class{
TypeID: binaryIDresultGetDevices,
Name: "resultGetDevices",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Slice{Alias: "DeviceIdArray", ValueType: &schema.Struct{Name: "DeviceId"}}},
+ {Declared: "value", Type: &schema.Slice{Alias: "DeviceIdArray", ValueType: &schema.Struct{Name: "DeviceId"}}},
},
}
@@ -4315,7 +4315,7 @@ var schemaresultGetFramebufferColor = &schema.Class{
TypeID: binaryIDresultGetFramebufferColor,
Name: "resultGetFramebufferColor",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Struct{Name: "ImageInfoId"}},
+ {Declared: "value", Type: &schema.Struct{Name: "ImageInfoId"}},
},
}
@@ -4365,7 +4365,7 @@ var schemaresultGetFramebufferDepth = &schema.Class{
TypeID: binaryIDresultGetFramebufferDepth,
Name: "resultGetFramebufferDepth",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Struct{Name: "ImageInfoId"}},
+ {Declared: "value", Type: &schema.Struct{Name: "ImageInfoId"}},
},
}
@@ -4411,7 +4411,7 @@ var schemaresultGetHierarchy = &schema.Class{
TypeID: binaryIDresultGetHierarchy,
Name: "resultGetHierarchy",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Struct{Name: "HierarchyId"}},
+ {Declared: "value", Type: &schema.Struct{Name: "HierarchyId"}},
},
}
@@ -4459,7 +4459,7 @@ var schemaresultGetMemoryInfo = &schema.Class{
TypeID: binaryIDresultGetMemoryInfo,
Name: "resultGetMemoryInfo",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Struct{Name: "MemoryInfoId"}},
+ {Declared: "value", Type: &schema.Struct{Name: "MemoryInfoId"}},
},
}
@@ -4505,7 +4505,7 @@ var schemaresultGetState = &schema.Class{
TypeID: binaryIDresultGetState,
Name: "resultGetState",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Struct{Name: "BinaryId"}},
+ {Declared: "value", Type: &schema.Struct{Name: "BinaryId"}},
},
}
@@ -4553,7 +4553,7 @@ var schemaresultGetTimingInfo = &schema.Class{
TypeID: binaryIDresultGetTimingInfo,
Name: "resultGetTimingInfo",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Struct{Name: "TimingInfoId"}},
+ {Declared: "value", Type: &schema.Struct{Name: "TimingInfoId"}},
},
}
@@ -4599,7 +4599,7 @@ var schemaresultImport = &schema.Class{
TypeID: binaryIDresultImport,
Name: "resultImport",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Struct{Name: "CaptureId"}},
+ {Declared: "value", Type: &schema.Struct{Name: "CaptureId"}},
},
}
@@ -4653,7 +4653,7 @@ var schemaresultPrerenderFramebuffers = &schema.Class{
TypeID: binaryIDresultPrerenderFramebuffers,
Name: "resultPrerenderFramebuffers",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Struct{Name: "BinaryId"}},
+ {Declared: "value", Type: &schema.Struct{Name: "BinaryId"}},
},
}
@@ -4699,7 +4699,7 @@ var schemaresultReplaceAtom = &schema.Class{
TypeID: binaryIDresultReplaceAtom,
Name: "resultReplaceAtom",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Struct{Name: "CaptureId"}},
+ {Declared: "value", Type: &schema.Struct{Name: "CaptureId"}},
},
}
@@ -4749,7 +4749,7 @@ var schemaresultResolveAtomStream = &schema.Class{
TypeID: binaryIDresultResolveAtomStream,
Name: "resultResolveAtomStream",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Struct{Name: "AtomStream"}},
+ {Declared: "value", Type: &schema.Struct{Name: "AtomStream"}},
},
}
@@ -4797,7 +4797,7 @@ var schemaresultResolveBinary = &schema.Class{
TypeID: binaryIDresultResolveBinary,
Name: "resultResolveBinary",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Struct{Name: "Binary"}},
+ {Declared: "value", Type: &schema.Struct{Name: "Binary"}},
},
}
@@ -4845,7 +4845,7 @@ var schemaresultResolveCapture = &schema.Class{
TypeID: binaryIDresultResolveCapture,
Name: "resultResolveCapture",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Struct{Name: "Capture"}},
+ {Declared: "value", Type: &schema.Struct{Name: "Capture"}},
},
}
@@ -4893,7 +4893,7 @@ var schemaresultResolveDevice = &schema.Class{
TypeID: binaryIDresultResolveDevice,
Name: "resultResolveDevice",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Struct{Name: "Device"}},
+ {Declared: "value", Type: &schema.Struct{Name: "Device"}},
},
}
@@ -4941,7 +4941,7 @@ var schemaresultResolveHierarchy = &schema.Class{
TypeID: binaryIDresultResolveHierarchy,
Name: "resultResolveHierarchy",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Struct{Name: "Hierarchy"}},
+ {Declared: "value", Type: &schema.Struct{Name: "Hierarchy"}},
},
}
@@ -4989,7 +4989,7 @@ var schemaresultResolveImageInfo = &schema.Class{
TypeID: binaryIDresultResolveImageInfo,
Name: "resultResolveImageInfo",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Struct{Name: "ImageInfo"}},
+ {Declared: "value", Type: &schema.Struct{Name: "ImageInfo"}},
},
}
@@ -5039,7 +5039,7 @@ var schemaresultResolveMemoryInfo = &schema.Class{
TypeID: binaryIDresultResolveMemoryInfo,
Name: "resultResolveMemoryInfo",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Struct{Name: "MemoryInfo"}},
+ {Declared: "value", Type: &schema.Struct{Name: "MemoryInfo"}},
},
}
@@ -5087,7 +5087,7 @@ var schemaresultResolveSchema = &schema.Class{
TypeID: binaryIDresultResolveSchema,
Name: "resultResolveSchema",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Struct{Name: "Schema"}},
+ {Declared: "value", Type: &schema.Struct{Name: "Schema"}},
},
}
@@ -5137,7 +5137,7 @@ var schemaresultResolveTimingInfo = &schema.Class{
TypeID: binaryIDresultResolveTimingInfo,
Name: "resultResolveTimingInfo",
Fields: []schema.Field{
- schema.Field{Declared: "value", Type: &schema.Struct{Name: "TimingInfo"}},
+ {Declared: "value", Type: &schema.Struct{Name: "TimingInfo"}},
},
}