-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathlibmuffin0.symbols
More file actions
2755 lines (2755 loc) · 113 KB
/
libmuffin0.symbols
File metadata and controls
2755 lines (2755 loc) · 113 KB
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
libmuffin-clutter-0.so.0 libmuffin0 #MINVER#
_clutter_backend_translate_event@Base 5.3.0
_clutter_event_get_platform_data@Base 5.3.0
_clutter_event_process_filters@Base 5.3.0
_clutter_event_push@Base 5.3.0
_clutter_event_set_platform_data@Base 5.3.0
_clutter_event_set_pointer_emulated@Base 5.3.0
_clutter_event_set_state_full@Base 5.3.0
_clutter_input_device_add_axis@Base 5.3.0
_clutter_input_device_add_event_sequence@Base 5.3.0
_clutter_input_device_add_scroll_info@Base 5.3.0
_clutter_input_device_add_slave@Base 5.3.0
_clutter_input_device_get_scroll_delta@Base 5.3.0
_clutter_input_device_get_stage@Base 5.3.0
_clutter_input_device_remove_event_sequence@Base 5.3.0
_clutter_input_device_remove_slave@Base 5.3.0
_clutter_input_device_reset_axes@Base 5.3.0
_clutter_input_device_reset_scroll_info@Base 5.3.0
_clutter_input_device_set_associated_device@Base 5.3.0
_clutter_input_device_set_coords@Base 5.3.0
_clutter_input_device_set_n_keys@Base 5.3.0
_clutter_input_device_set_stage@Base 5.3.0
_clutter_input_device_set_state@Base 5.3.0
_clutter_input_device_set_time@Base 5.3.0
_clutter_input_device_translate_axis@Base 5.3.0
_clutter_input_pointer_a11y_add_device@Base 5.3.0
_clutter_input_pointer_a11y_on_button_event@Base 5.3.0
_clutter_input_pointer_a11y_on_motion_event@Base 5.3.0
_clutter_input_pointer_a11y_remove_device@Base 5.3.0
_clutter_is_input_pointer_a11y_enabled@Base 5.3.0
_clutter_pango_unichar_direction@Base 5.3.0
_clutter_process_event@Base 5.3.0
_clutter_set_sync_to_vblank@Base 5.3.0
_clutter_stage_cogl_get_type@Base 5.3.0
_clutter_stage_cogl_presented@Base 5.3.0
_clutter_stage_get_state@Base 5.3.0
_clutter_stage_get_window@Base 5.3.0
_clutter_stage_is_activated@Base 5.3.0
_clutter_stage_queue_event@Base 5.3.0
_clutter_stage_set_window@Base 5.3.0
_clutter_stage_update_state@Base 5.3.0
_clutter_stage_window_get_geometry@Base 5.3.0
_clutter_threads_acquire_lock@Base 5.3.0
_clutter_threads_release_lock@Base 5.3.0
cally_accessibility_init@Base 5.3.0
cally_actor_add_action@Base 5.3.0
cally_actor_add_action_full@Base 5.3.0
cally_actor_get_type@Base 5.3.0
cally_actor_new@Base 5.3.0
cally_actor_remove_action@Base 5.3.0
cally_actor_remove_action_by_name@Base 5.3.0
cally_clone_get_type@Base 5.3.0
cally_clone_new@Base 5.3.0
cally_get_cally_initialized@Base 5.3.0
cally_group_get_type@Base 5.3.0
cally_group_new@Base 5.3.0
cally_rectangle_get_type@Base 5.3.0
cally_rectangle_new@Base 5.3.0
cally_root_get_type@Base 5.3.0
cally_root_new@Base 5.3.0
cally_stage_get_type@Base 5.3.0
cally_stage_new@Base 5.3.0
cally_text_get_type@Base 5.3.0
cally_text_new@Base 5.3.0
cally_util_get_type@Base 5.3.0
clutter_action_get_type@Base 5.3.0
clutter_actor_add_action@Base 5.3.0
clutter_actor_add_action_with_name@Base 5.3.0
clutter_actor_add_child@Base 5.3.0
clutter_actor_add_constraint@Base 5.3.0
clutter_actor_add_constraint_with_name@Base 5.3.0
clutter_actor_add_effect@Base 5.3.0
clutter_actor_add_effect_with_name@Base 5.3.0
clutter_actor_add_transition@Base 5.3.0
clutter_actor_align_get_type@Base 5.3.0
clutter_actor_allocate@Base 5.3.0
clutter_actor_allocate_align_fill@Base 5.3.0
clutter_actor_allocate_available_size@Base 5.3.0
clutter_actor_allocate_preferred_size@Base 5.3.0
clutter_actor_animate@Base 5.3.0
clutter_actor_animate_with_timeline@Base 5.3.0
clutter_actor_apply_relative_transform_to_point@Base 5.3.0
clutter_actor_apply_transform_to_point@Base 5.3.0
clutter_actor_bind_model@Base 5.3.0
clutter_actor_bind_model_with_properties@Base 5.3.0
clutter_actor_box_alloc@Base 5.3.0
clutter_actor_box_clamp_to_pixel@Base 5.3.0
clutter_actor_box_contains@Base 5.3.0
clutter_actor_box_copy@Base 5.3.0
clutter_actor_box_equal@Base 5.3.0
clutter_actor_box_free@Base 5.3.0
clutter_actor_box_from_vertices@Base 5.3.0
clutter_actor_box_get_area@Base 5.3.0
clutter_actor_box_get_height@Base 5.3.0
clutter_actor_box_get_origin@Base 5.3.0
clutter_actor_box_get_size@Base 5.3.0
clutter_actor_box_get_type@Base 5.3.0
clutter_actor_box_get_width@Base 5.3.0
clutter_actor_box_get_x@Base 5.3.0
clutter_actor_box_get_y@Base 5.3.0
clutter_actor_box_init@Base 5.3.0
clutter_actor_box_init_rect@Base 5.3.0
clutter_actor_box_interpolate@Base 5.3.0
clutter_actor_box_new@Base 5.3.0
clutter_actor_box_scale@Base 5.3.0
clutter_actor_box_set_origin@Base 5.3.0
clutter_actor_box_set_size@Base 5.3.0
clutter_actor_box_union@Base 5.3.0
clutter_actor_clear_actions@Base 5.3.0
clutter_actor_clear_constraints@Base 5.3.0
clutter_actor_clear_effects@Base 5.3.0
clutter_actor_contains@Base 5.3.0
clutter_actor_continue_paint@Base 5.3.0
clutter_actor_continue_pick@Base 5.3.0
clutter_actor_create_pango_context@Base 5.3.0
clutter_actor_create_pango_layout@Base 5.3.0
clutter_actor_destroy@Base 5.3.0
clutter_actor_destroy_all_children@Base 5.3.0
clutter_actor_event@Base 5.3.0
clutter_actor_flags_get_type@Base 5.3.0
clutter_actor_get_abs_allocation_vertices@Base 5.3.0
clutter_actor_get_accessible@Base 5.3.0
clutter_actor_get_action@Base 5.3.0
clutter_actor_get_actions@Base 5.3.0
clutter_actor_get_allocation_box@Base 5.3.0
clutter_actor_get_allocation_vertices@Base 5.3.0
clutter_actor_get_anchor_point_gravity@Base 5.3.0
clutter_actor_get_background_color@Base 5.3.0
clutter_actor_get_child_at_index@Base 5.3.0
clutter_actor_get_child_transform@Base 5.3.0
clutter_actor_get_children@Base 5.3.0
clutter_actor_get_clip@Base 5.3.0
clutter_actor_get_clip_to_allocation@Base 5.3.0
clutter_actor_get_constraint@Base 5.3.0
clutter_actor_get_constraints@Base 5.3.0
clutter_actor_get_content@Base 5.3.0
clutter_actor_get_content_box@Base 5.3.0
clutter_actor_get_content_gravity@Base 5.3.0
clutter_actor_get_content_repeat@Base 5.3.0
clutter_actor_get_content_scaling_filters@Base 5.3.0
clutter_actor_get_default_paint_volume@Base 5.3.0
clutter_actor_get_depth@Base 5.3.0
clutter_actor_get_easing_delay@Base 5.3.0
clutter_actor_get_easing_duration@Base 5.3.0
clutter_actor_get_easing_mode@Base 5.3.0
clutter_actor_get_effect@Base 5.3.0
clutter_actor_get_effects@Base 5.3.0
clutter_actor_get_first_child@Base 5.3.0
clutter_actor_get_fixed_position_set@Base 5.3.0
clutter_actor_get_flags@Base 5.3.0
clutter_actor_get_height@Base 5.3.0
clutter_actor_get_last_child@Base 5.3.0
clutter_actor_get_layout_manager@Base 5.3.0
clutter_actor_get_margin@Base 5.3.0
clutter_actor_get_margin_bottom@Base 5.3.0
clutter_actor_get_margin_left@Base 5.3.0
clutter_actor_get_margin_right@Base 5.3.0
clutter_actor_get_margin_top@Base 5.3.0
clutter_actor_get_n_children@Base 5.3.0
clutter_actor_get_name@Base 5.3.0
clutter_actor_get_next_sibling@Base 5.3.0
clutter_actor_get_offscreen_redirect@Base 5.3.0
clutter_actor_get_opacity@Base 5.3.0
clutter_actor_get_opacity_override@Base 5.3.0
clutter_actor_get_paint_box@Base 5.3.0
clutter_actor_get_paint_opacity@Base 5.3.0
clutter_actor_get_paint_visibility@Base 5.3.0
clutter_actor_get_paint_volume@Base 5.3.0
clutter_actor_get_pango_context@Base 5.3.0
clutter_actor_get_parent@Base 5.3.0
clutter_actor_get_pivot_point@Base 5.3.0
clutter_actor_get_pivot_point_z@Base 5.3.0
clutter_actor_get_position@Base 5.3.0
clutter_actor_get_preferred_height@Base 5.3.0
clutter_actor_get_preferred_size@Base 5.3.0
clutter_actor_get_preferred_width@Base 5.3.0
clutter_actor_get_previous_sibling@Base 5.3.0
clutter_actor_get_reactive@Base 5.3.0
clutter_actor_get_request_mode@Base 5.3.0
clutter_actor_get_resource_scale@Base 5.3.0
clutter_actor_get_rotation@Base 5.3.0
clutter_actor_get_rotation_angle@Base 5.3.0
clutter_actor_get_scale@Base 5.3.0
clutter_actor_get_scale_center@Base 5.3.0
clutter_actor_get_scale_gravity@Base 5.3.0
clutter_actor_get_scale_z@Base 5.3.0
clutter_actor_get_size@Base 5.3.0
clutter_actor_get_stage@Base 5.3.0
clutter_actor_get_text_direction@Base 5.3.0
clutter_actor_get_transform@Base 5.3.0
clutter_actor_get_transformed_paint_volume@Base 5.3.0
clutter_actor_get_transformed_position@Base 5.3.0
clutter_actor_get_transformed_size@Base 5.3.0
clutter_actor_get_transition@Base 5.3.0
clutter_actor_get_translation@Base 5.3.0
clutter_actor_get_type@Base 5.3.0
clutter_actor_get_width@Base 5.3.0
clutter_actor_get_x@Base 5.3.0
clutter_actor_get_x_align@Base 5.3.0
clutter_actor_get_x_expand@Base 5.3.0
clutter_actor_get_y@Base 5.3.0
clutter_actor_get_y_align@Base 5.3.0
clutter_actor_get_y_expand@Base 5.3.0
clutter_actor_get_z_position@Base 5.3.0
clutter_actor_get_z_rotation_gravity@Base 5.3.0
clutter_actor_grab_key_focus@Base 5.3.0
clutter_actor_has_accessible@Base 5.3.0
clutter_actor_has_actions@Base 5.3.0
clutter_actor_has_allocation@Base 5.3.0
clutter_actor_has_clip@Base 5.3.0
clutter_actor_has_constraints@Base 5.3.0
clutter_actor_has_damage@Base 5.3.0
clutter_actor_has_effects@Base 5.3.0
clutter_actor_has_key_focus@Base 5.3.0
clutter_actor_has_mapped_clones@Base 5.3.0
clutter_actor_has_overlaps@Base 5.3.0
clutter_actor_has_pointer@Base 5.3.0
clutter_actor_hide@Base 5.3.0
clutter_actor_inhibit_culling@Base 5.3.0
clutter_actor_insert_child_above@Base 5.3.0
clutter_actor_insert_child_at_index@Base 5.3.0
clutter_actor_insert_child_below@Base 5.3.0
clutter_actor_is_in_clone_paint@Base 5.3.0
clutter_actor_is_mapped@Base 5.3.0
clutter_actor_is_realized@Base 5.3.0
clutter_actor_is_rotated@Base 5.3.0
clutter_actor_is_scaled@Base 5.3.0
clutter_actor_is_visible@Base 5.3.0
clutter_actor_iter_destroy@Base 5.3.0
clutter_actor_iter_init@Base 5.3.0
clutter_actor_iter_is_valid@Base 5.3.0
clutter_actor_iter_next@Base 5.3.0
clutter_actor_iter_prev@Base 5.3.0
clutter_actor_iter_remove@Base 5.3.0
clutter_actor_map@Base 5.3.0
clutter_actor_meta_get_actor@Base 5.3.0
clutter_actor_meta_get_enabled@Base 5.3.0
clutter_actor_meta_get_name@Base 5.3.0
clutter_actor_meta_get_type@Base 5.3.0
clutter_actor_meta_set_enabled@Base 5.3.0
clutter_actor_meta_set_name@Base 5.3.0
clutter_actor_move_anchor_point@Base 5.3.0
clutter_actor_move_anchor_point_from_gravity@Base 5.3.0
clutter_actor_move_by@Base 5.3.0
clutter_actor_needs_expand@Base 5.3.0
clutter_actor_new@Base 5.3.0
clutter_actor_node_get_type@Base 5.3.0
clutter_actor_node_new@Base 5.3.0
clutter_actor_paint@Base 5.3.0
clutter_actor_pick@Base 5.3.0
clutter_actor_pick_box@Base 5.3.0
clutter_actor_queue_redraw@Base 5.3.0
clutter_actor_queue_redraw_with_clip@Base 5.3.0
clutter_actor_queue_relayout@Base 5.3.0
clutter_actor_realize@Base 5.3.0
clutter_actor_remove_action@Base 5.3.0
clutter_actor_remove_action_by_name@Base 5.3.0
clutter_actor_remove_all_children@Base 5.3.0
clutter_actor_remove_all_transitions@Base 5.3.0
clutter_actor_remove_child@Base 5.3.0
clutter_actor_remove_clip@Base 5.3.0
clutter_actor_remove_constraint@Base 5.3.0
clutter_actor_remove_constraint_by_name@Base 5.3.0
clutter_actor_remove_effect@Base 5.3.0
clutter_actor_remove_effect_by_name@Base 5.3.0
clutter_actor_remove_transition@Base 5.3.0
clutter_actor_replace_child@Base 5.3.0
clutter_actor_restore_easing_state@Base 5.3.0
clutter_actor_save_easing_state@Base 5.3.0
clutter_actor_set_allocation@Base 5.3.0
clutter_actor_set_anchor_point@Base 5.3.0
clutter_actor_set_anchor_point_from_gravity@Base 5.3.0
clutter_actor_set_background_color@Base 5.3.0
clutter_actor_set_child_above_sibling@Base 5.3.0
clutter_actor_set_child_at_index@Base 5.3.0
clutter_actor_set_child_below_sibling@Base 5.3.0
clutter_actor_set_child_transform@Base 5.3.0
clutter_actor_set_clip@Base 5.3.0
clutter_actor_set_clip_to_allocation@Base 5.3.0
clutter_actor_set_content@Base 5.3.0
clutter_actor_set_content_gravity@Base 5.3.0
clutter_actor_set_content_repeat@Base 5.3.0
clutter_actor_set_content_scaling_filters@Base 5.3.0
clutter_actor_set_depth@Base 5.3.0
clutter_actor_set_easing_delay@Base 5.3.0
clutter_actor_set_easing_duration@Base 5.3.0
clutter_actor_set_easing_mode@Base 5.3.0
clutter_actor_set_fixed_position_set@Base 5.3.0
clutter_actor_set_flags@Base 5.3.0
clutter_actor_set_height@Base 5.3.0
clutter_actor_set_layout_manager@Base 5.3.0
clutter_actor_set_margin@Base 5.3.0
clutter_actor_set_margin_bottom@Base 5.3.0
clutter_actor_set_margin_left@Base 5.3.0
clutter_actor_set_margin_right@Base 5.3.0
clutter_actor_set_margin_top@Base 5.3.0
clutter_actor_set_name@Base 5.3.0
clutter_actor_set_offscreen_redirect@Base 5.3.0
clutter_actor_set_opacity@Base 5.3.0
clutter_actor_set_opacity_override@Base 5.3.0
clutter_actor_set_parent@Base 5.3.0
clutter_actor_set_pivot_point@Base 5.3.0
clutter_actor_set_pivot_point_z@Base 5.3.0
clutter_actor_set_position@Base 5.3.0
clutter_actor_set_reactive@Base 5.3.0
clutter_actor_set_request_mode@Base 5.3.0
clutter_actor_set_rotation@Base 5.3.0
clutter_actor_set_rotation_angle@Base 5.3.0
clutter_actor_set_scale@Base 5.3.0
clutter_actor_set_scale_full@Base 5.3.0
clutter_actor_set_scale_z@Base 5.3.0
clutter_actor_set_size@Base 5.3.0
clutter_actor_set_text_direction@Base 5.3.0
clutter_actor_set_transform@Base 5.3.0
clutter_actor_set_translation@Base 5.3.0
clutter_actor_set_width@Base 5.3.0
clutter_actor_set_x@Base 5.3.0
clutter_actor_set_x_align@Base 5.3.0
clutter_actor_set_x_expand@Base 5.3.0
clutter_actor_set_y@Base 5.3.0
clutter_actor_set_y_align@Base 5.3.0
clutter_actor_set_y_expand@Base 5.3.0
clutter_actor_set_z_position@Base 5.3.0
clutter_actor_set_z_rotation_from_gravity@Base 5.3.0
clutter_actor_should_pick_paint@Base 5.3.0
clutter_actor_show@Base 5.3.0
clutter_actor_show_all@Base 5.3.0
clutter_actor_transform_stage_point@Base 5.3.0
clutter_actor_uninhibit_culling@Base 5.3.0
clutter_actor_unmap@Base 5.3.0
clutter_actor_unparent@Base 5.3.0
clutter_actor_unrealize@Base 5.3.0
clutter_actor_unset_flags@Base 5.3.0
clutter_add_debug_flags@Base 5.3.0
clutter_align_axis_get_type@Base 5.3.0
clutter_align_constraint_get_align_axis@Base 5.3.0
clutter_align_constraint_get_factor@Base 5.3.0
clutter_align_constraint_get_source@Base 5.3.0
clutter_align_constraint_get_type@Base 5.3.0
clutter_align_constraint_new@Base 5.3.0
clutter_align_constraint_set_align_axis@Base 5.3.0
clutter_align_constraint_set_factor@Base 5.3.0
clutter_align_constraint_set_source@Base 5.3.0
clutter_allocation_flags_get_type@Base 5.3.0
clutter_alpha_get_alpha@Base 5.3.0
clutter_alpha_get_mode@Base 5.3.0
clutter_alpha_get_timeline@Base 5.3.0
clutter_alpha_get_type@Base 5.3.0
clutter_alpha_new@Base 5.3.0
clutter_alpha_new_full@Base 5.3.0
clutter_alpha_set_closure@Base 5.3.0
clutter_alpha_set_func@Base 5.3.0
clutter_alpha_set_mode@Base 5.3.0
clutter_alpha_set_timeline@Base 5.3.0
clutter_animatable_find_property@Base 5.3.0
clutter_animatable_get_initial_state@Base 5.3.0
clutter_animatable_get_type@Base 5.3.0
clutter_animatable_interpolate_value@Base 5.3.0
clutter_animatable_set_final_state@Base 5.3.0
clutter_animation_get_duration@Base 5.3.0
clutter_animation_get_interval@Base 5.3.0
clutter_animation_get_loop@Base 5.3.0
clutter_animation_get_mode@Base 5.3.0
clutter_animation_get_timeline@Base 5.3.0
clutter_animation_get_type@Base 5.3.0
clutter_animation_has_property@Base 5.3.0
clutter_animation_mode_get_type@Base 5.3.0
clutter_animation_new@Base 5.3.0
clutter_animation_set_duration@Base 5.3.0
clutter_animation_set_loop@Base 5.3.0
clutter_animation_set_mode@Base 5.3.0
clutter_animation_set_object@Base 5.3.0
clutter_animation_set_timeline@Base 5.3.0
clutter_backend_egl_native_get_type@Base 6.0.0
clutter_backend_get_cogl_context@Base 5.3.0
clutter_backend_get_default_seat@Base 5.3.0
clutter_backend_get_font_options@Base 5.3.0
clutter_backend_get_input_method@Base 5.3.0
clutter_backend_get_resolution@Base 5.3.0
clutter_backend_get_stage_window@Base 5.3.0
clutter_backend_get_type@Base 5.3.0
clutter_backend_set_font_options@Base 5.3.0
clutter_backend_set_input_method@Base 5.3.0
clutter_backend_x11_get_type@Base 5.3.0
clutter_base_init@Base 5.3.0
clutter_bin_alignment_get_type@Base 5.3.0
clutter_bin_layout_get_type@Base 5.3.0
clutter_bin_layout_new@Base 5.3.0
clutter_bind_constraint_get_coordinate@Base 5.3.0
clutter_bind_constraint_get_offset@Base 5.3.0
clutter_bind_constraint_get_source@Base 5.3.0
clutter_bind_constraint_get_type@Base 5.3.0
clutter_bind_constraint_new@Base 5.3.0
clutter_bind_constraint_set_coordinate@Base 5.3.0
clutter_bind_constraint_set_offset@Base 5.3.0
clutter_bind_constraint_set_source@Base 5.3.0
clutter_bind_coordinate_get_type@Base 5.3.0
clutter_binding_pool_activate@Base 5.3.0
clutter_binding_pool_block_action@Base 5.3.0
clutter_binding_pool_find@Base 5.3.0
clutter_binding_pool_find_action@Base 5.3.0
clutter_binding_pool_get_for_class@Base 5.3.0
clutter_binding_pool_get_type@Base 5.3.0
clutter_binding_pool_install_action@Base 5.3.0
clutter_binding_pool_install_closure@Base 5.3.0
clutter_binding_pool_new@Base 5.3.0
clutter_binding_pool_override_action@Base 5.3.0
clutter_binding_pool_override_closure@Base 5.3.0
clutter_binding_pool_remove_action@Base 5.3.0
clutter_binding_pool_unblock_action@Base 5.3.0
clutter_blur_effect_get_type@Base 5.3.0
clutter_blur_effect_new@Base 5.3.0
clutter_box_alignment_get_type@Base 5.3.0
clutter_box_get_color@Base 5.3.0
clutter_box_get_layout_manager@Base 5.3.0
clutter_box_get_type@Base 5.3.0
clutter_box_layout_get_alignment@Base 5.3.0
clutter_box_layout_get_easing_duration@Base 5.3.0
clutter_box_layout_get_easing_mode@Base 5.3.0
clutter_box_layout_get_expand@Base 5.3.0
clutter_box_layout_get_fill@Base 5.3.0
clutter_box_layout_get_homogeneous@Base 5.3.0
clutter_box_layout_get_orientation@Base 5.3.0
clutter_box_layout_get_pack_start@Base 5.3.0
clutter_box_layout_get_spacing@Base 5.3.0
clutter_box_layout_get_type@Base 5.3.0
clutter_box_layout_get_use_animations@Base 5.3.0
clutter_box_layout_get_vertical@Base 5.3.0
clutter_box_layout_new@Base 5.3.0
clutter_box_layout_pack@Base 5.3.0
clutter_box_layout_set_alignment@Base 5.3.0
clutter_box_layout_set_easing_duration@Base 5.3.0
clutter_box_layout_set_easing_mode@Base 5.3.0
clutter_box_layout_set_expand@Base 5.3.0
clutter_box_layout_set_fill@Base 5.3.0
clutter_box_layout_set_homogeneous@Base 5.3.0
clutter_box_layout_set_orientation@Base 5.3.0
clutter_box_layout_set_pack_start@Base 5.3.0
clutter_box_layout_set_spacing@Base 5.3.0
clutter_box_layout_set_use_animations@Base 5.3.0
clutter_box_layout_set_vertical@Base 5.3.0
clutter_box_new@Base 5.3.0
clutter_box_pack@Base 5.3.0
clutter_box_pack_after@Base 5.3.0
clutter_box_pack_at@Base 5.3.0
clutter_box_pack_before@Base 5.3.0
clutter_box_packv@Base 5.3.0
clutter_box_set_color@Base 5.3.0
clutter_box_set_layout_manager@Base 5.3.0
clutter_brightness_contrast_effect_get_brightness@Base 5.3.0
clutter_brightness_contrast_effect_get_contrast@Base 5.3.0
clutter_brightness_contrast_effect_get_type@Base 5.3.0
clutter_brightness_contrast_effect_new@Base 5.3.0
clutter_brightness_contrast_effect_set_brightness@Base 5.3.0
clutter_brightness_contrast_effect_set_brightness_full@Base 5.3.0
clutter_brightness_contrast_effect_set_contrast@Base 5.3.0
clutter_brightness_contrast_effect_set_contrast_full@Base 5.3.0
clutter_button_state_get_type@Base 5.3.0
clutter_cairo_clear@Base 5.3.0
clutter_cairo_set_source_color@Base 5.3.0
clutter_canvas_get_scale_factor@Base 5.3.0
clutter_canvas_get_type@Base 5.3.0
clutter_canvas_new@Base 5.3.0
clutter_canvas_set_scale_factor@Base 5.3.0
clutter_canvas_set_size@Base 5.3.0
clutter_check_windowing_backend@Base 5.3.0
clutter_child_meta_get_actor@Base 5.3.0
clutter_child_meta_get_container@Base 5.3.0
clutter_child_meta_get_type@Base 5.3.0
clutter_click_action_get_button@Base 5.3.0
clutter_click_action_get_coords@Base 5.3.0
clutter_click_action_get_state@Base 5.3.0
clutter_click_action_get_type@Base 5.3.0
clutter_click_action_new@Base 5.3.0
clutter_click_action_release@Base 5.3.0
clutter_clip_node_get_type@Base 5.3.0
clutter_clip_node_new@Base 5.3.0
clutter_clone_get_source@Base 5.3.0
clutter_clone_get_type@Base 5.3.0
clutter_clone_new@Base 5.3.0
clutter_clone_set_source@Base 5.3.0
clutter_color_add@Base 5.3.0
clutter_color_alloc@Base 5.3.0
clutter_color_copy@Base 5.3.0
clutter_color_darken@Base 5.3.0
clutter_color_equal@Base 5.3.0
clutter_color_free@Base 5.3.0
clutter_color_from_hls@Base 5.3.0
clutter_color_from_pixel@Base 5.3.0
clutter_color_from_string@Base 5.3.0
clutter_color_get_static@Base 5.3.0
clutter_color_get_type@Base 5.3.0
clutter_color_hash@Base 5.3.0
clutter_color_init@Base 5.3.0
clutter_color_interpolate@Base 5.3.0
clutter_color_lighten@Base 5.3.0
clutter_color_new@Base 5.3.0
clutter_color_node_get_type@Base 5.3.0
clutter_color_node_new@Base 5.3.0
clutter_color_shade@Base 5.3.0
clutter_color_subtract@Base 5.3.0
clutter_color_to_hls@Base 5.3.0
clutter_color_to_pixel@Base 5.3.0
clutter_color_to_string@Base 5.3.0
clutter_colorize_effect_get_tint@Base 5.3.0
clutter_colorize_effect_get_type@Base 5.3.0
clutter_colorize_effect_new@Base 5.3.0
clutter_colorize_effect_set_tint@Base 5.3.0
clutter_constraint_get_type@Base 5.3.0
clutter_constraint_update_preferred_size@Base 5.3.0
clutter_container_add@Base 5.3.0
clutter_container_add_actor@Base 5.3.0
clutter_container_child_get@Base 5.3.0
clutter_container_child_get_property@Base 5.3.0
clutter_container_child_notify@Base 5.3.0
clutter_container_child_set@Base 5.3.0
clutter_container_child_set_property@Base 5.3.0
clutter_container_class_find_child_property@Base 5.3.0
clutter_container_class_list_child_properties@Base 5.3.0
clutter_container_create_child_meta@Base 5.3.0
clutter_container_destroy_child_meta@Base 5.3.0
clutter_container_find_child_by_name@Base 5.3.0
clutter_container_get_child_meta@Base 5.3.0
clutter_container_get_children@Base 5.3.0
clutter_container_get_type@Base 5.3.0
clutter_container_lower_child@Base 5.3.0
clutter_container_raise_child@Base 5.3.0
clutter_container_remove@Base 5.3.0
clutter_container_remove_actor@Base 5.3.0
clutter_container_sort_depth_order@Base 5.3.0
clutter_content_get_preferred_size@Base 5.3.0
clutter_content_get_type@Base 5.3.0
clutter_content_gravity_get_type@Base 5.3.0
clutter_content_invalidate@Base 5.3.0
clutter_content_invalidate_size@Base 5.3.0
clutter_content_repeat_get_type@Base 5.3.0
clutter_debug_flag_get_type@Base 5.3.0
clutter_deform_effect_get_back_material@Base 5.3.0
clutter_deform_effect_get_n_tiles@Base 5.3.0
clutter_deform_effect_get_type@Base 5.3.0
clutter_deform_effect_invalidate@Base 5.3.0
clutter_deform_effect_set_back_material@Base 5.3.0
clutter_deform_effect_set_n_tiles@Base 5.3.0
clutter_desaturate_effect_get_factor@Base 5.3.0
clutter_desaturate_effect_get_type@Base 5.3.0
clutter_desaturate_effect_new@Base 5.3.0
clutter_desaturate_effect_set_factor@Base 5.3.0
clutter_disable_accessibility@Base 5.3.0
clutter_do_event@Base 5.3.0
clutter_drag_action_get_drag_area@Base 5.3.0
clutter_drag_action_get_drag_axis@Base 5.3.0
clutter_drag_action_get_drag_handle@Base 5.3.0
clutter_drag_action_get_drag_threshold@Base 5.3.0
clutter_drag_action_get_motion_coords@Base 5.3.0
clutter_drag_action_get_press_coords@Base 5.3.0
clutter_drag_action_get_type@Base 5.3.0
clutter_drag_action_new@Base 5.3.0
clutter_drag_action_set_drag_area@Base 5.3.0
clutter_drag_action_set_drag_axis@Base 5.3.0
clutter_drag_action_set_drag_handle@Base 5.3.0
clutter_drag_action_set_drag_threshold@Base 5.3.0
clutter_drag_axis_get_type@Base 5.3.0
clutter_draw_debug_flag_get_type@Base 5.3.0
clutter_drop_action_get_type@Base 5.3.0
clutter_drop_action_new@Base 5.3.0
clutter_effect_get_type@Base 5.3.0
clutter_effect_paint_flags_get_type@Base 5.3.0
clutter_effect_queue_repaint@Base 5.3.0
clutter_egl_get_egl_display@Base 6.0.0
clutter_event_add_filter@Base 5.3.0
clutter_event_copy@Base 5.3.0
clutter_event_flags_get_type@Base 5.3.0
clutter_event_free@Base 5.3.0
clutter_event_get@Base 5.3.0
clutter_event_get_angle@Base 5.3.0
clutter_event_get_axes@Base 5.3.0
clutter_event_get_button@Base 5.3.0
clutter_event_get_click_count@Base 5.3.0
clutter_event_get_coords@Base 5.3.0
clutter_event_get_device@Base 5.3.0
clutter_event_get_device_id@Base 5.3.0
clutter_event_get_device_tool@Base 5.3.0
clutter_event_get_device_type@Base 5.3.0
clutter_event_get_distance@Base 5.3.0
clutter_event_get_event_sequence@Base 5.3.0
clutter_event_get_flags@Base 5.3.0
clutter_event_get_gesture_motion_delta@Base 5.3.0
clutter_event_get_gesture_phase@Base 5.3.0
clutter_event_get_gesture_pinch_angle_delta@Base 5.3.0
clutter_event_get_gesture_pinch_scale@Base 5.3.0
clutter_event_get_key_code@Base 5.3.0
clutter_event_get_key_symbol@Base 5.3.0
clutter_event_get_key_unicode@Base 5.3.0
clutter_event_get_mode_group@Base 5.3.0
clutter_event_get_pad_event_details@Base 5.3.0
clutter_event_get_position@Base 5.3.0
clutter_event_get_related@Base 5.3.0
clutter_event_get_scroll_delta@Base 5.3.0
clutter_event_get_scroll_direction@Base 5.3.0
clutter_event_get_scroll_finish_flags@Base 5.3.0
clutter_event_get_scroll_source@Base 5.3.0
clutter_event_get_source@Base 5.3.0
clutter_event_get_source_device@Base 5.3.0
clutter_event_get_stage@Base 5.3.0
clutter_event_get_state@Base 5.3.0
clutter_event_get_state_full@Base 5.3.0
clutter_event_get_time@Base 5.3.0
clutter_event_get_touchpad_gesture_finger_count@Base 5.3.0
clutter_event_get_type@Base 5.3.0
clutter_event_has_control_modifier@Base 5.3.0
clutter_event_has_shift_modifier@Base 5.3.0
clutter_event_is_pointer_emulated@Base 5.3.0
clutter_event_new@Base 5.3.0
clutter_event_peek@Base 5.3.0
clutter_event_put@Base 5.3.0
clutter_event_remove_filter@Base 5.3.0
clutter_event_sequence_get_type@Base 5.3.0
clutter_event_set_button@Base 5.3.0
clutter_event_set_coords@Base 5.3.0
clutter_event_set_device@Base 5.3.0
clutter_event_set_device_tool@Base 5.3.0
clutter_event_set_flags@Base 5.3.0
clutter_event_set_key_code@Base 5.3.0
clutter_event_set_key_symbol@Base 5.3.0
clutter_event_set_key_unicode@Base 5.3.0
clutter_event_set_related@Base 5.3.0
clutter_event_set_scroll_delta@Base 5.3.0
clutter_event_set_scroll_direction@Base 5.3.0
clutter_event_set_source@Base 5.3.0
clutter_event_set_source_device@Base 5.3.0
clutter_event_set_stage@Base 5.3.0
clutter_event_set_state@Base 5.3.0
clutter_event_set_time@Base 5.3.0
clutter_event_type@Base 5.3.0
clutter_event_type_get_type@Base 5.3.0
clutter_events_pending@Base 5.3.0
clutter_feature_available@Base 5.3.0
clutter_feature_flags_get_type@Base 5.3.0
clutter_feature_get_all@Base 5.3.0
clutter_fixed_layout_get_type@Base 5.3.0
clutter_fixed_layout_new@Base 5.3.0
clutter_flow_layout_get_column_spacing@Base 5.3.0
clutter_flow_layout_get_column_width@Base 5.3.0
clutter_flow_layout_get_homogeneous@Base 5.3.0
clutter_flow_layout_get_orientation@Base 5.3.0
clutter_flow_layout_get_row_height@Base 5.3.0
clutter_flow_layout_get_row_spacing@Base 5.3.0
clutter_flow_layout_get_snap_to_grid@Base 5.3.0
clutter_flow_layout_get_type@Base 5.3.0
clutter_flow_layout_new@Base 5.3.0
clutter_flow_layout_set_column_spacing@Base 5.3.0
clutter_flow_layout_set_column_width@Base 5.3.0
clutter_flow_layout_set_homogeneous@Base 5.3.0
clutter_flow_layout_set_orientation@Base 5.3.0
clutter_flow_layout_set_row_height@Base 5.3.0
clutter_flow_layout_set_row_spacing@Base 5.3.0
clutter_flow_layout_set_snap_to_grid@Base 5.3.0
clutter_flow_orientation_get_type@Base 5.3.0
clutter_gesture_action_cancel@Base 5.3.0
clutter_gesture_action_get_device@Base 5.3.0
clutter_gesture_action_get_last_event@Base 5.3.0
clutter_gesture_action_get_motion_coords@Base 5.3.0
clutter_gesture_action_get_motion_delta@Base 5.3.0
clutter_gesture_action_get_n_current_points@Base 5.3.0
clutter_gesture_action_get_n_touch_points@Base 5.3.0
clutter_gesture_action_get_press_coords@Base 5.3.0
clutter_gesture_action_get_release_coords@Base 5.3.0
clutter_gesture_action_get_sequence@Base 5.3.0
clutter_gesture_action_get_threshold_trigger_distance@Base 5.3.0
clutter_gesture_action_get_threshold_trigger_edge@Base 5.3.0
clutter_gesture_action_get_threshold_trigger_egde@Base 5.3.0
clutter_gesture_action_get_type@Base 5.3.0
clutter_gesture_action_get_velocity@Base 5.3.0
clutter_gesture_action_new@Base 5.3.0
clutter_gesture_action_set_n_touch_points@Base 5.3.0
clutter_gesture_action_set_threshold_trigger_distance@Base 5.3.0
clutter_gesture_action_set_threshold_trigger_edge@Base 5.3.0
clutter_gesture_trigger_edge_get_type@Base 5.3.0
clutter_get_accessibility_enabled@Base 5.3.0
clutter_get_actor_by_gid@Base 5.3.0
clutter_get_current_event@Base 5.3.0
clutter_get_current_event_time@Base 5.3.0
clutter_get_default_backend@Base 5.3.0
clutter_get_default_frame_rate@Base 5.3.0
clutter_get_default_text_direction@Base 5.3.0
clutter_get_font_map@Base 5.3.0
clutter_get_option_group@Base 5.3.0
clutter_get_option_group_without_init@Base 5.3.0
clutter_get_script_id@Base 5.3.0
clutter_gravity_get_type@Base 5.3.0
clutter_grid_layout_attach@Base 5.3.0
clutter_grid_layout_attach_next_to@Base 5.3.0
clutter_grid_layout_get_child_at@Base 5.3.0
clutter_grid_layout_get_column_homogeneous@Base 5.3.0
clutter_grid_layout_get_column_spacing@Base 5.3.0
clutter_grid_layout_get_orientation@Base 5.3.0
clutter_grid_layout_get_row_homogeneous@Base 5.3.0
clutter_grid_layout_get_row_spacing@Base 5.3.0
clutter_grid_layout_get_type@Base 5.3.0
clutter_grid_layout_insert_column@Base 5.3.0
clutter_grid_layout_insert_next_to@Base 5.3.0
clutter_grid_layout_insert_row@Base 5.3.0
clutter_grid_layout_new@Base 5.3.0
clutter_grid_layout_set_column_homogeneous@Base 5.3.0
clutter_grid_layout_set_column_spacing@Base 5.3.0
clutter_grid_layout_set_orientation@Base 5.3.0
clutter_grid_layout_set_row_homogeneous@Base 5.3.0
clutter_grid_layout_set_row_spacing@Base 5.3.0
clutter_grid_position_get_type@Base 5.3.0
clutter_group_get_n_children@Base 5.3.0
clutter_group_get_nth_child@Base 5.3.0
clutter_group_get_type@Base 5.3.0
clutter_group_new@Base 5.3.0
clutter_group_remove_all@Base 5.3.0
clutter_image_error_get_type@Base 5.3.0
clutter_image_error_quark@Base 5.3.0
clutter_image_get_texture@Base 5.3.0
clutter_image_get_type@Base 5.3.0
clutter_image_new@Base 5.3.0
clutter_image_set_area@Base 5.3.0
clutter_image_set_bytes@Base 5.3.0
clutter_image_set_data@Base 5.3.0
clutter_init@Base 5.3.0
clutter_init_error_get_type@Base 5.3.0
clutter_init_error_quark@Base 5.3.0
clutter_init_with_args@Base 5.3.0
clutter_input_axis_get_type@Base 5.3.0
clutter_input_content_hint_flags_get_type@Base 5.3.0
clutter_input_content_purpose_get_type@Base 5.3.0
clutter_input_device_add_tool@Base 5.3.0
clutter_input_device_get_associated_device@Base 5.3.0
clutter_input_device_get_axis@Base 5.3.0
clutter_input_device_get_axis_value@Base 5.3.0
clutter_input_device_get_coords@Base 5.3.0
clutter_input_device_get_device_id@Base 5.3.0
clutter_input_device_get_device_mode@Base 5.3.0
clutter_input_device_get_device_name@Base 5.3.0
clutter_input_device_get_device_node@Base 5.3.0
clutter_input_device_get_device_type@Base 5.3.0
clutter_input_device_get_enabled@Base 5.3.0
clutter_input_device_get_grabbed_actor@Base 5.3.0
clutter_input_device_get_group_n_modes@Base 5.3.0
clutter_input_device_get_has_cursor@Base 5.3.0
clutter_input_device_get_key@Base 5.3.0
clutter_input_device_get_mapping_mode@Base 5.3.0
clutter_input_device_get_mode_switch_button_group@Base 5.3.0
clutter_input_device_get_modifier_state@Base 5.3.0
clutter_input_device_get_n_axes@Base 5.3.0
clutter_input_device_get_n_keys@Base 5.3.0
clutter_input_device_get_n_mode_groups@Base 5.3.0
clutter_input_device_get_n_rings@Base 5.3.0
clutter_input_device_get_n_strips@Base 5.3.0
clutter_input_device_get_pointer_actor@Base 5.3.0
clutter_input_device_get_pointer_stage@Base 5.3.0
clutter_input_device_get_product_id@Base 5.3.0
clutter_input_device_get_seat@Base 5.3.0
clutter_input_device_get_slave_devices@Base 5.3.0
clutter_input_device_get_type@Base 5.3.0
clutter_input_device_get_vendor_id@Base 5.3.0
clutter_input_device_grab@Base 5.3.0
clutter_input_device_is_grouped@Base 5.3.0
clutter_input_device_is_mode_switch_button@Base 5.3.0
clutter_input_device_keycode_to_evdev@Base 5.3.0
clutter_input_device_lookup_tool@Base 5.3.0
clutter_input_device_mapping_get_type@Base 5.3.0
clutter_input_device_pad_source_get_type@Base 5.3.0
clutter_input_device_sequence_get_grabbed_actor@Base 5.3.0
clutter_input_device_sequence_grab@Base 5.3.0
clutter_input_device_sequence_ungrab@Base 5.3.0
clutter_input_device_set_enabled@Base 5.3.0
clutter_input_device_set_key@Base 5.3.0
clutter_input_device_set_mapping_mode@Base 5.3.0
clutter_input_device_tool_get_id@Base 5.3.0
clutter_input_device_tool_get_serial@Base 5.3.0
clutter_input_device_tool_get_tool_type@Base 5.3.0
clutter_input_device_tool_get_type@Base 5.3.0
clutter_input_device_tool_type_get_type@Base 5.3.0
clutter_input_device_type_get_type@Base 5.3.0
clutter_input_device_ungrab@Base 5.3.0
clutter_input_device_update@Base 5.3.0
clutter_input_device_update_from_event@Base 5.3.0
clutter_input_device_update_from_tool@Base 5.3.0
clutter_input_focus_filter_event@Base 5.3.0
clutter_input_focus_get_type@Base 5.3.0
clutter_input_focus_is_focused@Base 5.3.0
clutter_input_focus_reset@Base 5.3.0
clutter_input_focus_set_can_show_preedit@Base 5.3.0
clutter_input_focus_set_content_hints@Base 5.3.0
clutter_input_focus_set_content_purpose@Base 5.3.0
clutter_input_focus_set_cursor_location@Base 5.3.0
clutter_input_focus_set_input_panel_state@Base 5.3.0
clutter_input_focus_set_surrounding@Base 5.3.0
clutter_input_method_commit@Base 5.3.0
clutter_input_method_delete_surrounding@Base 5.3.0
clutter_input_method_focus_in@Base 5.3.0
clutter_input_method_focus_out@Base 5.3.0
clutter_input_method_forward_key@Base 5.3.0
clutter_input_method_get_type@Base 5.3.0
clutter_input_method_notify_key_event@Base 5.3.0
clutter_input_method_request_surrounding@Base 5.3.0
clutter_input_method_set_input_panel_state@Base 5.3.0
clutter_input_method_set_preedit_text@Base 5.3.0
clutter_input_mode_get_type@Base 5.3.0
clutter_input_panel_state_get_type@Base 5.3.0
clutter_interpolation_get_type@Base 5.3.0
clutter_interval_clone@Base 5.3.0
clutter_interval_compute@Base 5.3.0
clutter_interval_compute_value@Base 5.3.0
clutter_interval_get_final_value@Base 5.3.0
clutter_interval_get_initial_value@Base 5.3.0
clutter_interval_get_interval@Base 5.3.0
clutter_interval_get_type@Base 5.3.0
clutter_interval_get_value_type@Base 5.3.0
clutter_interval_is_valid@Base 5.3.0
clutter_interval_new@Base 5.3.0
clutter_interval_new_with_values@Base 5.3.0
clutter_interval_peek_final_value@Base 5.3.0
clutter_interval_peek_initial_value@Base 5.3.0
clutter_interval_register_progress_func@Base 5.3.0
clutter_interval_set_final@Base 5.3.0
clutter_interval_set_final_value@Base 5.3.0
clutter_interval_set_initial@Base 5.3.0
clutter_interval_set_initial_value@Base 5.3.0
clutter_interval_set_interval@Base 5.3.0
clutter_interval_validate@Base 5.3.0
clutter_key_state_get_type@Base 5.3.0
clutter_keyboard_a11y_flags_get_type@Base 5.3.0
clutter_keyframe_transition_clear@Base 5.3.0
clutter_keyframe_transition_get_key_frame@Base 5.3.0
clutter_keyframe_transition_get_n_key_frames@Base 5.3.0
clutter_keyframe_transition_get_type@Base 5.3.0
clutter_keyframe_transition_new@Base 5.3.0
clutter_keyframe_transition_set@Base 5.3.0
clutter_keyframe_transition_set_key_frame@Base 5.3.0
clutter_keyframe_transition_set_key_frames@Base 5.3.0
clutter_keyframe_transition_set_modes@Base 5.3.0
clutter_keyframe_transition_set_values@Base 5.3.0
clutter_keymap_get_caps_lock_state@Base 5.3.0
clutter_keymap_get_num_lock_state@Base 5.3.0
clutter_keymap_get_type@Base 5.3.0
clutter_keysym_to_unicode@Base 5.3.0
clutter_knot_copy@Base 5.3.0
clutter_knot_equal@Base 5.3.0
clutter_knot_free@Base 5.3.0
clutter_knot_get_type@Base 5.3.0
clutter_layer_node_get_type@Base 5.3.0
clutter_layer_node_new@Base 5.3.0
clutter_layout_manager_allocate@Base 5.3.0
clutter_layout_manager_child_get@Base 5.3.0
clutter_layout_manager_child_get_property@Base 5.3.0
clutter_layout_manager_child_set@Base 5.3.0
clutter_layout_manager_child_set_property@Base 5.3.0
clutter_layout_manager_find_child_property@Base 5.3.0
clutter_layout_manager_get_child_meta@Base 5.3.0
clutter_layout_manager_get_preferred_height@Base 5.3.0
clutter_layout_manager_get_preferred_width@Base 5.3.0
clutter_layout_manager_get_type@Base 5.3.0
clutter_layout_manager_layout_changed@Base 5.3.0
clutter_layout_manager_list_child_properties@Base 5.3.0
clutter_layout_manager_set_container@Base 5.3.0
clutter_layout_meta_get_manager@Base 5.3.0
clutter_layout_meta_get_type@Base 5.3.0
clutter_long_press_state_get_type@Base 5.3.0
clutter_main@Base 5.3.0
clutter_main_level@Base 5.3.0
clutter_main_quit@Base 5.3.0
clutter_margin_copy@Base 5.3.0
clutter_margin_free@Base 5.3.0
clutter_margin_get_type@Base 5.3.0
clutter_margin_new@Base 5.3.0
clutter_matrix_alloc@Base 5.3.0
clutter_matrix_free@Base 5.3.0
clutter_matrix_get_type@Base 5.3.0
clutter_matrix_init_from_array@Base 5.3.0
clutter_matrix_init_from_matrix@Base 5.3.0
clutter_matrix_init_identity@Base 5.3.0
clutter_modifier_type_get_type@Base 5.3.0
clutter_offscreen_effect_create_texture@Base 5.3.0
clutter_offscreen_effect_get_target@Base 5.3.0
clutter_offscreen_effect_get_target_rect@Base 5.3.0
clutter_offscreen_effect_get_target_size@Base 5.3.0
clutter_offscreen_effect_get_texture@Base 5.3.0
clutter_offscreen_effect_get_type@Base 5.3.0
clutter_offscreen_effect_paint_target@Base 5.3.0
clutter_offscreen_redirect_get_type@Base 5.3.0
clutter_orientation_get_type@Base 5.3.0
clutter_page_turn_effect_get_angle@Base 5.3.0
clutter_page_turn_effect_get_period@Base 5.3.0
clutter_page_turn_effect_get_radius@Base 5.3.0
clutter_page_turn_effect_get_type@Base 5.3.0
clutter_page_turn_effect_new@Base 5.3.0
clutter_page_turn_effect_set_angle@Base 5.3.0
clutter_page_turn_effect_set_period@Base 5.3.0
clutter_page_turn_effect_set_radius@Base 5.3.0
clutter_paint_context_destroy@Base 5.3.0
clutter_paint_context_get_framebuffer@Base 5.3.0
clutter_paint_context_get_paint_flags@Base 5.3.0
clutter_paint_context_get_redraw_clip@Base 5.3.0
clutter_paint_context_get_stage_view@Base 5.3.0
clutter_paint_context_get_type@Base 5.3.0
clutter_paint_context_new_for_framebuffer@Base 5.3.0
clutter_paint_context_pop_framebuffer@Base 5.3.0
clutter_paint_context_push_framebuffer@Base 5.3.0
clutter_paint_context_ref@Base 5.3.0
clutter_paint_context_unref@Base 5.3.0
clutter_paint_node_add_child@Base 5.3.0
clutter_paint_node_add_multitexture_rectangle@Base 5.3.0
clutter_paint_node_add_path@Base 5.3.0
clutter_paint_node_add_primitive@Base 5.3.0
clutter_paint_node_add_rectangle@Base 5.3.0
clutter_paint_node_add_texture_rectangle@Base 5.3.0
clutter_paint_node_get_framebuffer@Base 5.3.0
clutter_paint_node_get_type@Base 5.3.0
clutter_paint_node_paint@Base 5.3.0
clutter_paint_node_ref@Base 5.3.0
clutter_paint_node_set_name@Base 5.3.0
clutter_paint_node_set_static_name@Base 5.3.0
clutter_paint_node_unref@Base 5.3.0
clutter_paint_volume_copy@Base 5.3.0
clutter_paint_volume_free@Base 5.3.0
clutter_paint_volume_get_depth@Base 5.3.0
clutter_paint_volume_get_height@Base 5.3.0
clutter_paint_volume_get_origin@Base 5.3.0
clutter_paint_volume_get_type@Base 5.3.0
clutter_paint_volume_get_width@Base 5.3.0
clutter_paint_volume_set_depth@Base 5.3.0
clutter_paint_volume_set_from_allocation@Base 5.3.0
clutter_paint_volume_set_height@Base 5.3.0
clutter_paint_volume_set_origin@Base 5.3.0
clutter_paint_volume_set_width@Base 5.3.0
clutter_paint_volume_union@Base 5.3.0
clutter_paint_volume_union_box@Base 5.3.0
clutter_pan_action_get_acceleration_factor@Base 5.3.0
clutter_pan_action_get_constrained_motion_delta@Base 5.3.0
clutter_pan_action_get_deceleration@Base 5.3.0
clutter_pan_action_get_interpolate@Base 5.3.0
clutter_pan_action_get_interpolated_coords@Base 5.3.0
clutter_pan_action_get_interpolated_delta@Base 5.3.0
clutter_pan_action_get_motion_coords@Base 5.3.0
clutter_pan_action_get_motion_delta@Base 5.3.0
clutter_pan_action_get_pan_axis@Base 5.3.0
clutter_pan_action_get_type@Base 5.3.0
clutter_pan_action_new@Base 5.3.0
clutter_pan_action_set_acceleration_factor@Base 5.3.0
clutter_pan_action_set_deceleration@Base 5.3.0
clutter_pan_action_set_interpolate@Base 5.3.0
clutter_pan_action_set_pan_axis@Base 5.3.0
clutter_pan_axis_get_type@Base 5.3.0
clutter_param_color_get_type@Base 5.3.0
clutter_param_spec_color@Base 5.3.0
clutter_param_spec_units@Base 5.3.0
clutter_param_units_get_type@Base 5.3.0
clutter_path_add_cairo_path@Base 5.3.0
clutter_path_add_close@Base 5.3.0
clutter_path_add_curve_to@Base 5.3.0
clutter_path_add_line_to@Base 5.3.0
clutter_path_add_move_to@Base 5.3.0
clutter_path_add_node@Base 5.3.0
clutter_path_add_rel_curve_to@Base 5.3.0
clutter_path_add_rel_line_to@Base 5.3.0
clutter_path_add_rel_move_to@Base 5.3.0
clutter_path_add_string@Base 5.3.0
clutter_path_clear@Base 5.3.0
clutter_path_constraint_get_offset@Base 5.3.0
clutter_path_constraint_get_path@Base 5.3.0
clutter_path_constraint_get_type@Base 5.3.0
clutter_path_constraint_new@Base 5.3.0
clutter_path_constraint_set_offset@Base 5.3.0
clutter_path_constraint_set_path@Base 5.3.0
clutter_path_foreach@Base 5.3.0
clutter_path_get_description@Base 5.3.0
clutter_path_get_length@Base 5.3.0
clutter_path_get_n_nodes@Base 5.3.0
clutter_path_get_node@Base 5.3.0
clutter_path_get_nodes@Base 5.3.0
clutter_path_get_position@Base 5.3.0
clutter_path_get_type@Base 5.3.0
clutter_path_insert_node@Base 5.3.0
clutter_path_new@Base 5.3.0
clutter_path_new_with_description@Base 5.3.0
clutter_path_node_copy@Base 5.3.0
clutter_path_node_equal@Base 5.3.0
clutter_path_node_free@Base 5.3.0
clutter_path_node_get_type@Base 5.3.0
clutter_path_node_type_get_type@Base 5.3.0
clutter_path_remove_node@Base 5.3.0
clutter_path_replace_node@Base 5.3.0
clutter_path_set_description@Base 5.3.0
clutter_path_to_cairo_path@Base 5.3.0
clutter_perspective_get_type@Base 5.3.0
clutter_pick_context_destroy@Base 5.3.0
clutter_pick_context_get_framebuffer@Base 5.3.0
clutter_pick_context_get_type@Base 5.3.0
clutter_pick_context_ref@Base 5.3.0
clutter_pick_context_unref@Base 5.3.0
clutter_pick_debug_flag_get_type@Base 5.3.0
clutter_pick_mode_get_type@Base 5.3.0
clutter_pipeline_node_get_type@Base 5.3.0
clutter_pipeline_node_new@Base 5.3.0
clutter_pointer_a11y_dwell_click_type_get_type@Base 5.3.0