aboutsummaryrefslogtreecommitdiff
path: root/service/README.md
blob: b0da5e7b54c14de127231e2d53ded4856a095119 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
# service
--
    import "android.googlesource.com/platform/tools/gpu/service"

Package service is the definition of the RPC GPU debugger service exposed by the
server.

It is not the actual implementation of the service functionality.

## Usage

#### func  BindServer

```go
func BindServer(r io.Reader, w io.Writer, mtu int, l log.Logger, server RPC)
```

#### type ApiId

```go
type ApiId struct {
	binary.Generate
	ID binary.ID
}
```

Handle ApiId

#### func (*ApiId) Class

```go
func (*ApiId) Class() binary.Class
```

#### func (ApiId) Valid

```go
func (h ApiId) Valid() bool
```

#### type ApiIdArray

```go
type ApiIdArray []ApiId
```

Array ApiIdˢ

#### func (ApiIdArray) Format

```go
func (a ApiIdArray) Format(f fmt.State, c rune)
```

#### type ApiSchema

```go
type ApiSchema struct {
	binary.Generate
	Api   ApiId
	State StructInfo
}
```

Class ApiSchema

#### func  CreateApiSchema

```go
func CreateApiSchema(
	Api ApiId,
	State StructInfo,
) *ApiSchema
```

#### func (*ApiSchema) Class

```go
func (*ApiSchema) Class() binary.Class
```

#### func (*ApiSchema) GetApi

```go
func (c *ApiSchema) GetApi() ApiId
```

#### func (*ApiSchema) GetState

```go
func (c *ApiSchema) GetState() StructInfo
```

#### type ApiSchemaArray

```go
type ApiSchemaArray []ApiSchema
```

Array ApiSchemaˢ

#### func (ApiSchemaArray) Format

```go
func (a ApiSchemaArray) Format(f fmt.State, c rune)
```

#### type ArrayInfo

```go
type ArrayInfo struct {
	binary.Generate
	Name        string
	Kind        TypeKind
	ElementType TypeInfo
}
```

Class ArrayInfo

#### func  CreateArrayInfo

```go
func CreateArrayInfo(
	Name string,
	Kind TypeKind,
	ElementType TypeInfo,
) *ArrayInfo
```

#### func (*ArrayInfo) Class

```go
func (*ArrayInfo) Class() binary.Class
```

#### func (*ArrayInfo) GetElementType

```go
func (c *ArrayInfo) GetElementType() TypeInfo
```

#### func (*ArrayInfo) GetKind

```go
func (c *ArrayInfo) GetKind() TypeKind
```

#### func (*ArrayInfo) GetName

```go
func (c *ArrayInfo) GetName() string
```

#### type AtomGroup

```go
type AtomGroup struct {
	binary.Generate
	Name      string
	Range     AtomRange
	SubGroups AtomGroupArray
}
```

Class AtomGroup

#### func  CreateAtomGroup

```go
func CreateAtomGroup(
	Name string,
	Range AtomRange,
	SubGroups AtomGroupArray,
) *AtomGroup
```

#### func (*AtomGroup) Class

```go
func (*AtomGroup) Class() binary.Class
```

#### func (*AtomGroup) GetName

```go
func (c *AtomGroup) GetName() string
```

#### func (*AtomGroup) GetRange

```go
func (c *AtomGroup) GetRange() AtomRange
```

#### func (*AtomGroup) GetSubGroups

```go
func (c *AtomGroup) GetSubGroups() AtomGroupArray
```

#### func (*AtomGroup) Pack

```go
func (g *AtomGroup) Pack(o atom.Group)
```
Pack packs the atom Group o into the RPC-friendly AtomGroup structure.

#### func (AtomGroup) Unpack

```go
func (g AtomGroup) Unpack(o *atom.Group)
```
Unpack unpacks the RPC-friendly AtomGroup structure into the atom Group o.

#### type AtomGroupArray

```go
type AtomGroupArray []AtomGroup
```

Array AtomGroupˢ

#### func (AtomGroupArray) Format

```go
func (a AtomGroupArray) Format(f fmt.State, c rune)
```

#### type AtomInfo

```go
type AtomInfo struct {
	binary.Generate
	Api              ApiId
	Type             uint16
	Name             string
	Parameters       ParameterInfoArray
	IsCommand        bool
	IsDrawCall       bool
	IsEndOfFrame     bool
	DocumentationUrl string
}
```

Class AtomInfo

#### func  CreateAtomInfo

```go
func CreateAtomInfo(
	Api ApiId,
	Type uint16,
	Name string,
	Parameters ParameterInfoArray,
	IsCommand bool,
	IsDrawCall bool,
	IsEndOfFrame bool,
	DocumentationUrl string,
) *AtomInfo
```

#### func (*AtomInfo) Class

```go
func (*AtomInfo) Class() binary.Class
```

#### func (*AtomInfo) GetApi

```go
func (c *AtomInfo) GetApi() ApiId
```

#### func (*AtomInfo) GetDocumentationUrl

```go
func (c *AtomInfo) GetDocumentationUrl() string
```

#### func (*AtomInfo) GetIsCommand

```go
func (c *AtomInfo) GetIsCommand() bool
```

#### func (*AtomInfo) GetIsDrawCall

```go
func (c *AtomInfo) GetIsDrawCall() bool
```

#### func (*AtomInfo) GetIsEndOfFrame

```go
func (c *AtomInfo) GetIsEndOfFrame() bool
```

#### func (*AtomInfo) GetName

```go
func (c *AtomInfo) GetName() string
```

#### func (*AtomInfo) GetParameters

```go
func (c *AtomInfo) GetParameters() ParameterInfoArray
```

#### func (*AtomInfo) GetType

```go
func (c *AtomInfo) GetType() uint16
```

#### type AtomInfoArray

```go
type AtomInfoArray []AtomInfo
```

Array AtomInfoˢ

#### func (AtomInfoArray) Format

```go
func (a AtomInfoArray) Format(f fmt.State, c rune)
```

#### type AtomRange

```go
type AtomRange struct {
	binary.Generate
	First uint64
	Count uint64
}
```

Class AtomRange

#### func  CreateAtomRange

```go
func CreateAtomRange(
	First uint64,
	Count uint64,
) *AtomRange
```

#### func (*AtomRange) Class

```go
func (*AtomRange) Class() binary.Class
```

#### func (*AtomRange) GetCount

```go
func (c *AtomRange) GetCount() uint64
```

#### func (*AtomRange) GetFirst

```go
func (c *AtomRange) GetFirst() uint64
```

#### func (*AtomRange) Pack

```go
func (r *AtomRange) Pack(o atom.Range)
```
Pack packs the atom Range o into the RPC-friendly AtomRange structure.

#### func (AtomRange) Unpack

```go
func (r AtomRange) Unpack(o *atom.Range)
```
Unpack unpacks the RPC-friendly AtomRange structure into the atom Range o.

#### type AtomRangeTimer

```go
type AtomRangeTimer struct {
	binary.Generate
	FromAtomId  uint64
	ToAtomId    uint64
	Nanoseconds uint64
}
```

Class AtomRangeTimer

#### func  CreateAtomRangeTimer

```go
func CreateAtomRangeTimer(
	FromAtomId uint64,
	ToAtomId uint64,
	Nanoseconds uint64,
) *AtomRangeTimer
```

#### func (*AtomRangeTimer) Class

```go
func (*AtomRangeTimer) Class() binary.Class
```

#### func (*AtomRangeTimer) GetFromAtomId

```go
func (c *AtomRangeTimer) GetFromAtomId() uint64
```

#### func (*AtomRangeTimer) GetNanoseconds

```go
func (c *AtomRangeTimer) GetNanoseconds() uint64
```

#### func (*AtomRangeTimer) GetToAtomId

```go
func (c *AtomRangeTimer) GetToAtomId() uint64
```

#### type AtomRangeTimerArray

```go
type AtomRangeTimerArray []AtomRangeTimer
```

Array AtomRangeTimerˢ

#### func (AtomRangeTimerArray) Format

```go
func (a AtomRangeTimerArray) Format(f fmt.State, c rune)
```

#### type AtomStream

```go
type AtomStream struct {
	binary.Generate
	Data U8Array
}
```

Class AtomStream

#### func  CreateAtomStream

```go
func CreateAtomStream(
	Data U8Array,
) *AtomStream
```

#### func  NewAtomStream

```go
func NewAtomStream(list atom.List) (AtomStream, error)
```
NewAtomStream creates a fully-encoded AtomStream from the atom list.

#### func  ResolveAtomStream

```go
func ResolveAtomStream(id AtomStreamId, d database.Database, l log.Logger) (*AtomStream, error)
```
ResolveAtomStream loads and returns the AtomStream stored in the database d,
using id.

#### func (*AtomStream) Class

```go
func (*AtomStream) Class() binary.Class
```

#### func (*AtomStream) GetData

```go
func (c *AtomStream) GetData() U8Array
```

#### func (AtomStream) List

```go
func (s AtomStream) List() (atom.List, error)
```
List decodes and returns the AtomStream decoded to an atom list.

#### type AtomStreamId

```go
type AtomStreamId struct {
	binary.Generate
	ID binary.ID
}
```

Handle AtomStreamId

#### func  StoreAtomStream

```go
func StoreAtomStream(v *AtomStream, d database.Database, l log.Logger) (AtomStreamId, error)
```
StoreAtomStream stores v into the database d, returning the AtomStreamId.

#### func (*AtomStreamId) Class

```go
func (*AtomStreamId) Class() binary.Class
```

#### func (AtomStreamId) Valid

```go
func (h AtomStreamId) Valid() bool
```

#### type AtomTimer

```go
type AtomTimer struct {
	binary.Generate
	AtomId      uint64
	Nanoseconds uint64
}
```

Class AtomTimer

#### func  CreateAtomTimer

```go
func CreateAtomTimer(
	AtomId uint64,
	Nanoseconds uint64,
) *AtomTimer
```

#### func (*AtomTimer) Class

```go
func (*AtomTimer) Class() binary.Class
```

#### func (*AtomTimer) GetAtomId

```go
func (c *AtomTimer) GetAtomId() uint64
```

#### func (*AtomTimer) GetNanoseconds

```go
func (c *AtomTimer) GetNanoseconds() uint64
```

#### type AtomTimerArray

```go
type AtomTimerArray []AtomTimer
```

Array AtomTimerˢ

#### func (AtomTimerArray) Format

```go
func (a AtomTimerArray) Format(f fmt.State, c rune)
```

#### type Binary

```go
type Binary struct {
	binary.Generate
	Data U8Array
}
```

Class Binary

#### func  CreateBinary

```go
func CreateBinary(
	Data U8Array,
) *Binary
```

#### func  ResolveBinary

```go
func ResolveBinary(id BinaryId, d database.Database, l log.Logger) (*Binary, error)
```
ResolveBinary loads and returns the Binary stored in the database d, using id.

#### func (*Binary) Class

```go
func (*Binary) Class() binary.Class
```

#### func (*Binary) GetData

```go
func (c *Binary) GetData() U8Array
```

#### type BinaryId

```go
type BinaryId struct {
	binary.Generate
	ID binary.ID
}
```

Handle BinaryId

#### func  StoreBinary

```go
func StoreBinary(v *Binary, d database.Database, l log.Logger) (BinaryId, error)
```
StoreBinary stores v into the database d, returning the BinaryId.

#### func (*BinaryId) Class

```go
func (*BinaryId) Class() binary.Class
```

#### func (BinaryId) Valid

```go
func (h BinaryId) Valid() bool
```

#### type Capture

```go
type Capture struct {
	binary.Generate
	Name   string
	Atoms  AtomStreamId
	Apis   ApiIdArray
	Schema SchemaId
}
```

Class Capture

#### func  CreateCapture

```go
func CreateCapture(
	Name string,
	Atoms AtomStreamId,
	Apis ApiIdArray,
	Schema SchemaId,
) *Capture
```

#### func  ResolveCapture

```go
func ResolveCapture(id CaptureId, d database.Database, l log.Logger) (*Capture, error)
```
ResolveCapture loads and returns the Capture stored in the database d, using id.

#### func (*Capture) Class

```go
func (*Capture) Class() binary.Class
```

#### func (*Capture) GetApis

```go
func (c *Capture) GetApis() ApiIdArray
```

#### func (*Capture) GetAtoms

```go
func (c *Capture) GetAtoms() AtomStreamId
```

#### func (*Capture) GetName

```go
func (c *Capture) GetName() string
```

#### func (*Capture) GetSchema

```go
func (c *Capture) GetSchema() SchemaId
```

#### type CaptureId

```go
type CaptureId struct {
	binary.Generate
	ID binary.ID
}
```

Handle CaptureId

#### func  StoreCapture

```go
func StoreCapture(v *Capture, d database.Database, l log.Logger) (CaptureId, error)
```
StoreCapture stores v into the database d, returning the CaptureId.

#### func (*CaptureId) Class

```go
func (*CaptureId) Class() binary.Class
```

#### func (CaptureId) Valid

```go
func (h CaptureId) Valid() bool
```

#### type CaptureIdArray

```go
type CaptureIdArray []CaptureId
```

Array CaptureIdˢ

#### func (CaptureIdArray) Format

```go
func (a CaptureIdArray) Format(f fmt.State, c rune)
```

#### type ClassArray

```go
type ClassArray []schema.Class
```

Array Classˢ

#### func (ClassArray) Format

```go
func (a ClassArray) Format(f fmt.State, c rune)
```

#### type ClassInfo

```go
type ClassInfo struct {
	binary.Generate
	Name    string
	Kind    TypeKind
	Fields  FieldInfoPtrArray
	Extends ClassInfoPtrArray
}
```

Class ClassInfo

#### func  CreateClassInfo

```go
func CreateClassInfo(
	Name string,
	Kind TypeKind,
	Fields FieldInfoPtrArray,
	Extends ClassInfoPtrArray,
) *ClassInfo
```

#### func (*ClassInfo) Class

```go
func (*ClassInfo) Class() binary.Class
```

#### func (*ClassInfo) GetExtends

```go
func (c *ClassInfo) GetExtends() ClassInfoPtrArray
```

#### func (*ClassInfo) GetFields

```go
func (c *ClassInfo) GetFields() FieldInfoPtrArray
```

#### func (*ClassInfo) GetKind

```go
func (c *ClassInfo) GetKind() TypeKind
```

#### func (*ClassInfo) GetName

```go
func (c *ClassInfo) GetName() string
```

#### type ClassInfoArray

```go
type ClassInfoArray []ClassInfo
```

Array ClassInfoˢ

#### func (ClassInfoArray) Format

```go
func (a ClassInfoArray) Format(f fmt.State, c rune)
```

#### type ClassInfoPtrArray

```go
type ClassInfoPtrArray []*ClassInfo
```

Array ClassInfoᵖˢ

#### func (ClassInfoPtrArray) Format

```go
func (a ClassInfoPtrArray) Format(f fmt.State, c rune)
```

#### type ClassPtrArray

```go
type ClassPtrArray []*schema.Class
```

Array Classᵖˢ

#### func (ClassPtrArray) Format

```go
func (a ClassPtrArray) Format(f fmt.State, c rune)
```

#### type Device

```go
type Device struct {
	binary.Generate
	Name             string
	Model            string
	OS               string
	PointerSize      uint8
	PointerAlignment uint8
	MaxMemorySize    uint64
	Extensions       string
	Renderer         string
	Vendor           string
	Version          string
}
```

Class Device

#### func  CreateDevice

```go
func CreateDevice(
	Name string,
	Model string,
	OS string,
	PointerSize uint8,
	PointerAlignment uint8,
	MaxMemorySize uint64,
	Extensions string,
	Renderer string,
	Vendor string,
	Version string,
) *Device
```

#### func  ResolveDevice

```go
func ResolveDevice(id DeviceId, d database.Database, l log.Logger) (*Device, error)
```
ResolveDevice loads and returns the Device stored in the database d, using id.

#### func (Device) Architecture

```go
func (d Device) Architecture() device.Architecture
```
Architecture return's the device's architecture.

#### func (*Device) Class

```go
func (*Device) Class() binary.Class
```

#### func (*Device) GetExtensions

```go
func (c *Device) GetExtensions() string
```

#### func (*Device) GetMaxMemorySize

```go
func (c *Device) GetMaxMemorySize() uint64
```

#### func (*Device) GetModel

```go
func (c *Device) GetModel() string
```

#### func (*Device) GetName

```go
func (c *Device) GetName() string
```

#### func (*Device) GetOS

```go
func (c *Device) GetOS() string
```

#### func (*Device) GetPointerAlignment

```go
func (c *Device) GetPointerAlignment() uint8
```

#### func (*Device) GetPointerSize

```go
func (c *Device) GetPointerSize() uint8
```

#### func (*Device) GetRenderer

```go
func (c *Device) GetRenderer() string
```

#### func (*Device) GetVendor

```go
func (c *Device) GetVendor() string
```

#### func (*Device) GetVersion

```go
func (c *Device) GetVersion() string
```

#### func (Device) HasExtension

```go
func (d Device) HasExtension(extension string) bool
```

#### type DeviceId

```go
type DeviceId struct {
	binary.Generate
	ID binary.ID
}
```

Handle DeviceId

#### func  StoreDevice

```go
func StoreDevice(v *Device, d database.Database, l log.Logger) (DeviceId, error)
```
StoreDevice stores v into the database d, returning the DeviceId.

#### func (*DeviceId) Class

```go
func (*DeviceId) Class() binary.Class
```

#### func (DeviceId) Valid

```go
func (h DeviceId) Valid() bool
```

#### type DeviceIdArray

```go
type DeviceIdArray []DeviceId
```

Array DeviceIdˢ

#### func (DeviceIdArray) Format

```go
func (a DeviceIdArray) Format(f fmt.State, c rune)
```

#### type EnumEntry

```go
type EnumEntry struct {
	binary.Generate
	Name  string
	Value uint32
}
```

Class EnumEntry

#### func  CreateEnumEntry

```go
func CreateEnumEntry(
	Name string,
	Value uint32,
) *EnumEntry
```

#### func (*EnumEntry) Class

```go
func (*EnumEntry) Class() binary.Class
```

#### func (*EnumEntry) GetName

```go
func (c *EnumEntry) GetName() string
```

#### func (*EnumEntry) GetValue

```go
func (c *EnumEntry) GetValue() uint32
```

#### func (EnumEntry) String

```go
func (e EnumEntry) String() string
```

#### type EnumEntryArray

```go
type EnumEntryArray []EnumEntry
```

Array EnumEntryˢ

#### func (EnumEntryArray) Format

```go
func (a EnumEntryArray) Format(f fmt.State, c rune)
```

#### type EnumInfo

```go
type EnumInfo struct {
	binary.Generate
	Name    string
	Kind    TypeKind
	Entries EnumEntryArray
	Extends EnumInfoPtrArray
}
```

Class EnumInfo

#### func  CreateEnumInfo

```go
func CreateEnumInfo(
	Name string,
	Kind TypeKind,
	Entries EnumEntryArray,
	Extends EnumInfoPtrArray,
) *EnumInfo
```

#### func (*EnumInfo) Class

```go
func (*EnumInfo) Class() binary.Class
```

#### func (*EnumInfo) GetEntries

```go
func (c *EnumInfo) GetEntries() EnumEntryArray
```

#### func (*EnumInfo) GetExtends

```go
func (c *EnumInfo) GetExtends() EnumInfoPtrArray
```

#### func (*EnumInfo) GetKind

```go
func (c *EnumInfo) GetKind() TypeKind
```

#### func (*EnumInfo) GetName

```go
func (c *EnumInfo) GetName() string
```

#### type EnumInfoArray

```go
type EnumInfoArray []EnumInfo
```

Array EnumInfoˢ

#### func (EnumInfoArray) Format

```go
func (a EnumInfoArray) Format(f fmt.State, c rune)
```

#### type EnumInfoPtrArray

```go
type EnumInfoPtrArray []*EnumInfo
```

Array EnumInfoᵖˢ

#### func (EnumInfoPtrArray) Format

```go
func (a EnumInfoPtrArray) Format(f fmt.State, c rune)
```

#### type FieldInfo

```go
type FieldInfo struct {
	binary.Generate
	Name string
	Type TypeInfo
}
```

Class FieldInfo

#### func  CreateFieldInfo

```go
func CreateFieldInfo(
	Name string,
	Type TypeInfo,
) *FieldInfo
```

#### func (*FieldInfo) Class

```go
func (*FieldInfo) Class() binary.Class
```

#### func (*FieldInfo) GetName

```go
func (c *FieldInfo) GetName() string
```

#### func (*FieldInfo) GetType

```go
func (c *FieldInfo) GetType() TypeInfo
```

#### type FieldInfoArray

```go
type FieldInfoArray []FieldInfo
```

Array FieldInfoˢ

#### func (FieldInfoArray) Format

```go
func (a FieldInfoArray) Format(f fmt.State, c rune)
```

#### type FieldInfoPtrArray

```go
type FieldInfoPtrArray []*FieldInfo
```

Array FieldInfoᵖˢ

#### func (FieldInfoPtrArray) Format

```go
func (a FieldInfoPtrArray) Format(f fmt.State, c rune)
```

#### type Hierarchy

```go
type Hierarchy struct {
	binary.Generate
	Root AtomGroup
}
```

Class Hierarchy

#### func  CreateHierarchy

```go
func CreateHierarchy(
	Root AtomGroup,
) *Hierarchy
```

#### func  ResolveHierarchy

```go
func ResolveHierarchy(id HierarchyId, d database.Database, l log.Logger) (*Hierarchy, error)
```
ResolveHierarchy loads and returns the Hierarchy stored in the database d, using
id.

#### func (*Hierarchy) Class

```go
func (*Hierarchy) Class() binary.Class
```

#### func (*Hierarchy) GetRoot

```go
func (c *Hierarchy) GetRoot() AtomGroup
```

#### type HierarchyId

```go
type HierarchyId struct {
	binary.Generate
	ID binary.ID
}
```

Handle HierarchyId

#### func  StoreHierarchy

```go
func StoreHierarchy(v *Hierarchy, d database.Database, l log.Logger) (HierarchyId, error)
```
StoreHierarchy stores v into the database d, returning the HierarchyId.

#### func (*HierarchyId) Class

```go
func (*HierarchyId) Class() binary.Class
```

#### func (HierarchyId) Valid

```go
func (h HierarchyId) Valid() bool
```

#### type ImageFormat

```go
type ImageFormat int
```

Enum ImageFormat

```go
const (
	ImageFormatRGBA8   ImageFormat = 0
	ImageFormatFloat32 ImageFormat = 1
)
```

#### func (ImageFormat) IsFloat32

```go
func (i ImageFormat) IsFloat32() bool
```

#### func (ImageFormat) IsRGBA8

```go
func (i ImageFormat) IsRGBA8() bool
```

#### func (*ImageFormat) Parse

```go
func (v *ImageFormat) Parse(s string) error
```

#### func (ImageFormat) String

```go
func (v ImageFormat) String() string
```

#### type ImageInfo

```go
type ImageInfo struct {
	binary.Generate
	Format ImageFormat
	Width  uint32
	Height uint32
	Data   BinaryId
}
```

Class ImageInfo

#### func  CreateImageInfo

```go
func CreateImageInfo(
	Format ImageFormat,
	Width uint32,
	Height uint32,
	Data BinaryId,
) *ImageInfo
```

#### func  ResolveImageInfo

```go
func ResolveImageInfo(id ImageInfoId, d database.Database, l log.Logger) (*ImageInfo, error)
```
ResolveImageInfo loads and returns the ImageInfo stored in the database d, using
id.

#### func (*ImageInfo) Class

```go
func (*ImageInfo) Class() binary.Class
```

#### func (*ImageInfo) GetData

```go
func (c *ImageInfo) GetData() BinaryId
```

#### func (*ImageInfo) GetFormat

```go
func (c *ImageInfo) GetFormat() ImageFormat
```

#### func (*ImageInfo) GetHeight

```go
func (c *ImageInfo) GetHeight() uint32
```

#### func (*ImageInfo) GetWidth

```go
func (c *ImageInfo) GetWidth() uint32
```

#### type ImageInfoId

```go
type ImageInfoId struct {
	binary.Generate
	ID binary.ID
}
```

Handle ImageInfoId

#### func  StoreImageInfo

```go
func StoreImageInfo(v *ImageInfo, d database.Database, l log.Logger) (ImageInfoId, error)
```
StoreImageInfo stores v into the database d, returning the ImageInfoId.

#### func (*ImageInfoId) Class

```go
func (*ImageInfoId) Class() binary.Class
```

#### func (ImageInfoId) Valid

```go
func (h ImageInfoId) Valid() bool
```

#### type MapInfo

```go
type MapInfo struct {
	binary.Generate
	Name      string
	Kind      TypeKind
	KeyType   TypeInfo
	ValueType TypeInfo
}
```

Class MapInfo

#### func  CreateMapInfo

```go
func CreateMapInfo(
	Name string,
	Kind TypeKind,
	KeyType TypeInfo,
	ValueType TypeInfo,
) *MapInfo
```

#### func (*MapInfo) Class

```go
func (*MapInfo) Class() binary.Class
```

#### func (*MapInfo) GetKeyType

```go
func (c *MapInfo) GetKeyType() TypeInfo
```

#### func (*MapInfo) GetKind

```go
func (c *MapInfo) GetKind() TypeKind
```

#### func (*MapInfo) GetName

```go
func (c *MapInfo) GetName() string
```

#### func (*MapInfo) GetValueType

```go
func (c *MapInfo) GetValueType() TypeInfo
```

#### type MemoryInfo

```go
type MemoryInfo struct {
	binary.Generate
	Data    U8Array
	Stale   MemoryRangeArray
	Current MemoryRangeArray
	Unknown MemoryRangeArray
}
```

Class MemoryInfo

#### func  CreateMemoryInfo

```go
func CreateMemoryInfo(
	Data U8Array,
	Stale MemoryRangeArray,
	Current MemoryRangeArray,
	Unknown MemoryRangeArray,
) *MemoryInfo
```

#### func  ResolveMemoryInfo

```go
func ResolveMemoryInfo(id MemoryInfoId, d database.Database, l log.Logger) (*MemoryInfo, error)
```
ResolveMemoryInfo loads and returns the MemoryInfo stored in the database d,
using id.

#### func (*MemoryInfo) Class

```go
func (*MemoryInfo) Class() binary.Class
```

#### func (*MemoryInfo) GetCurrent

```go
func (c *MemoryInfo) GetCurrent() MemoryRangeArray
```

#### func (*MemoryInfo) GetData

```go
func (c *MemoryInfo) GetData() U8Array
```

#### func (*MemoryInfo) GetStale

```go
func (c *MemoryInfo) GetStale() MemoryRangeArray
```

#### func (*MemoryInfo) GetUnknown

```go
func (c *MemoryInfo) GetUnknown() MemoryRangeArray
```

#### type MemoryInfoId

```go
type MemoryInfoId struct {
	binary.Generate
	ID binary.ID
}
```

Handle MemoryInfoId

#### func  StoreMemoryInfo

```go
func StoreMemoryInfo(v *MemoryInfo, d database.Database, l log.Logger) (MemoryInfoId, error)
```
StoreMemoryInfo stores v into the database d, returning the MemoryInfoId.

#### func (*MemoryInfoId) Class

```go
func (*MemoryInfoId) Class() binary.Class
```

#### func (MemoryInfoId) Valid

```go
func (h MemoryInfoId) Valid() bool
```

#### type MemoryRange

```go
type MemoryRange struct {
	binary.Generate
	Base uint64
	Size uint64
}
```

Class MemoryRange

#### func  CreateMemoryRange

```go
func CreateMemoryRange(
	Base uint64,
	Size uint64,
) *MemoryRange
```

#### func (*MemoryRange) Class

```go
func (*MemoryRange) Class() binary.Class
```

#### func (*MemoryRange) GetBase

```go
func (c *MemoryRange) GetBase() uint64
```

#### func (*MemoryRange) GetSize

```go
func (c *MemoryRange) GetSize() uint64
```

#### func (*MemoryRange) Pack

```go
func (r *MemoryRange) Pack(o memory.Range)
```
Pack packs the memory Range o into the RPC-friendly MemoryRange structure.

#### func (MemoryRange) Unpack

```go
func (r MemoryRange) Unpack(o *memory.Range)
```
Unpack unpacks the RPC-friendly MemoryRange structure into the memory Range o.

#### type MemoryRangeArray

```go
type MemoryRangeArray []MemoryRange
```

Array MemoryRangeˢ

#### func (MemoryRangeArray) Format

```go
func (a MemoryRangeArray) Format(f fmt.State, c rune)
```

#### func (*MemoryRangeArray) Pack

```go
func (l *MemoryRangeArray) Pack(o memory.RangeList)
```
Pack packs the memory RangeList o into the RPC-friendly MemoryRangeArray
structure.

#### func (MemoryRangeArray) Unpack

```go
func (l MemoryRangeArray) Unpack(o *memory.RangeList)
```
Unpack unpacks the RPC-friendly MemoryRangeArray structure into the memory
RangeList o.

#### type ParameterInfo

```go
type ParameterInfo struct {
	binary.Generate
	Name string
	Type TypeInfo
	Out  bool
}
```

Class ParameterInfo

#### func  CreateParameterInfo

```go
func CreateParameterInfo(
	Name string,
	Type TypeInfo,
	Out bool,
) *ParameterInfo
```

#### func (*ParameterInfo) Class

```go
func (*ParameterInfo) Class() binary.Class
```

#### func (*ParameterInfo) GetName

```go
func (c *ParameterInfo) GetName() string
```

#### func (*ParameterInfo) GetOut

```go
func (c *ParameterInfo) GetOut() bool
```

#### func (*ParameterInfo) GetType

```go
func (c *ParameterInfo) GetType() TypeInfo
```

#### type ParameterInfoArray

```go
type ParameterInfoArray []ParameterInfo
```

Array ParameterInfoˢ

#### func (ParameterInfoArray) Format

```go
func (a ParameterInfoArray) Format(f fmt.State, c rune)
```

#### type RPC

```go
type RPC interface {
	GetSchema(l log.Logger) (ClassPtrArray, error)
	Import(name string, Data U8Array, l log.Logger) (CaptureId, error)
	GetCaptures(l log.Logger) (CaptureIdArray, error)
	GetDevices(l log.Logger) (DeviceIdArray, error)
	GetState(capture CaptureId, after uint64, l log.Logger) (BinaryId, error)
	GetHierarchy(capture CaptureId, l log.Logger) (HierarchyId, error)
	GetMemoryInfo(capture CaptureId, after uint64, rng MemoryRange, l log.Logger) (MemoryInfoId, error)
	GetFramebufferColor(device DeviceId, capture CaptureId, api ApiId, after uint64, settings RenderSettings, l log.Logger) (ImageInfoId, error)
	GetFramebufferDepth(device DeviceId, capture CaptureId, api ApiId, after uint64, l log.Logger) (ImageInfoId, error)
	GetTimingInfo(device DeviceId, capture CaptureId, mask TimingMask, l log.Logger) (TimingInfoId, error)
	PrerenderFramebuffers(device DeviceId, capture CaptureId, api ApiId, width uint32, height uint32, atomIds U64Array, l log.Logger) (BinaryId, error)
	ReplaceAtom(capture CaptureId, atomId uint64, atomType uint16, data Binary, l log.Logger) (CaptureId, error)
	ResolveAtomStream(id AtomStreamId, l log.Logger) (AtomStream, error)
	ResolveBinary(id BinaryId, l log.Logger) (Binary, error)
	ResolveCapture(id CaptureId, l log.Logger) (Capture, error)
	ResolveDevice(id DeviceId, l log.Logger) (Device, error)
	ResolveHierarchy(id HierarchyId, l log.Logger) (Hierarchy, error)
	ResolveImageInfo(id ImageInfoId, l log.Logger) (ImageInfo, error)
	ResolveMemoryInfo(id MemoryInfoId, l log.Logger) (MemoryInfo, error)
	ResolveSchema(id SchemaId, l log.Logger) (Schema, error)
	ResolveTimingInfo(id TimingInfoId, l log.Logger) (TimingInfo, error)
}
```


#### func  CreateClient

```go
func CreateClient(r io.Reader, w io.Writer, mtu int) RPC
```

#### type RenderSettings

```go
type RenderSettings struct {
	binary.Generate
	MaxWidth  uint32
	MaxHeight uint32
	Wireframe bool
}
```

Class RenderSettings

#### func  CreateRenderSettings

```go
func CreateRenderSettings(
	MaxWidth uint32,
	MaxHeight uint32,
	Wireframe bool,
) *RenderSettings
```

#### func (*RenderSettings) Class

```go
func (*RenderSettings) Class() binary.Class
```

#### func (*RenderSettings) GetMaxHeight

```go
func (c *RenderSettings) GetMaxHeight() uint32
```

#### func (*RenderSettings) GetMaxWidth

```go
func (c *RenderSettings) GetMaxWidth() uint32
```

#### func (*RenderSettings) GetWireframe

```go
func (c *RenderSettings) GetWireframe() bool
```

#### type Resolver

```go
type Resolver struct {
	Database database.Database
}
```


#### func (Resolver) ResolveAtomStream

```go
func (r Resolver) ResolveAtomStream(id AtomStreamId, l log.Logger) (AtomStream, error)
```
ResolveAtomStream loads and returns the AtomStream stored in the resolver's
database, using id.

#### func (Resolver) ResolveBinary

```go
func (r Resolver) ResolveBinary(id BinaryId, l log.Logger) (Binary, error)
```
ResolveBinary loads and returns the Binary stored in the resolver's database,
using id.

#### func (Resolver) ResolveCapture

```go
func (r Resolver) ResolveCapture(id CaptureId, l log.Logger) (Capture, error)
```
ResolveCapture loads and returns the Capture stored in the resolver's database,
using id.

#### func (Resolver) ResolveDevice

```go
func (r Resolver) ResolveDevice(id DeviceId, l log.Logger) (Device, error)
```
ResolveDevice loads and returns the Device stored in the resolver's database,
using id.

#### func (Resolver) ResolveHierarchy

```go
func (r Resolver) ResolveHierarchy(id HierarchyId, l log.Logger) (Hierarchy, error)
```
ResolveHierarchy loads and returns the Hierarchy stored in the resolver's
database, using id.

#### func (Resolver) ResolveImageInfo

```go
func (r Resolver) ResolveImageInfo(id ImageInfoId, l log.Logger) (ImageInfo, error)
```
ResolveImageInfo loads and returns the ImageInfo stored in the resolver's
database, using id.

#### func (Resolver) ResolveMemoryInfo

```go
func (r Resolver) ResolveMemoryInfo(id MemoryInfoId, l log.Logger) (MemoryInfo, error)
```
ResolveMemoryInfo loads and returns the MemoryInfo stored in the resolver's
database, using id.

#### func (Resolver) ResolveSchema

```go
func (r Resolver) ResolveSchema(id SchemaId, l log.Logger) (Schema, error)
```
ResolveSchema loads and returns the Schema stored in the resolver's database,
using id.

#### func (Resolver) ResolveTimingInfo

```go
func (r Resolver) ResolveTimingInfo(id TimingInfoId, l log.Logger) (TimingInfo, error)
```
ResolveTimingInfo loads and returns the TimingInfo stored in the resolver's
database, using id.

#### type Schema

```go
type Schema struct {
	binary.Generate
	Atoms AtomInfoArray
	Apis  ApiSchemaArray
}
```

Class Schema

#### func  CreateSchema

```go
func CreateSchema(
	Atoms AtomInfoArray,
	Apis ApiSchemaArray,
) *Schema
```

#### func  ResolveSchema

```go
func ResolveSchema(id SchemaId, d database.Database, l log.Logger) (*Schema, error)
```
ResolveSchema loads and returns the Schema stored in the database d, using id.

#### func (*Schema) Class

```go
func (*Schema) Class() binary.Class
```

#### func (*Schema) GetApis

```go
func (c *Schema) GetApis() ApiSchemaArray
```

#### func (*Schema) GetAtoms

```go
func (c *Schema) GetAtoms() AtomInfoArray
```

#### type SchemaId

```go
type SchemaId struct {
	binary.Generate
	ID binary.ID
}
```

Handle SchemaId

#### func  StoreSchema

```go
func StoreSchema(v *Schema, d database.Database, l log.Logger) (SchemaId, error)
```
StoreSchema stores v into the database d, returning the SchemaId.

#### func (*SchemaId) Class

```go
func (*SchemaId) Class() binary.Class
```

#### func (SchemaId) Valid

```go
func (h SchemaId) Valid() bool
```

#### type SimpleInfo

```go
type SimpleInfo struct {
	binary.Generate
	Name string
	Kind TypeKind
}
```

Class SimpleInfo

#### func  CreateSimpleInfo

```go
func CreateSimpleInfo(
	Name string,
	Kind TypeKind,
) *SimpleInfo
```

#### func (*SimpleInfo) Class

```go
func (*SimpleInfo) Class() binary.Class
```

#### func (*SimpleInfo) GetKind

```go
func (c *SimpleInfo) GetKind() TypeKind
```

#### func (*SimpleInfo) GetName

```go
func (c *SimpleInfo) GetName() string
```

#### type StaticArrayInfo

```go
type StaticArrayInfo struct {
	binary.Generate
	Name        string
	Kind        TypeKind
	ElementType TypeInfo
	Size        uint32
}
```

Class StaticArrayInfo

#### func  CreateStaticArrayInfo

```go
func CreateStaticArrayInfo(
	Name string,
	Kind TypeKind,
	ElementType TypeInfo,
	Size uint32,
) *StaticArrayInfo
```

#### func (*StaticArrayInfo) Class

```go
func (*StaticArrayInfo) Class() binary.Class
```

#### func (*StaticArrayInfo) GetElementType

```go
func (c *StaticArrayInfo) GetElementType() TypeInfo
```

#### func (*StaticArrayInfo) GetKind

```go
func (c *StaticArrayInfo) GetKind() TypeKind
```

#### func (*StaticArrayInfo) GetName

```go
func (c *StaticArrayInfo) GetName() string
```

#### func (*StaticArrayInfo) GetSize

```go
func (c *StaticArrayInfo) GetSize() uint32
```

#### type StructInfo

```go
type StructInfo struct {
	binary.Generate
	Name   string
	Kind   TypeKind
	Fields FieldInfoPtrArray
}
```

Class StructInfo

#### func  CreateStructInfo

```go
func CreateStructInfo(
	Name string,
	Kind TypeKind,
	Fields FieldInfoPtrArray,
) *StructInfo
```

#### func (*StructInfo) Class

```go
func (*StructInfo) Class() binary.Class
```

#### func (*StructInfo) GetFields

```go
func (c *StructInfo) GetFields() FieldInfoPtrArray
```

#### func (*StructInfo) GetKind

```go
func (c *StructInfo) GetKind() TypeKind
```

#### func (*StructInfo) GetName

```go
func (c *StructInfo) GetName() string
```

#### type TimingInfo

```go
type TimingInfo struct {
	binary.Generate
	PerCommand  AtomTimerArray
	PerDrawCall AtomRangeTimerArray
	PerFrame    AtomRangeTimerArray
}
```

Class TimingInfo

#### func  CreateTimingInfo

```go
func CreateTimingInfo(
	PerCommand AtomTimerArray,
	PerDrawCall AtomRangeTimerArray,
	PerFrame AtomRangeTimerArray,
) *TimingInfo
```

#### func  ResolveTimingInfo

```go
func ResolveTimingInfo(id TimingInfoId, d database.Database, l log.Logger) (*TimingInfo, error)
```
ResolveTimingInfo loads and returns the TimingInfo stored in the database d,
using id.

#### func (*TimingInfo) Class

```go
func (*TimingInfo) Class() binary.Class
```

#### func (*TimingInfo) GetPerCommand

```go
func (c *TimingInfo) GetPerCommand() AtomTimerArray
```

#### func (*TimingInfo) GetPerDrawCall

```go
func (c *TimingInfo) GetPerDrawCall() AtomRangeTimerArray
```

#### func (*TimingInfo) GetPerFrame

```go
func (c *TimingInfo) GetPerFrame() AtomRangeTimerArray
```

#### type TimingInfoId

```go
type TimingInfoId struct {
	binary.Generate
	ID binary.ID
}
```

Handle TimingInfoId

#### func  StoreTimingInfo

```go
func StoreTimingInfo(v *TimingInfo, d database.Database, l log.Logger) (TimingInfoId, error)
```
StoreTimingInfo stores v into the database d, returning the TimingInfoId.

#### func (*TimingInfoId) Class

```go
func (*TimingInfoId) Class() binary.Class
```

#### func (TimingInfoId) Valid

```go
func (h TimingInfoId) Valid() bool
```

#### type TimingMask

```go
type TimingMask int
```

Enum TimingMask

```go
const (
	TimingMaskTimingPerCommand  TimingMask = 1
	TimingMaskTimingPerDrawCall TimingMask = 2
	TimingMaskTimingPerFrame    TimingMask = 4
)
```

#### func (TimingMask) IsTimingPerCommand

```go
func (i TimingMask) IsTimingPerCommand() bool
```

#### func (TimingMask) IsTimingPerDrawCall

```go
func (i TimingMask) IsTimingPerDrawCall() bool
```

#### func (TimingMask) IsTimingPerFrame

```go
func (i TimingMask) IsTimingPerFrame() bool
```

#### func (*TimingMask) Parse

```go
func (v *TimingMask) Parse(s string) error
```

#### func (TimingMask) String

```go
func (v TimingMask) String() string
```

#### type TypeInfo

```go
type TypeInfo interface {
	binary.Object
	GetName() string
	GetKind() TypeKind
}
```

Interface TypeInfo

#### type TypeInfoArray

```go
type TypeInfoArray []TypeInfo
```

Array TypeInfoˢ

#### func (TypeInfoArray) Format

```go
func (a TypeInfoArray) Format(f fmt.State, c rune)
```

#### type TypeKind

```go
type TypeKind int
```

Enum TypeKind

```go
const (
	TypeKindBool        TypeKind = 0
	TypeKindS8          TypeKind = 1
	TypeKindU8          TypeKind = 2
	TypeKindS16         TypeKind = 3
	TypeKindU16         TypeKind = 4
	TypeKindS32         TypeKind = 5
	TypeKindU32         TypeKind = 6
	TypeKindF32         TypeKind = 7
	TypeKindS64         TypeKind = 8
	TypeKindU64         TypeKind = 9
	TypeKindF64         TypeKind = 10
	TypeKindString      TypeKind = 11
	TypeKindEnum        TypeKind = 12
	TypeKindStruct      TypeKind = 14
	TypeKindClass       TypeKind = 15
	TypeKindArray       TypeKind = 16
	TypeKindStaticArray TypeKind = 17
	TypeKindMap         TypeKind = 18
	TypeKindPointer     TypeKind = 19
	TypeKindMemory      TypeKind = 20
	TypeKindAny         TypeKind = 21
	TypeKindID          TypeKind = 22
)
```

#### func (TypeKind) IsAny

```go
func (i TypeKind) IsAny() bool
```

#### func (TypeKind) IsArray

```go
func (i TypeKind) IsArray() bool
```

#### func (TypeKind) IsBool

```go
func (i TypeKind) IsBool() bool
```

#### func (TypeKind) IsClass

```go
func (i TypeKind) IsClass() bool
```

#### func (TypeKind) IsEnum

```go
func (i TypeKind) IsEnum() bool
```

#### func (TypeKind) IsF32

```go
func (i TypeKind) IsF32() bool
```

#### func (TypeKind) IsF64

```go
func (i TypeKind) IsF64() bool
```

#### func (TypeKind) IsID

```go
func (i TypeKind) IsID() bool
```

#### func (TypeKind) IsMap

```go
func (i TypeKind) IsMap() bool
```

#### func (TypeKind) IsMemory

```go
func (i TypeKind) IsMemory() bool
```

#### func (TypeKind) IsPointer

```go
func (i TypeKind) IsPointer() bool
```

#### func (TypeKind) IsS16

```go
func (i TypeKind) IsS16() bool
```

#### func (TypeKind) IsS32

```go
func (i TypeKind) IsS32() bool
```

#### func (TypeKind) IsS64

```go
func (i TypeKind) IsS64() bool
```

#### func (TypeKind) IsS8

```go
func (i TypeKind) IsS8() bool
```

#### func (TypeKind) IsStaticArray

```go
func (i TypeKind) IsStaticArray() bool
```

#### func (TypeKind) IsString

```go
func (i TypeKind) IsString() bool
```

#### func (TypeKind) IsStruct

```go
func (i TypeKind) IsStruct() bool
```

#### func (TypeKind) IsU16

```go
func (i TypeKind) IsU16() bool
```

#### func (TypeKind) IsU32

```go
func (i TypeKind) IsU32() bool
```

#### func (TypeKind) IsU64

```go
func (i TypeKind) IsU64() bool
```

#### func (TypeKind) IsU8

```go
func (i TypeKind) IsU8() bool
```

#### func (*TypeKind) Parse

```go
func (v *TypeKind) Parse(s string) error
```

#### func (TypeKind) String

```go
func (v TypeKind) String() string
```

#### type U64Array

```go
type U64Array []uint64
```

Array U64ˢ

#### func (U64Array) Format

```go
func (a U64Array) Format(f fmt.State, c rune)
```

#### type U8Array

```go
type U8Array []uint8
```

Array U8ˢ

#### func (U8Array) Format

```go
func (a U8Array) Format(f fmt.State, c rune)
```