qemu_serial.log 283 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177
  1. [ 0.169047] virt/tdx: TDX not supported by the host platform
  2. [2026-08-26 08:00:27 +0000] [INFO] [ark.log] ArkOS Runtime Daemon starting as PID 1...
  3. [2026-08-26 08:00:27 +0000] [INFO] [ark.log] PID=1, UID=0
  4. [2026-08-26 08:00:27 +0000] [INFO] [ark.log] System: 2 CPU cores, 1956 MB RAM, RSS=9648 KB
  5. [2026-08-26 08:00:27 +0000] [INFO] [ark.log] Mounting system partitions...
  6. [2026-08-26 08:00:27 +0000] [INFO] [ark.log] arkrt: /dev contents: dev_node
  7. [2026-08-26 08:00:27 +0000] [INFO] [ark.log] Mounted tmpfs → /run (tmpfs)
  8. [2026-08-26 08:00:27 +0000] [INFO] [ark.log] Mounted tmpfs → /tmp (tmpfs)
  9. [2026-08-26 08:00:27 +0000] [INFO] [ark.log] Mounted /dev/vdb → /system (ext4)
  10. [2026-08-26 08:00:27 +0000] [INFO] [ark.log] Mounted /dev/vdc → /vendor (ext4)
  11. [2026-08-26 08:00:27 +0000] [INFO] [ark.log] Configuring network interfaces...
  12. [2026-08-26 08:00:27 +0000] [WARN] [ark.service.network] No network interfaces found
  13. [2026-08-26 08:00:27 +0000] [INFO] [ark.service.network] Starting link state monitor (poll every 5s)
  14. [2026-08-26 08:00:27 +0000] [INFO] [ark.log] Starting IPC server...
  15. [2026-08-26 08:00:27 +0000] [INFO] [ark.sys.service] Initializing Unix domain socket at /dev/arkrt.sock...
  16. [2026-08-26 08:00:27 +0000] [INFO] [ark.sys.service] Listening on /dev/arkrt.sock (backlog=16)
  17. [2026-08-26 08:00:27 +0000] [INFO] [ark.log] Initializing monolithic display daemon...
  18. ArkCompositor: Mapped /dev/fb0 (1024x768, 4 bpp)
  19. wl_global_create: display=0x48ed41e0100 created global wl_shm, global_list empty? 0
  20. ArkCompositor: wl_display_init_shm returned 0
  21. wl_global_create: display=0x48ed41e0100 created global wl_compositor, global_list empty? 0
  22. ArkCompositor: wl_global_create compositor returned 0x48ed40a0dc0
  23. ArkCompositor: Wayland server listening on socket 'wayland-0'
  24. ArkCompositor: Core Wayland Server Started.
  25. [2026-08-26 08:00:27 +0000] [INFO] [ark.log] Starting display event loop...
  26. [2026-08-26 08:00:27 +0000] [INFO] [ark.log] Rendering boot splash...
  27. ui_daemon: Animating Splash Screen in 4K Wayland mode...
  28. ArkCompositor: Starting custom wl_display_run loop...
  29. [08:00:27.949855] {Default Queue}  -> wl_display#1.get_registry(new id wl_registry#2)
  30. [08:00:27.950824] {Default Queue}  -> wl_display#1.sync(new id wl_callback#3)
  31. [08:00:27.951488] wl_display#1.get_registry(new id wl_registry#2)
  32. display_get_registry: display=0x48ed41e0100, global_list empty? 0
  33. display_get_registry: global wl_shm version 2 (is_visible: 1)
  34. [08:00:27.952403]  -> wl_registry#2.global(1, "wl_shm", 2)
  35. display_get_registry: global wl_compositor version 4 (is_visible: 1)
  36. [08:00:27.952545]  -> wl_registry#2.global(2, "wl_compositor", 4)
  37. [08:00:27.952623] wl_display#1.sync(new id wl_callback#3)
  38. [08:00:27.952697]  -> wl_callback#3.done(0)
  39. [08:00:27.952772]  -> wl_display#1.delete_id(3)
  40. [08:00:27.955626] {Display Queue} wl_display#1.delete_id(3)
  41. [08:00:27.955731] {Default Queue} wl_registry#2.global(1, "wl_shm", 2)
  42. [08:00:27.955814] {Default Queue}  -> wl_registry#2.bind(1, "wl_shm", 1, new id [unknown]#4)
  43. [08:00:27.955888] {Default Queue} wl_registry#2.global(2, "wl_compositor", 4)
  44. [08:00:27.956038] {Default Queue}  -> wl_registry#2.bind(2, "wl_compositor", 1, new id [unknown]#5)
  45. [08:00:27.956113] {Default Queue} wl_callback#3.done(0)
  46. ArkGraphics (Client): Connected to Wayland Server
  47. [08:00:27.956274] {Default Queue}  -> wl_compositor#5.create_surface(new id wl_surface#3)
  48. [08:00:27.956372] {Default Queue}  -> wl_shm#4.create_pool(new id wl_shm_pool#6, fd 16, 8294400)
  49. [08:00:27.956426] {Default Queue}  -> wl_shm_pool#6.create_buffer(new id wl_buffer#7, 0, 1920, 1080, 7680, 0)
  50. [08:00:27.956500] {Default Queue}  -> wl_shm_pool#6.destroy()
  51. [08:00:27.963420] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  52. [08:00:27.963452] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  53. [08:00:27.963460] {Default Queue}  -> wl_surface#3.commit()
  54. [08:00:27.965219] wl_registry#2.bind(1, "wl_shm", 1, new id [unknown]#4)
  55. [08:00:27.965798]  -> wl_shm#4.format(0)
  56. [08:00:27.966218]  -> wl_shm#4.format(1)
  57. [08:00:27.966632] wl_registry#2.bind(2, "wl_compositor", 1, new id [unknown]#5)
  58. ArkCompositor: bind_compositor called for client 0x48ed6010100, id 5
  59. [08:00:27.967639] wl_compositor#5.create_surface(new id wl_surface#3)
  60. ArkCompositor: compositor_create_surface called for client 0x48ed6010100, id 3
  61. [08:00:27.968345] wl_shm#4.create_pool(new id wl_shm_pool#6, fd 15, 8294400)
  62. [08:00:27.968543] wl_shm_pool#6.create_buffer(new id wl_buffer#7, 0, 1920, 1080, 7680, 0)
  63. WaylandLog: shm_pool_create_buffer: id=7, offset=0, width=1920, height=1080, stride=7680, format=0x0
  64. [08:00:27.968675] wl_shm_pool#6.destroy()
  65. [08:00:27.968759]  -> wl_display#1.delete_id(6)
  66. [08:00:27.968848] wl_surface#3.attach(wl_buffer#7, 0, 0)
  67. [08:00:27.969000] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  68. [08:00:27.969076] wl_surface#3.commit()
  69. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  70. ArkCompositor: shm_buffer=0x48ed60e0100
  71. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  72. [08:00:27.972158]  -> wl_buffer#7.release()
  73. [08:00:27.986413] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  74. [08:00:27.986461] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  75. [08:00:27.986589] {Default Queue}  -> wl_surface#3.commit()
  76. [08:00:27.988357] wl_surface#3.attach(wl_buffer#7, 0, 0)
  77. [08:00:27.988872] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  78. [08:00:27.989464] wl_surface#3.commit()
  79. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  80. ArkCompositor: shm_buffer=0x48ed60e0100
  81. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  82. [08:00:27.992349]  -> wl_buffer#7.release()
  83. [08:00:28.007552] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  84. [08:00:28.007629] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  85. [08:00:28.007642] {Default Queue}  -> wl_surface#3.commit()
  86. [08:00:28.009621] wl_surface#3.attach(wl_buffer#7, 0, 0)
  87. [08:00:28.010146] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  88. [08:00:28.010716] wl_surface#3.commit()
  89. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  90. ArkCompositor: shm_buffer=0x48ed60e0100
  91. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  92. [08:00:28.012697]  -> wl_buffer#7.release()
  93. [08:00:28.028882] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  94. [08:00:28.029071] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  95. [08:00:28.029175] {Default Queue}  -> wl_surface#3.commit()
  96. [08:00:28.030954] wl_surface#3.attach(wl_buffer#7, 0, 0)
  97. [08:00:28.031485] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  98. [08:00:28.032059] wl_surface#3.commit()
  99. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  100. ArkCompositor: shm_buffer=0x48ed60e0100
  101. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  102. [08:00:28.034764]  -> wl_buffer#7.release()
  103. [08:00:28.049992] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  104. [08:00:28.050040] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  105. [08:00:28.050050] {Default Queue}  -> wl_surface#3.commit()
  106. [08:00:28.060525] wl_surface#3.attach(wl_buffer#7, 0, 0)
  107. [08:00:28.063478] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  108. [08:00:28.063577] wl_surface#3.commit()
  109. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  110. ArkCompositor: shm_buffer=0x48ed60e0100
  111. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  112. [08:00:28.064916]  -> wl_buffer#7.release()
  113. [08:00:28.069634] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  114. [08:00:28.069857] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  115. [08:00:28.070215] {Default Queue}  -> wl_surface#3.commit()
  116. [08:00:28.083117] wl_surface#3.attach(wl_buffer#7, 0, 0)
  117. [08:00:28.084354] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  118. [08:00:28.084921] wl_surface#3.commit()
  119. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  120. ArkCompositor: shm_buffer=0x48ed60e0100
  121. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  122. [08:00:28.087627]  -> wl_buffer#7.release()
  123. [08:00:28.090613] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  124. [08:00:28.090648] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  125. [08:00:28.090751] {Default Queue}  -> wl_surface#3.commit()
  126. [08:00:28.092502] wl_surface#3.attach(wl_buffer#7, 0, 0)
  127. [08:00:28.093009] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  128. [08:00:28.093556] wl_surface#3.commit()
  129. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  130. ArkCompositor: shm_buffer=0x48ed60e0100
  131. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  132. [08:00:28.095494]  -> wl_buffer#7.release()
  133. [08:00:28.112796] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  134. [08:00:28.112839] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  135. [08:00:28.112849] {Default Queue}  -> wl_surface#3.commit()
  136. [08:00:28.119979] wl_surface#3.attach(wl_buffer#7, 0, 0)
  137. [08:00:28.121253] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  138. [08:00:28.122617] wl_surface#3.commit()
  139. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  140. ArkCompositor: shm_buffer=0x48ed60e0100
  141. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  142. [08:00:28.123675]  -> wl_buffer#7.release()
  143. [08:00:28.135165] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  144. [08:00:28.135218] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  145. [08:00:28.135233] {Default Queue}  -> wl_surface#3.commit()
  146. [08:00:28.137961] wl_surface#3.attach(wl_buffer#7, 0, 0)
  147. [08:00:28.138794] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  148. [08:00:28.139783] wl_surface#3.commit()
  149. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  150. ArkCompositor: shm_buffer=0x48ed60e0100
  151. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  152. [08:00:28.143116]  -> wl_buffer#7.release()
  153. [08:00:28.157597] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  154. [08:00:28.157664] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  155. [08:00:28.157679] {Default Queue}  -> wl_surface#3.commit()
  156. [08:00:28.159933] wl_surface#3.attach(wl_buffer#7, 0, 0)
  157. [08:00:28.160435] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  158. [08:00:28.161018] wl_surface#3.commit()
  159. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  160. ArkCompositor: shm_buffer=0x48ed60e0100
  161. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  162. [08:00:28.163083]  -> wl_buffer#7.release()
  163. [08:00:28.181876] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  164. [08:00:28.181931] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  165. [08:00:28.182087] {Default Queue}  -> wl_surface#3.commit()
  166. [08:00:28.184346] wl_surface#3.attach(wl_buffer#7, 0, 0)
  167. [08:00:28.184901] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  168. [08:00:28.185602] wl_surface#3.commit()
  169. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  170. ArkCompositor: shm_buffer=0x48ed60e0100
  171. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  172. [08:00:28.187652]  -> wl_buffer#7.release()
  173. [08:00:28.203929] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  174. [08:00:28.203978] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  175. [08:00:28.204113] {Default Queue}  -> wl_surface#3.commit()
  176. [08:00:28.206073] wl_surface#3.attach(wl_buffer#7, 0, 0)
  177. [08:00:28.206693] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  178. [08:00:28.207266] wl_surface#3.commit()
  179. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  180. ArkCompositor: shm_buffer=0x48ed60e0100
  181. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  182. [08:00:28.210488]  -> wl_buffer#7.release()
  183. [08:00:28.225704] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  184. [08:00:28.225751] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  185. [08:00:28.226008] {Default Queue}  -> wl_surface#3.commit()
  186. [08:00:28.227718] wl_surface#3.attach(wl_buffer#7, 0, 0)
  187. [08:00:28.228229] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  188. [08:00:28.228786] wl_surface#3.commit()
  189. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  190. ArkCompositor: shm_buffer=0x48ed60e0100
  191. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  192. [08:00:28.230714]  -> wl_buffer#7.release()
  193. [08:00:28.246640] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  194. [08:00:28.246679] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  195. [08:00:28.246689] {Default Queue}  -> wl_surface#3.commit()
  196. [08:00:28.249802] wl_surface#3.attach(wl_buffer#7, 0, 0)
  197. [08:00:28.250706] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  198. [08:00:28.251712] wl_surface#3.commit()
  199. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  200. ArkCompositor: shm_buffer=0x48ed60e0100
  201. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  202. [08:00:28.253104]  -> wl_buffer#7.release()
  203. [08:00:28.270713] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  204. [08:00:28.270800] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  205. [08:00:28.270815] {Default Queue}  -> wl_surface#3.commit()
  206. [08:00:28.272712] wl_surface#3.attach(wl_buffer#7, 0, 0)
  207. [08:00:28.273288] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  208. [08:00:28.273912] wl_surface#3.commit()
  209. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  210. ArkCompositor: shm_buffer=0x48ed60e0100
  211. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  212. [08:00:28.278153]  -> wl_buffer#7.release()
  213. [08:00:28.294196] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  214. [08:00:28.294252] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  215. [08:00:28.294439] {Default Queue}  -> wl_surface#3.commit()
  216. [08:00:28.297114] wl_surface#3.attach(wl_buffer#7, 0, 0)
  217. [08:00:28.297812] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  218. [08:00:28.298507] wl_surface#3.commit()
  219. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  220. ArkCompositor: shm_buffer=0x48ed60e0100
  221. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  222. [08:00:28.299532]  -> wl_buffer#7.release()
  223. [08:00:28.317210] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  224. [08:00:28.317253] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  225. [08:00:28.317401] {Default Queue}  -> wl_surface#3.commit()
  226. [08:00:28.319398] wl_surface#3.attach(wl_buffer#7, 0, 0)
  227. [08:00:28.319913] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  228. [08:00:28.320495] wl_surface#3.commit()
  229. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  230. ArkCompositor: shm_buffer=0x48ed60e0100
  231. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  232. [08:00:28.322367]  -> wl_buffer#7.release()
  233. [08:00:28.339558] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  234. [08:00:28.339596] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  235. [08:00:28.339722] {Default Queue}  -> wl_surface#3.commit()
  236. [08:00:28.341617] wl_surface#3.attach(wl_buffer#7, 0, 0)
  237. [08:00:28.342125] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  238. [08:00:28.342697] wl_surface#3.commit()
  239. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  240. ArkCompositor: shm_buffer=0x48ed60e0100
  241. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  242. [08:00:28.345297]  -> wl_buffer#7.release()
  243. [08:00:28.361311] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  244. [08:00:28.361345] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  245. [08:00:28.361463] {Default Queue}  -> wl_surface#3.commit()
  246. [08:00:28.363242] wl_surface#3.attach(wl_buffer#7, 0, 0)
  247. [08:00:28.363737] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  248. [08:00:28.364417] wl_surface#3.commit()
  249. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  250. ArkCompositor: shm_buffer=0x48ed60e0100
  251. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  252. [08:00:28.366440]  -> wl_buffer#7.release()
  253. [08:00:28.383399] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  254. [08:00:28.383437] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  255. [08:00:28.383558] {Default Queue}  -> wl_surface#3.commit()
  256. [08:00:28.385396] wl_surface#3.attach(wl_buffer#7, 0, 0)
  257. [08:00:28.386015] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  258. [08:00:28.386600] wl_surface#3.commit()
  259. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  260. ArkCompositor: shm_buffer=0x48ed60e0100
  261. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  262. [08:00:28.388460]  -> wl_buffer#7.release()
  263. [08:00:28.405304] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  264. [08:00:28.405340] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  265. [08:00:28.405460] {Default Queue}  -> wl_surface#3.commit()
  266. [08:00:28.407240] wl_surface#3.attach(wl_buffer#7, 0, 0)
  267. [08:00:28.407759] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  268. [08:00:28.408340] wl_surface#3.commit()
  269. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  270. ArkCompositor: shm_buffer=0x48ed60e0100
  271. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  272. [08:00:28.410961]  -> wl_buffer#7.release()
  273. [08:00:28.426949] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  274. [08:00:28.426995] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  275. [08:00:28.427122] {Default Queue}  -> wl_surface#3.commit()
  276. [08:00:28.428979] wl_surface#3.attach(wl_buffer#7, 0, 0)
  277. [08:00:28.429503] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  278. [08:00:28.430087] wl_surface#3.commit()
  279. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  280. ArkCompositor: shm_buffer=0x48ed60e0100
  281. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  282. [08:00:28.431950]  -> wl_buffer#7.release()
  283. [08:00:28.448961] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  284. [08:00:28.448995] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  285. [08:00:28.449120] {Default Queue}  -> wl_surface#3.commit()
  286. [08:00:28.450951] wl_surface#3.attach(wl_buffer#7, 0, 0)
  287. [08:00:28.451474] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  288. [08:00:28.452048] wl_surface#3.commit()
  289. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  290. ArkCompositor: shm_buffer=0x48ed60e0100
  291. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  292. [08:00:28.453897]  -> wl_buffer#7.release()
  293. [08:00:28.470783] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  294. [08:00:28.470821] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  295. [08:00:28.471058] {Default Queue}  -> wl_surface#3.commit()
  296. [08:00:28.472747] wl_surface#3.attach(wl_buffer#7, 0, 0)
  297. [08:00:28.473273] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  298. [08:00:28.473833] wl_surface#3.commit()
  299. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  300. ArkCompositor: shm_buffer=0x48ed60e0100
  301. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  302. [08:00:28.476354]  -> wl_buffer#7.release()
  303. [08:00:28.492610] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  304. [08:00:28.492647] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  305. [08:00:28.492762] {Default Queue}  -> wl_surface#3.commit()
  306. [08:00:28.494567] wl_surface#3.attach(wl_buffer#7, 0, 0)
  307. [08:00:28.495082] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  308. [08:00:28.495647] wl_surface#3.commit()
  309. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  310. ArkCompositor: shm_buffer=0x48ed60e0100
  311. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  312. [08:00:28.497550]  -> wl_buffer#7.release()
  313. [08:00:28.515496] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  314. [08:00:28.515548] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  315. [08:00:28.515693] {Default Queue}  -> wl_surface#3.commit()
  316. [08:00:28.517759] wl_surface#3.attach(wl_buffer#7, 0, 0)
  317. [08:00:28.518285] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  318. [08:00:28.518843] wl_surface#3.commit()
  319. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  320. ArkCompositor: shm_buffer=0x48ed60e0100
  321. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  322. [08:00:28.520679]  -> wl_buffer#7.release()
  323. [08:00:28.538969] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  324. [08:00:28.539012] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  325. [08:00:28.539153] {Default Queue}  -> wl_surface#3.commit()
  326. [08:00:28.541245] wl_surface#3.attach(wl_buffer#7, 0, 0)
  327. [08:00:28.541776] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  328. [08:00:28.542360] wl_surface#3.commit()
  329. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  330. ArkCompositor: shm_buffer=0x48ed60e0100
  331. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  332. [08:00:28.544840]  -> wl_buffer#7.release()
  333. [08:00:28.561002] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  334. [08:00:28.561034] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  335. [08:00:28.561151] {Default Queue}  -> wl_surface#3.commit()
  336. [08:00:28.562995] wl_surface#3.attach(wl_buffer#7, 0, 0)
  337. [08:00:28.563506] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  338. [08:00:28.564069] wl_surface#3.commit()
  339. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  340. ArkCompositor: shm_buffer=0x48ed60e0100
  341. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  342. [08:00:28.566000]  -> wl_buffer#7.release()
  343. [08:00:28.583183] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  344. [08:00:28.583221] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  345. [08:00:28.583361] {Default Queue}  -> wl_surface#3.commit()
  346. [08:00:28.585191] wl_surface#3.attach(wl_buffer#7, 0, 0)
  347. [08:00:28.585708] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  348. [08:00:28.586291] wl_surface#3.commit()
  349. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  350. ArkCompositor: shm_buffer=0x48ed60e0100
  351. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  352. [08:00:28.588131]  -> wl_buffer#7.release()
  353. [08:00:28.605362] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  354. [08:00:28.605401] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  355. [08:00:28.605525] {Default Queue}  -> wl_surface#3.commit()
  356. [08:00:28.607365] wl_surface#3.attach(wl_buffer#7, 0, 0)
  357. [08:00:28.608022] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  358. [08:00:28.608591] wl_surface#3.commit()
  359. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  360. ArkCompositor: shm_buffer=0x48ed60e0100
  361. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  362. [08:00:28.611157]  -> wl_buffer#7.release()
  363. [08:00:28.627252] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  364. [08:00:28.627299] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  365. [08:00:28.627426] {Default Queue}  -> wl_surface#3.commit()
  366. [08:00:28.629246] wl_surface#3.attach(wl_buffer#7, 0, 0)
  367. [08:00:28.629751] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  368. [08:00:28.630352] wl_surface#3.commit()
  369. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  370. ArkCompositor: shm_buffer=0x48ed60e0100
  371. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  372. [08:00:28.632305]  -> wl_buffer#7.release()
  373. [08:00:28.649469] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  374. [08:00:28.649519] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  375. [08:00:28.649655] {Default Queue}  -> wl_surface#3.commit()
  376. [08:00:28.651515] wl_surface#3.attach(wl_buffer#7, 0, 0)
  377. [08:00:28.652033] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  378. [08:00:28.652605] wl_surface#3.commit()
  379. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  380. ArkCompositor: shm_buffer=0x48ed60e0100
  381. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  382. [08:00:28.654568]  -> wl_buffer#7.release()
  383. [08:00:28.671680] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  384. [08:00:28.671726] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  385. [08:00:28.671863] {Default Queue}  -> wl_surface#3.commit()
  386. [08:00:28.673752] wl_surface#3.attach(wl_buffer#7, 0, 0)
  387. [08:00:28.676163] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  388. [08:00:28.679300] wl_surface#3.commit()
  389. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  390. ArkCompositor: shm_buffer=0x48ed60e0100
  391. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  392. [08:00:28.680930]  -> wl_buffer#7.release()
  393. [08:00:28.692148] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  394. [08:00:28.692178] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  395. [08:00:28.692187] {Default Queue}  -> wl_surface#3.commit()
  396. [08:00:28.694668] wl_surface#3.attach(wl_buffer#7, 0, 0)
  397. [08:00:28.695194] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  398. [08:00:28.695755] wl_surface#3.commit()
  399. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  400. ArkCompositor: shm_buffer=0x48ed60e0100
  401. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  402. [08:00:28.697802]  -> wl_buffer#7.release()
  403. [08:00:28.716787] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  404. [08:00:28.716847] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  405. [08:00:28.716861] {Default Queue}  -> wl_surface#3.commit()
  406. [08:00:28.720119] wl_surface#3.attach(wl_buffer#7, 0, 0)
  407. [08:00:28.721009] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  408. [08:00:28.721047] wl_surface#3.commit()
  409. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  410. ArkCompositor: shm_buffer=0x48ed60e0100
  411. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  412. [08:00:28.722027]  -> wl_buffer#7.release()
  413. [08:00:28.740071] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  414. [08:00:28.740124] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  415. [08:00:28.740136] {Default Queue}  -> wl_surface#3.commit()
  416. [08:00:28.742526] wl_surface#3.attach(wl_buffer#7, 0, 0)
  417. [08:00:28.743076] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  418. [08:00:28.743664] wl_surface#3.commit()
  419. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  420. ArkCompositor: shm_buffer=0x48ed60e0100
  421. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  422. [08:00:28.746301]  -> wl_buffer#7.release()
  423. [08:00:28.761701] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  424. [08:00:28.761746] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  425. [08:00:28.761756] {Default Queue}  -> wl_surface#3.commit()
  426. [08:00:28.763847] wl_surface#3.attach(wl_buffer#7, 0, 0)
  427. [08:00:28.764400] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  428. [08:00:28.764970] wl_surface#3.commit()
  429. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  430. ArkCompositor: shm_buffer=0x48ed60e0100
  431. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  432. [08:00:28.766971]  -> wl_buffer#7.release()
  433. [08:00:28.783837] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  434. [08:00:28.783879] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  435. [08:00:28.783890] {Default Queue}  -> wl_surface#3.commit()
  436. [08:00:28.786022] wl_surface#3.attach(wl_buffer#7, 0, 0)
  437. [08:00:28.786521] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  438. [08:00:28.787105] wl_surface#3.commit()
  439. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  440. ArkCompositor: shm_buffer=0x48ed60e0100
  441. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  442. [08:00:28.789094]  -> wl_buffer#7.release()
  443. [08:00:28.805421] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  444. [08:00:28.805463] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  445. [08:00:28.805473] {Default Queue}  -> wl_surface#3.commit()
  446. [08:00:28.807559] wl_surface#3.attach(wl_buffer#7, 0, 0)
  447. [08:00:28.808091] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  448. [08:00:28.808655] wl_surface#3.commit()
  449. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  450. ArkCompositor: shm_buffer=0x48ed60e0100
  451. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  452. [08:00:28.811406]  -> wl_buffer#7.release()
  453. [08:00:28.827109] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  454. [08:00:28.827149] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  455. [08:00:28.827159] {Default Queue}  -> wl_surface#3.commit()
  456. [08:00:28.829271] wl_surface#3.attach(wl_buffer#7, 0, 0)
  457. [08:00:28.829836] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  458. [08:00:28.830447] wl_surface#3.commit()
  459. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  460. ArkCompositor: shm_buffer=0x48ed60e0100
  461. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  462. [08:00:28.832492]  -> wl_buffer#7.release()
  463. [08:00:28.848977] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  464. [08:00:28.849024] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  465. [08:00:28.849140] {Default Queue}  -> wl_surface#3.commit()
  466. [08:00:28.850928] wl_surface#3.attach(wl_buffer#7, 0, 0)
  467. [08:00:28.851437] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  468. [08:00:28.852010] wl_surface#3.commit()
  469. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  470. ArkCompositor: shm_buffer=0x48ed60e0100
  471. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  472. [08:00:28.853960]  -> wl_buffer#7.release()
  473. [08:00:28.871345] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  474. [08:00:28.871383] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  475. [08:00:28.871494] {Default Queue}  -> wl_surface#3.commit()
  476. [08:00:28.873355] wl_surface#3.attach(wl_buffer#7, 0, 0)
  477. [08:00:28.874051] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  478. [08:00:28.875061] wl_surface#3.commit()
  479. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  480. ArkCompositor: shm_buffer=0x48ed60e0100
  481. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  482. [08:00:28.878270]  -> wl_buffer#7.release()
  483. [08:00:28.892392] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  484. [08:00:28.892422] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  485. [08:00:28.892535] {Default Queue}  -> wl_surface#3.commit()
  486. [08:00:28.894214] wl_surface#3.attach(wl_buffer#7, 0, 0)
  487. [08:00:28.894728] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  488. [08:00:28.895302] wl_surface#3.commit()
  489. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  490. ArkCompositor: shm_buffer=0x48ed60e0100
  491. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  492. [08:00:28.897156]  -> wl_buffer#7.release()
  493. [08:00:28.914428] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  494. [08:00:28.914475] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  495. [08:00:28.914607] {Default Queue}  -> wl_surface#3.commit()
  496. [08:00:28.916398] wl_surface#3.attach(wl_buffer#7, 0, 0)
  497. [08:00:28.916892] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  498. [08:00:28.917513] wl_surface#3.commit()
  499. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  500. ArkCompositor: shm_buffer=0x48ed60e0100
  501. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  502. [08:00:28.919519]  -> wl_buffer#7.release()
  503. [08:00:28.935973] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  504. [08:00:28.936014] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  505. [08:00:28.936133] {Default Queue}  -> wl_surface#3.commit()
  506. [08:00:28.937859] wl_surface#3.attach(wl_buffer#7, 0, 0)
  507. [08:00:28.938379] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  508. [08:00:28.938944] wl_surface#3.commit()
  509. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  510. ArkCompositor: shm_buffer=0x48ed60e0100
  511. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  512. [08:00:28.941469]  -> wl_buffer#7.release()
  513. [08:00:28.957573] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  514. [08:00:28.957623] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  515. [08:00:28.957746] {Default Queue}  -> wl_surface#3.commit()
  516. [08:00:28.959491] wl_surface#3.attach(wl_buffer#7, 0, 0)
  517. [08:00:28.960010] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  518. [08:00:28.960572] wl_surface#3.commit()
  519. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  520. ArkCompositor: shm_buffer=0x48ed60e0100
  521. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  522. [08:00:28.962529]  -> wl_buffer#7.release()
  523. [08:00:28.979276] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  524. [08:00:28.979322] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  525. [08:00:28.979451] {Default Queue}  -> wl_surface#3.commit()
  526. [08:00:28.981216] wl_surface#3.attach(wl_buffer#7, 0, 0)
  527. [08:00:28.981730] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  528. [08:00:28.982302] wl_surface#3.commit()
  529. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  530. ArkCompositor: shm_buffer=0x48ed60e0100
  531. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  532. [08:00:28.984231]  -> wl_buffer#7.release()
  533. [08:00:29.000984] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  534. [08:00:29.001027] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  535. [08:00:29.001150] {Default Queue}  -> wl_surface#3.commit()
  536. [08:00:29.002899] wl_surface#3.attach(wl_buffer#7, 0, 0)
  537. [08:00:29.003418] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  538. [08:00:29.003974] wl_surface#3.commit()
  539. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  540. ArkCompositor: shm_buffer=0x48ed60e0100
  541. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  542. [08:00:29.006520]  -> wl_buffer#7.release()
  543. [08:00:29.024045] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  544. [08:00:29.024117] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  545. [08:00:29.024136] {Default Queue}  -> wl_surface#3.commit()
  546. [08:00:29.027674] wl_surface#3.attach(wl_buffer#7, 0, 0)
  547. [08:00:29.028569] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  548. [08:00:29.029425] wl_surface#3.commit()
  549. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  550. ArkCompositor: shm_buffer=0x48ed60e0100
  551. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  552. [08:00:29.032001]  -> wl_buffer#7.release()
  553. [08:00:29.046099] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  554. [08:00:29.046154] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  555. [08:00:29.046299] {Default Queue}  -> wl_surface#3.commit()
  556. [08:00:29.048089] wl_surface#3.attach(wl_buffer#7, 0, 0)
  557. [08:00:29.048597] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  558. [08:00:29.049159] wl_surface#3.commit()
  559. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  560. ArkCompositor: shm_buffer=0x48ed60e0100
  561. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  562. [08:00:29.051121]  -> wl_buffer#7.release()
  563. [08:00:29.068861] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  564. [08:00:29.068911] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  565. [08:00:29.068921] {Default Queue}  -> wl_surface#3.commit()
  566. [08:00:29.071502] wl_surface#3.attach(wl_buffer#7, 0, 0)
  567. [08:00:29.072150] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  568. [08:00:29.072875] wl_surface#3.commit()
  569. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  570. ArkCompositor: shm_buffer=0x48ed60e0100
  571. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  572. [08:00:29.077304]  -> wl_buffer#7.release()
  573. [08:00:29.092649] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  574. [08:00:29.092703] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  575. [08:00:29.092715] {Default Queue}  -> wl_surface#3.commit()
  576. [08:00:29.095195] wl_surface#3.attach(wl_buffer#7, 0, 0)
  577. [08:00:29.095969] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  578. [08:00:29.097679] wl_surface#3.commit()
  579. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  580. ArkCompositor: shm_buffer=0x48ed60e0100
  581. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  582. [08:00:29.100545]  -> wl_buffer#7.release()
  583. [08:00:29.115979] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  584. [08:00:29.116027] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  585. [08:00:29.116039] {Default Queue}  -> wl_surface#3.commit()
  586. [08:00:29.118208] wl_surface#3.attach(wl_buffer#7, 0, 0)
  587. [08:00:29.118883] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  588. [08:00:29.119680] wl_surface#3.commit()
  589. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  590. ArkCompositor: shm_buffer=0x48ed60e0100
  591. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  592. [08:00:29.122742]  -> wl_buffer#7.release()
  593. [08:00:29.141299] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  594. [08:00:29.141380] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  595. [08:00:29.141394] {Default Queue}  -> wl_surface#3.commit()
  596. [08:00:29.144474] wl_surface#3.attach(wl_buffer#7, 0, 0)
  597. [08:00:29.145451] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  598. [08:00:29.146587] wl_surface#3.commit()
  599. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  600. ArkCompositor: shm_buffer=0x48ed60e0100
  601. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  602. [08:00:29.151350]  -> wl_buffer#7.release()
  603. [08:00:29.166040] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  604. [08:00:29.166093] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  605. [08:00:29.166107] {Default Queue}  -> wl_surface#3.commit()
  606. [08:00:29.168849] wl_surface#3.attach(wl_buffer#7, 0, 0)
  607. [08:00:29.169558] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  608. [08:00:29.170313] wl_surface#3.commit()
  609. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  610. ArkCompositor: shm_buffer=0x48ed60e0100
  611. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  612. [08:00:29.172267]  -> wl_buffer#7.release()
  613. [08:00:29.188828] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  614. [08:00:29.188864] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  615. [08:00:29.188875] {Default Queue}  -> wl_surface#3.commit()
  616. [08:00:29.191103] wl_surface#3.attach(wl_buffer#7, 0, 0)
  617. [08:00:29.191649] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  618. [08:00:29.192212] wl_surface#3.commit()
  619. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  620. ArkCompositor: shm_buffer=0x48ed60e0100
  621. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  622. [08:00:29.194153]  -> wl_buffer#7.release()
  623. [08:00:29.211653] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  624. [08:00:29.211692] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  625. [08:00:29.211704] {Default Queue}  -> wl_surface#3.commit()
  626. [08:00:29.213868] wl_surface#3.attach(wl_buffer#7, 0, 0)
  627. [08:00:29.214396] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  628. [08:00:29.214959] wl_surface#3.commit()
  629. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  630. ArkCompositor: shm_buffer=0x48ed60e0100
  631. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  632. [08:00:29.217474]  -> wl_buffer#7.release()
  633. [08:00:29.234126] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  634. [08:00:29.234158] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  635. [08:00:29.234168] {Default Queue}  -> wl_surface#3.commit()
  636. [08:00:29.236277] wl_surface#3.attach(wl_buffer#7, 0, 0)
  637. [08:00:29.236784] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  638. [08:00:29.237368] wl_surface#3.commit()
  639. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  640. ArkCompositor: shm_buffer=0x48ed60e0100
  641. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  642. [08:00:29.239265]  -> wl_buffer#7.release()
  643. [08:00:29.256874] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  644. [08:00:29.256915] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  645. [08:00:29.256926] {Default Queue}  -> wl_surface#3.commit()
  646. [08:00:29.259155] wl_surface#3.attach(wl_buffer#7, 0, 0)
  647. [08:00:29.259708] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  648. [08:00:29.260265] wl_surface#3.commit()
  649. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  650. ArkCompositor: shm_buffer=0x48ed60e0100
  651. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  652. [08:00:29.262120]  -> wl_buffer#7.release()
  653. [08:00:29.279446] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  654. [08:00:29.279495] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  655. [08:00:29.279505] {Default Queue}  -> wl_surface#3.commit()
  656. [08:00:29.281599] wl_surface#3.attach(wl_buffer#7, 0, 0)
  657. [08:00:29.282204] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  658. [08:00:29.282773] wl_surface#3.commit()
  659. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  660. ArkCompositor: shm_buffer=0x48ed60e0100
  661. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  662. [08:00:29.285252]  -> wl_buffer#7.release()
  663. [08:00:29.302044] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  664. [08:00:29.302079] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  665. [08:00:29.302090] {Default Queue}  -> wl_surface#3.commit()
  666. [08:00:29.304194] wl_surface#3.attach(wl_buffer#7, 0, 0)
  667. [08:00:29.304718] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  668. [08:00:29.305287] wl_surface#3.commit()
  669. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  670. ArkCompositor: shm_buffer=0x48ed60e0100
  671. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  672. [08:00:29.307094]  -> wl_buffer#7.release()
  673. [08:00:29.324253] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  674. [08:00:29.324287] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  675. [08:00:29.324298] {Default Queue}  -> wl_surface#3.commit()
  676. [08:00:29.326597] wl_surface#3.attach(wl_buffer#7, 0, 0)
  677. [08:00:29.327215] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  678. [08:00:29.327772] wl_surface#3.commit()
  679. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  680. ArkCompositor: shm_buffer=0x48ed60e0100
  681. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  682. [08:00:29.329679]  -> wl_buffer#7.release()
  683. [08:00:29.346320] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  684. [08:00:29.346356] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  685. [08:00:29.346366] {Default Queue}  -> wl_surface#3.commit()
  686. [08:00:29.348406] wl_surface#3.attach(wl_buffer#7, 0, 0)
  687. [08:00:29.348914] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  688. [08:00:29.349488] wl_surface#3.commit()
  689. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  690. ArkCompositor: shm_buffer=0x48ed60e0100
  691. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  692. [08:00:29.351966]  -> wl_buffer#7.release()
  693. [08:00:29.368467] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  694. [08:00:29.368502] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  695. [08:00:29.368513] {Default Queue}  -> wl_surface#3.commit()
  696. [08:00:29.370569] wl_surface#3.attach(wl_buffer#7, 0, 0)
  697. [08:00:29.371079] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  698. [08:00:29.371650] wl_surface#3.commit()
  699. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  700. ArkCompositor: shm_buffer=0x48ed60e0100
  701. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  702. [08:00:29.373480]  -> wl_buffer#7.release()
  703. [08:00:29.390507] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  704. [08:00:29.390555] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  705. [08:00:29.390565] {Default Queue}  -> wl_surface#3.commit()
  706. [08:00:29.392702] wl_surface#3.attach(wl_buffer#7, 0, 0)
  707. [08:00:29.393255] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  708. [08:00:29.393851] wl_surface#3.commit()
  709. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  710. ArkCompositor: shm_buffer=0x48ed60e0100
  711. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  712. [08:00:29.395801]  -> wl_buffer#7.release()
  713. [08:00:29.412699] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  714. [08:00:29.412759] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  715. [08:00:29.412771] {Default Queue}  -> wl_surface#3.commit()
  716. [08:00:29.415964] wl_surface#3.attach(wl_buffer#7, 0, 0)
  717. [08:00:29.416648] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  718. [08:00:29.417433] wl_surface#3.commit()
  719. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  720. ArkCompositor: shm_buffer=0x48ed60e0100
  721. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  722. [08:00:29.420442]  -> wl_buffer#7.release()
  723. [08:00:29.435257] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  724. [08:00:29.435302] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  725. [08:00:29.435313] {Default Queue}  -> wl_surface#3.commit()
  726. [08:00:29.437480] wl_surface#3.attach(wl_buffer#7, 0, 0)
  727. [08:00:29.438004] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  728. [08:00:29.438568] wl_surface#3.commit()
  729. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  730. ArkCompositor: shm_buffer=0x48ed60e0100
  731. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  732. [08:00:29.440546]  -> wl_buffer#7.release()
  733. [08:00:29.457331] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  734. [08:00:29.457389] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  735. [08:00:29.457541] {Default Queue}  -> wl_surface#3.commit()
  736. [08:00:29.459375] wl_surface#3.attach(wl_buffer#7, 0, 0)
  737. [08:00:29.459877] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  738. [08:00:29.460456] wl_surface#3.commit()
  739. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  740. ArkCompositor: shm_buffer=0x48ed60e0100
  741. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  742. [08:00:29.462392]  -> wl_buffer#7.release()
  743. [08:00:29.479725] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  744. [08:00:29.479798] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  745. [08:00:29.479817] {Default Queue}  -> wl_surface#3.commit()
  746. [08:00:29.481837] wl_surface#3.attach(wl_buffer#7, 0, 0)
  747. [08:00:29.482436] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  748. [08:00:29.483006] wl_surface#3.commit()
  749. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  750. ArkCompositor: shm_buffer=0x48ed60e0100
  751. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  752. [08:00:29.485552]  -> wl_buffer#7.release()
  753. [08:00:29.504247] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  754. [08:00:29.504309] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  755. [08:00:29.504504] {Default Queue}  -> wl_surface#3.commit()
  756. [08:00:29.507523] wl_surface#3.attach(wl_buffer#7, 0, 0)
  757. [08:00:29.508244] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  758. [08:00:29.508943] wl_surface#3.commit()
  759. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  760. ArkCompositor: shm_buffer=0x48ed60e0100
  761. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  762. [08:00:29.510959]  -> wl_buffer#7.release()
  763. [08:00:29.528224] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  764. [08:00:29.528280] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  765. [08:00:29.528443] {Default Queue}  -> wl_surface#3.commit()
  766. [08:00:29.532622] wl_surface#3.attach(wl_buffer#7, 0, 0)
  767. [08:00:29.533158] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  768. [08:00:29.533714] wl_surface#3.commit()
  769. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  770. ArkCompositor: shm_buffer=0x48ed60e0100
  771. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  772. [08:00:29.535844]  -> wl_buffer#7.release()
  773. [08:00:29.552381] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  774. [08:00:29.552420] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  775. [08:00:29.552539] {Default Queue}  -> wl_surface#3.commit()
  776. [08:00:29.554574] wl_surface#3.attach(wl_buffer#7, 0, 0)
  777. [08:00:29.555091] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  778. [08:00:29.555671] wl_surface#3.commit()
  779. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  780. ArkCompositor: shm_buffer=0x48ed60e0100
  781. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  782. [08:00:29.558247]  -> wl_buffer#7.release()
  783. [08:00:29.574000] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  784. [08:00:29.574038] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  785. [08:00:29.574158] {Default Queue}  -> wl_surface#3.commit()
  786. [08:00:29.575893] wl_surface#3.attach(wl_buffer#7, 0, 0)
  787. [08:00:29.576408] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  788. [08:00:29.576970] wl_surface#3.commit()
  789. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  790. ArkCompositor: shm_buffer=0x48ed60e0100
  791. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  792. [08:00:29.578878]  -> wl_buffer#7.release()
  793. [08:00:29.596113] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  794. [08:00:29.596151] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  795. [08:00:29.596288] {Default Queue}  -> wl_surface#3.commit()
  796. [08:00:29.598412] wl_surface#3.attach(wl_buffer#7, 0, 0)
  797. [08:00:29.598953] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  798. [08:00:29.599514] wl_surface#3.commit()
  799. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  800. ArkCompositor: shm_buffer=0x48ed60e0100
  801. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  802. [08:00:29.601456]  -> wl_buffer#7.release()
  803. [08:00:29.618075] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  804. [08:00:29.618109] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  805. [08:00:29.618242] {Default Queue}  -> wl_surface#3.commit()
  806. [08:00:29.620045] wl_surface#3.attach(wl_buffer#7, 0, 0)
  807. [08:00:29.620547] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  808. [08:00:29.621116] wl_surface#3.commit()
  809. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  810. ArkCompositor: shm_buffer=0x48ed60e0100
  811. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  812. [08:00:29.623665]  -> wl_buffer#7.release()
  813. [08:00:29.639792] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  814. [08:00:29.639828] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  815. [08:00:29.640049] {Default Queue}  -> wl_surface#3.commit()
  816. [08:00:29.641726] wl_surface#3.attach(wl_buffer#7, 0, 0)
  817. [08:00:29.642245] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  818. [08:00:29.642800] wl_surface#3.commit()
  819. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  820. ArkCompositor: shm_buffer=0x48ed60e0100
  821. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  822. [08:00:29.644780]  -> wl_buffer#7.release()
  823. [08:00:29.662099] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  824. [08:00:29.662137] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  825. [08:00:29.662279] {Default Queue}  -> wl_surface#3.commit()
  826. [08:00:29.664100] wl_surface#3.attach(wl_buffer#7, 0, 0)
  827. [08:00:29.664593] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  828. [08:00:29.665169] wl_surface#3.commit()
  829. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  830. ArkCompositor: shm_buffer=0x48ed60e0100
  831. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  832. [08:00:29.667082]  -> wl_buffer#7.release()
  833. [08:00:29.684286] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  834. [08:00:29.684326] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  835. [08:00:29.684456] {Default Queue}  -> wl_surface#3.commit()
  836. [08:00:29.686292] wl_surface#3.attach(wl_buffer#7, 0, 0)
  837. [08:00:29.686791] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  838. [08:00:29.687362] wl_surface#3.commit()
  839. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  840. ArkCompositor: shm_buffer=0x48ed60e0100
  841. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  842. [08:00:29.689844]  -> wl_buffer#7.release()
  843. [08:00:29.705800] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  844. [08:00:29.705835] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  845. [08:00:29.706047] {Default Queue}  -> wl_surface#3.commit()
  846. [08:00:29.707698] wl_surface#3.attach(wl_buffer#7, 0, 0)
  847. [08:00:29.708208] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  848. [08:00:29.708771] wl_surface#3.commit()
  849. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  850. ArkCompositor: shm_buffer=0x48ed60e0100
  851. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  852. [08:00:29.710572]  -> wl_buffer#7.release()
  853. [08:00:29.728018] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  854. [08:00:29.728049] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  855. [08:00:29.728171] {Default Queue}  -> wl_surface#3.commit()
  856. [08:00:29.730017] wl_surface#3.attach(wl_buffer#7, 0, 0)
  857. [08:00:29.730518] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  858. [08:00:29.731085] wl_surface#3.commit()
  859. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  860. ArkCompositor: shm_buffer=0x48ed60e0100
  861. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  862. [08:00:29.732946]  -> wl_buffer#7.release()
  863. [08:00:29.750177] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  864. [08:00:29.750215] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  865. [08:00:29.750350] {Default Queue}  -> wl_surface#3.commit()
  866. [08:00:29.752159] wl_surface#3.attach(wl_buffer#7, 0, 0)
  867. [08:00:29.752660] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  868. [08:00:29.753237] wl_surface#3.commit()
  869. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  870. ArkCompositor: shm_buffer=0x48ed60e0100
  871. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  872. [08:00:29.755695]  -> wl_buffer#7.release()
  873. [08:00:29.771959] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  874. [08:00:29.772002] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  875. [08:00:29.772143] {Default Queue}  -> wl_surface#3.commit()
  876. [08:00:29.773899] wl_surface#3.attach(wl_buffer#7, 0, 0)
  877. [08:00:29.774421] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  878. [08:00:29.774973] wl_surface#3.commit()
  879. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  880. ArkCompositor: shm_buffer=0x48ed60e0100
  881. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  882. [08:00:29.776928]  -> wl_buffer#7.release()
  883. [08:00:29.794126] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  884. [08:00:29.794163] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  885. [08:00:29.794303] {Default Queue}  -> wl_surface#3.commit()
  886. [08:00:29.796110] wl_surface#3.attach(wl_buffer#7, 0, 0)
  887. [08:00:29.796617] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  888. [08:00:29.797177] wl_surface#3.commit()
  889. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  890. ArkCompositor: shm_buffer=0x48ed60e0100
  891. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  892. [08:00:29.799028]  -> wl_buffer#7.release()
  893. [08:00:29.816354] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  894. [08:00:29.816392] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  895. [08:00:29.816528] {Default Queue}  -> wl_surface#3.commit()
  896. [08:00:29.818335] wl_surface#3.attach(wl_buffer#7, 0, 0)
  897. [08:00:29.818841] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  898. [08:00:29.819414] wl_surface#3.commit()
  899. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  900. ArkCompositor: shm_buffer=0x48ed60e0100
  901. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  902. [08:00:29.821879]  -> wl_buffer#7.release()
  903. [08:00:29.838263] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  904. [08:00:29.838298] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  905. [08:00:29.838420] {Default Queue}  -> wl_surface#3.commit()
  906. [08:00:29.840197] wl_surface#3.attach(wl_buffer#7, 0, 0)
  907. [08:00:29.840698] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  908. [08:00:29.841296] wl_surface#3.commit()
  909. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  910. ArkCompositor: shm_buffer=0x48ed60e0100
  911. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  912. [08:00:29.843255]  -> wl_buffer#7.release()
  913. [08:00:29.860420] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  914. [08:00:29.860484] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  915. [08:00:29.860610] {Default Queue}  -> wl_surface#3.commit()
  916. [08:00:29.862436] wl_surface#3.attach(wl_buffer#7, 0, 0)
  917. [08:00:29.862947] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  918. [08:00:29.863505] wl_surface#3.commit()
  919. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  920. ArkCompositor: shm_buffer=0x48ed60e0100
  921. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  922. [08:00:29.865377]  -> wl_buffer#7.release()
  923. [08:00:29.882455] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  924. [08:00:29.882490] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  925. [08:00:29.882612] {Default Queue}  -> wl_surface#3.commit()
  926. [08:00:29.884383] wl_surface#3.attach(wl_buffer#7, 0, 0)
  927. [08:00:29.884891] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  928. [08:00:29.885460] wl_surface#3.commit()
  929. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  930. ArkCompositor: shm_buffer=0x48ed60e0100
  931. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  932. [08:00:29.888022]  -> wl_buffer#7.release()
  933. [08:00:29.904471] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  934. [08:00:29.904520] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  935. [08:00:29.904533] {Default Queue}  -> wl_surface#3.commit()
  936. [08:00:29.906780] wl_surface#3.attach(wl_buffer#7, 0, 0)
  937. [08:00:29.907314] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  938. [08:00:29.907863] wl_surface#3.commit()
  939. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  940. ArkCompositor: shm_buffer=0x48ed60e0100
  941. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  942. [08:00:29.909868]  -> wl_buffer#7.release()
  943. [08:00:29.924512] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  944. [08:00:29.924553] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  945. [08:00:29.924667] {Default Queue}  -> wl_surface#3.commit()
  946. [08:00:29.926391] wl_surface#3.attach(wl_buffer#7, 0, 0)
  947. [08:00:29.926893] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  948. [08:00:29.927456] wl_surface#3.commit()
  949. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  950. ArkCompositor: shm_buffer=0x48ed60e0100
  951. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  952. [08:00:29.929493]  -> wl_buffer#7.release()
  953. [08:00:29.946369] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  954. [08:00:29.946413] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  955. [08:00:29.946422] {Default Queue}  -> wl_surface#3.commit()
  956. [08:00:29.955749] wl_surface#3.attach(wl_buffer#7, 0, 0)
  957. [08:00:29.958015] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  958. [08:00:29.960787] wl_surface#3.commit()
  959. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  960. ArkCompositor: shm_buffer=0x48ed60e0100
  961. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  962. [08:00:29.970204] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  963. [08:00:29.970275] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  964. [08:00:29.970584] {Default Queue}  -> wl_surface#3.commit()
  965. [08:00:29.974567]  -> wl_buffer#7.release()
  966. [08:00:29.975147] wl_surface#3.attach(wl_buffer#7, 0, 0)
  967. [08:00:29.975644] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  968. [08:00:29.976193] wl_surface#3.commit()
  969. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  970. ArkCompositor: shm_buffer=0x48ed60e0100
  971. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  972. [08:00:29.977639]  -> wl_buffer#7.release()
  973. [08:00:29.993174] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  974. [08:00:29.993259] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  975. [08:00:29.993398] {Default Queue}  -> wl_surface#3.commit()
  976. [08:00:29.995494] wl_surface#3.attach(wl_buffer#7, 0, 0)
  977. [08:00:29.996183] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  978. [08:00:29.996868] wl_surface#3.commit()
  979. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  980. ArkCompositor: shm_buffer=0x48ed60e0100
  981. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  982. [08:00:29.998683]  -> wl_buffer#7.release()
  983. [08:00:30.016923] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  984. [08:00:30.016982] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  985. [08:00:30.016996] {Default Queue}  -> wl_surface#3.commit()
  986. [08:00:30.020604] wl_surface#3.attach(wl_buffer#7, 0, 0)
  987. [08:00:30.021376] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  988. [08:00:30.022171] wl_surface#3.commit()
  989. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  990. ArkCompositor: shm_buffer=0x48ed60e0100
  991. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  992. [08:00:30.025236]  -> wl_buffer#7.release()
  993. [08:00:30.038171] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  994. [08:00:30.038224] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  995. [08:00:30.038233] {Default Queue}  -> wl_surface#3.commit()
  996. [08:00:30.040973] wl_surface#3.attach(wl_buffer#7, 0, 0)
  997. [08:00:30.041702] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  998. [08:00:30.042324] wl_surface#3.commit()
  999. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1000. ArkCompositor: shm_buffer=0x48ed60e0100
  1001. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1002. [08:00:30.044012]  -> wl_buffer#7.release()
  1003. [08:00:30.069899] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1004. [08:00:30.070039] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1005. [08:00:30.070329] {Default Queue}  -> wl_surface#3.commit()
  1006. [08:00:30.077548] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1007. [08:00:30.079994] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1008. [08:00:30.084317] wl_surface#3.commit()
  1009. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1010. ArkCompositor: shm_buffer=0x48ed60e0100
  1011. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1012. [08:00:30.090557]  -> wl_buffer#7.release()
  1013. [08:00:30.109943] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1014. [08:00:30.111255] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1015. [08:00:30.111272] {Default Queue}  -> wl_surface#3.commit()
  1016. [08:00:30.111324] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1017. [08:00:30.111338] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1018. [08:00:30.111349] wl_surface#3.commit()
  1019. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1020. ArkCompositor: shm_buffer=0x48ed60e0100
  1021. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1022. [08:00:30.112524]  -> wl_buffer#7.release()
  1023. [08:00:30.135511] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1024. [08:00:30.140749] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1025. [08:00:30.141333] {Default Queue}  -> wl_surface#3.commit()
  1026. [08:00:30.153156] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1027. [08:00:30.153678] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1028. [08:00:30.154283] wl_surface#3.commit()
  1029. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1030. ArkCompositor: shm_buffer=0x48ed60e0100
  1031. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1032. [08:00:30.157262]  -> wl_buffer#7.release()
  1033. [08:00:30.170867] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1034. [08:00:30.171009] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1035. [08:00:30.171197] {Default Queue}  -> wl_surface#3.commit()
  1036. [08:00:30.176012] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1037. [08:00:30.178993] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1038. [08:00:30.179148] wl_surface#3.commit()
  1039. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1040. ArkCompositor: shm_buffer=0x48ed60e0100
  1041. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1042. [08:00:30.180633]  -> wl_buffer#7.release()
  1043. [08:00:30.195101] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1044. [08:00:30.195160] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1045. [08:00:30.195281] {Default Queue}  -> wl_surface#3.commit()
  1046. [08:00:30.196969] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1047. [08:00:30.197481] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1048. [08:00:30.198047] wl_surface#3.commit()
  1049. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1050. ArkCompositor: shm_buffer=0x48ed60e0100
  1051. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1052. [08:00:30.200071]  -> wl_buffer#7.release()
  1053. [08:00:30.221360] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1054. [08:00:30.221417] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1055. [08:00:30.221434] {Default Queue}  -> wl_surface#3.commit()
  1056. [08:00:30.223358] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1057. [08:00:30.223943] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1058. [08:00:30.224610] wl_surface#3.commit()
  1059. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1060. ArkCompositor: shm_buffer=0x48ed60e0100
  1061. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1062. [08:00:30.228607]  -> wl_buffer#7.release()
  1063. [08:00:30.245427] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1064. [08:00:30.245464] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1065. [08:00:30.245635] {Default Queue}  -> wl_surface#3.commit()
  1066. [08:00:30.247962] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1067. [08:00:30.248557] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1068. [08:00:30.249162] wl_surface#3.commit()
  1069. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1070. ArkCompositor: shm_buffer=0x48ed60e0100
  1071. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1072. [08:00:30.250495]  -> wl_buffer#7.release()
  1073. [08:00:30.267869] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1074. [08:00:30.267922] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1075. [08:00:30.268061] {Default Queue}  -> wl_surface#3.commit()
  1076. [08:00:30.269936] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1077. [08:00:30.270458] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1078. [08:00:30.271029] wl_surface#3.commit()
  1079. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1080. ArkCompositor: shm_buffer=0x48ed60e0100
  1081. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1082. [08:00:30.272957]  -> wl_buffer#7.release()
  1083. [08:00:30.289694] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1084. [08:00:30.289752] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1085. [08:00:30.289763] {Default Queue}  -> wl_surface#3.commit()
  1086. [08:00:30.291817] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1087. [08:00:30.292367] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1088. [08:00:30.292942] wl_surface#3.commit()
  1089. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1090. ArkCompositor: shm_buffer=0x48ed60e0100
  1091. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1092. [08:00:30.295505]  -> wl_buffer#7.release()
  1093. [08:00:30.311165] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1094. [08:00:30.311239] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1095. [08:00:30.311250] {Default Queue}  -> wl_surface#3.commit()
  1096. [08:00:30.313225] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1097. [08:00:30.314197] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1098. [08:00:30.315633] wl_surface#3.commit()
  1099. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1100. ArkCompositor: shm_buffer=0x48ed60e0100
  1101. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1102. [08:00:30.318401]  -> wl_buffer#7.release()
  1103. [08:00:30.332384] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1104. [08:00:30.332453] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1105. [08:00:30.332468] {Default Queue}  -> wl_surface#3.commit()
  1106. [08:00:30.337628] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1107. [08:00:30.338230] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1108. [08:00:30.339272] wl_surface#3.commit()
  1109. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1110. ArkCompositor: shm_buffer=0x48ed60e0100
  1111. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1112. [08:00:30.342276]  -> wl_buffer#7.release()
  1113. [08:00:30.356333] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1114. [08:00:30.356399] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1115. [08:00:30.356410] {Default Queue}  -> wl_surface#3.commit()
  1116. [08:00:30.360046] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1117. [08:00:30.366680] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1118. [08:00:30.367858] wl_surface#3.commit()
  1119. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1120. ArkCompositor: shm_buffer=0x48ed60e0100
  1121. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1122. [08:00:30.378079]  -> wl_buffer#7.release()
  1123. [08:00:30.393251] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1124. [08:00:30.393296] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1125. [08:00:30.393306] {Default Queue}  -> wl_surface#3.commit()
  1126. [08:00:30.397811] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1127. [08:00:30.400546] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1128. [08:00:30.400626] wl_surface#3.commit()
  1129. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1130. ArkCompositor: shm_buffer=0x48ed60e0100
  1131. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1132. [08:00:30.402096]  -> wl_buffer#7.release()
  1133. [08:00:30.413720] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1134. [08:00:30.413799] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1135. [08:00:30.413808] {Default Queue}  -> wl_surface#3.commit()
  1136. [08:00:30.416197] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1137. [08:00:30.416781] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1138. [08:00:30.417527] wl_surface#3.commit()
  1139. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1140. ArkCompositor: shm_buffer=0x48ed60e0100
  1141. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1142. [08:00:30.422840]  -> wl_buffer#7.release()
  1143. [08:00:30.434152] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1144. [08:00:30.434219] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1145. [08:00:30.434230] {Default Queue}  -> wl_surface#3.commit()
  1146. [08:00:30.439629] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1147. [08:00:30.440658] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1148. [08:00:30.441914] wl_surface#3.commit()
  1149. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1150. ArkCompositor: shm_buffer=0x48ed60e0100
  1151. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1152. [08:00:30.445199]  -> wl_buffer#7.release()
  1153. [08:00:30.456156] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1154. [08:00:30.456214] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1155. [08:00:30.456223] {Default Queue}  -> wl_surface#3.commit()
  1156. [08:00:30.461980] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1157. [08:00:30.462509] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1158. [08:00:30.463087] wl_surface#3.commit()
  1159. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1160. ArkCompositor: shm_buffer=0x48ed60e0100
  1161. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1162. [08:00:30.465202]  -> wl_buffer#7.release()
  1163. [08:00:30.477568] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1164. [08:00:30.477605] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1165. [08:00:30.477618] {Default Queue}  -> wl_surface#3.commit()
  1166. [08:00:30.486315] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1167. [08:00:30.487028] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1168. [08:00:30.487051] wl_surface#3.commit()
  1169. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1170. ArkCompositor: shm_buffer=0x48ed60e0100
  1171. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1172. [08:00:30.488088]  -> wl_buffer#7.release()
  1173. [08:00:30.498873] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1174. [08:00:30.498921] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1175. [08:00:30.499038] {Default Queue}  -> wl_surface#3.commit()
  1176. [08:00:30.500873] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1177. [08:00:30.501391] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1178. [08:00:30.501947] wl_surface#3.commit()
  1179. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1180. ArkCompositor: shm_buffer=0x48ed60e0100
  1181. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1182. [08:00:30.504583]  -> wl_buffer#7.release()
  1183. [08:00:30.520833] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1184. [08:00:30.520876] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1185. [08:00:30.521102] {Default Queue}  -> wl_surface#3.commit()
  1186. [08:00:30.522811] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1187. [08:00:30.523325] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1188. [08:00:30.523883] wl_surface#3.commit()
  1189. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1190. ArkCompositor: shm_buffer=0x48ed60e0100
  1191. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1192. [08:00:30.525881]  -> wl_buffer#7.release()
  1193. [08:00:30.543165] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1194. [08:00:30.543219] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1195. [08:00:30.543353] {Default Queue}  -> wl_surface#3.commit()
  1196. [08:00:30.545183] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1197. [08:00:30.545941] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1198. [08:00:30.546525] wl_surface#3.commit()
  1199. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1200. ArkCompositor: shm_buffer=0x48ed60e0100
  1201. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1202. [08:00:30.548437]  -> wl_buffer#7.release()
  1203. [08:00:30.565465] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1204. [08:00:30.565505] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1205. [08:00:30.565636] {Default Queue}  -> wl_surface#3.commit()
  1206. [08:00:30.567509] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1207. [08:00:30.568022] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1208. [08:00:30.568606] wl_surface#3.commit()
  1209. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1210. ArkCompositor: shm_buffer=0x48ed60e0100
  1211. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1212. [08:00:30.571121]  -> wl_buffer#7.release()
  1213. [08:00:30.587262] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1214. [08:00:30.587297] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1215. [08:00:30.587427] {Default Queue}  -> wl_surface#3.commit()
  1216. [08:00:30.589190] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1217. [08:00:30.589694] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1218. [08:00:30.590272] wl_surface#3.commit()
  1219. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1220. ArkCompositor: shm_buffer=0x48ed60e0100
  1221. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1222. [08:00:30.592345]  -> wl_buffer#7.release()
  1223. [08:00:30.614162] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1224. [08:00:30.614222] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1225. [08:00:30.614232] {Default Queue}  -> wl_surface#3.commit()
  1226. [08:00:30.636147] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1227. [08:00:30.636242] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1228. [08:00:30.636268] {Default Queue}  -> wl_surface#3.commit()
  1229. [08:00:30.641932] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1230. [08:00:30.642444] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1231. [08:00:30.643012] wl_surface#3.commit()
  1232. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1233. ArkCompositor: shm_buffer=0x48ed60e0100
  1234. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1235. [08:00:30.645708]  -> wl_buffer#7.release()
  1236. [08:00:30.646314] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1237. [08:00:30.647166] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1238. [08:00:30.647747] wl_surface#3.commit()
  1239. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1240. ArkCompositor: shm_buffer=0x48ed60e0100
  1241. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1242. [08:00:30.649757]  -> wl_buffer#7.release()
  1243. [08:00:30.658975] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1244. [08:00:30.659072] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1245. [08:00:30.659090] {Default Queue}  -> wl_surface#3.commit()
  1246. [08:00:30.661626] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1247. [08:00:30.662141] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1248. [08:00:30.662692] wl_surface#3.commit()
  1249. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1250. ArkCompositor: shm_buffer=0x48ed60e0100
  1251. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1252. [08:00:30.664875]  -> wl_buffer#7.release()
  1253. [08:00:30.679519] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1254. [08:00:30.679570] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1255. [08:00:30.679690] {Default Queue}  -> wl_surface#3.commit()
  1256. [08:00:30.681393] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1257. [08:00:30.682405] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1258. [08:00:30.683012] wl_surface#3.commit()
  1259. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1260. ArkCompositor: shm_buffer=0x48ed60e0100
  1261. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1262. [08:00:30.684710]  -> wl_buffer#7.release()
  1263. [08:00:30.701241] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1264. [08:00:30.701287] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1265. [08:00:30.701296] {Default Queue}  -> wl_surface#3.commit()
  1266. [08:00:30.709970] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1267. [08:00:30.710541] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1268. [08:00:30.711613] wl_surface#3.commit()
  1269. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1270. ArkCompositor: shm_buffer=0x48ed60e0100
  1271. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1272. [08:00:30.714621]  -> wl_buffer#7.release()
  1273. [08:00:30.721821] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1274. [08:00:30.725451] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1275. [08:00:30.725527] {Default Queue}  -> wl_surface#3.commit()
  1276. [08:00:30.727875] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1277. [08:00:30.728554] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1278. [08:00:30.729128] wl_surface#3.commit()
  1279. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1280. ArkCompositor: shm_buffer=0x48ed60e0100
  1281. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1282. [08:00:30.732003]  -> wl_buffer#7.release()
  1283. [08:00:30.746782] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1284. [08:00:30.746831] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1285. [08:00:30.746842] {Default Queue}  -> wl_surface#3.commit()
  1286. [08:00:30.748764] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1287. [08:00:30.749450] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1288. [08:00:30.750009] wl_surface#3.commit()
  1289. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1290. ArkCompositor: shm_buffer=0x48ed60e0100
  1291. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1292. [08:00:30.752412]  -> wl_buffer#7.release()
  1293. [08:00:30.767070] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1294. [08:00:30.767123] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1295. [08:00:30.767133] {Default Queue}  -> wl_surface#3.commit()
  1296. [08:00:30.774965] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1297. [08:00:30.775492] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1298. [08:00:30.776071] wl_surface#3.commit()
  1299. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1300. ArkCompositor: shm_buffer=0x48ed60e0100
  1301. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1302. [08:00:30.779812]  -> wl_buffer#7.release()
  1303. [08:00:30.795686] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1304. [08:00:30.798200] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1305. [08:00:30.798291] {Default Queue}  -> wl_surface#3.commit()
  1306. [08:00:30.801390] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1307. [08:00:30.801986] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1308. [08:00:30.808191] wl_surface#3.commit()
  1309. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1310. ArkCompositor: shm_buffer=0x48ed60e0100
  1311. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1312. [08:00:30.809256]  -> wl_buffer#7.release()
  1313. [08:00:30.819799] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1314. [08:00:30.819891] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1315. [08:00:30.820130] {Default Queue}  -> wl_surface#3.commit()
  1316. [08:00:30.822486] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1317. [08:00:30.823018] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1318. [08:00:30.823575] wl_surface#3.commit()
  1319. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1320. ArkCompositor: shm_buffer=0x48ed60e0100
  1321. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1322. [08:00:30.825789]  -> wl_buffer#7.release()
  1323. [08:00:30.841801] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1324. [08:00:30.841855] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1325. [08:00:30.842073] {Default Queue}  -> wl_surface#3.commit()
  1326. [08:00:30.843812] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1327. [08:00:30.844358] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1328. [08:00:30.845003] wl_surface#3.commit()
  1329. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1330. ArkCompositor: shm_buffer=0x48ed60e0100
  1331. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1332. [08:00:30.850767]  -> wl_buffer#7.release()
  1333. [08:00:30.865983] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1334. [08:00:30.866047] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1335. [08:00:30.866057] {Default Queue}  -> wl_surface#3.commit()
  1336. [08:00:30.873998] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1337. [08:00:30.875896] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1338. [08:00:30.878309] wl_surface#3.commit()
  1339. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1340. ArkCompositor: shm_buffer=0x48ed60e0100
  1341. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1342. [08:00:30.882370]  -> wl_buffer#7.release()
  1343. [08:00:30.899113] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1344. [08:00:30.899844] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1345. [08:00:30.900589] {Default Queue}  -> wl_surface#3.commit()
  1346. [08:00:30.901159] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1347. [08:00:30.902355] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1348. [08:00:30.902546] wl_surface#3.commit()
  1349. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1350. ArkCompositor: shm_buffer=0x48ed60e0100
  1351. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1352. [08:00:30.905603]  -> wl_buffer#7.release()
  1353. [08:00:30.921119] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1354. [08:00:30.921164] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1355. [08:00:30.921173] {Default Queue}  -> wl_surface#3.commit()
  1356. [08:00:30.923434] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1357. [08:00:30.923939] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1358. [08:00:30.924499] wl_surface#3.commit()
  1359. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1360. ArkCompositor: shm_buffer=0x48ed60e0100
  1361. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1362. [08:00:30.926594]  -> wl_buffer#7.release()
  1363. [08:00:30.945981] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1364. [08:00:30.946032] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1365. [08:00:30.946043] {Default Queue}  -> wl_surface#3.commit()
  1366. [08:00:30.955035] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1367. [08:00:30.955541] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1368. [08:00:30.956250] wl_surface#3.commit()
  1369. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1370. ArkCompositor: shm_buffer=0x48ed60e0100
  1371. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1372. [08:00:30.957861]  -> wl_buffer#7.release()
  1373. [08:00:30.966521] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1374. [08:00:30.966597] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1375. [08:00:30.966610] {Default Queue}  -> wl_surface#3.commit()
  1376. [08:00:30.970510] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1377. [08:00:30.973184] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1378. [08:00:30.973277] wl_surface#3.commit()
  1379. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1380. ArkCompositor: shm_buffer=0x48ed60e0100
  1381. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1382. [08:00:30.975140]  -> wl_buffer#7.release()
  1383. [08:00:30.986957] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1384. [08:00:30.987006] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1385. [08:00:30.987016] {Default Queue}  -> wl_surface#3.commit()
  1386. [08:00:30.994093] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1387. [08:00:30.995412] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1388. [08:00:30.995435] wl_surface#3.commit()
  1389. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1390. ArkCompositor: shm_buffer=0x48ed60e0100
  1391. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1392. [08:00:30.996365]  -> wl_buffer#7.release()
  1393. [08:00:31.008994] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1394. [08:00:31.009036] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1395. [08:00:31.009045] {Default Queue}  -> wl_surface#3.commit()
  1396. [08:00:31.015750] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1397. [08:00:31.016314] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1398. [08:00:31.016902] wl_surface#3.commit()
  1399. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1400. ArkCompositor: shm_buffer=0x48ed60e0100
  1401. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1402. [08:00:31.018368]  -> wl_buffer#7.release()
  1403. [08:00:31.029920] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1404. [08:00:31.029969] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1405. [08:00:31.030107] {Default Queue}  -> wl_surface#3.commit()
  1406. [08:00:31.032633] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1407. [08:00:31.033369] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1408. [08:00:31.034031] wl_surface#3.commit()
  1409. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1410. ArkCompositor: shm_buffer=0x48ed60e0100
  1411. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1412. [08:00:31.036466]  -> wl_buffer#7.release()
  1413. [08:00:31.052979] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1414. [08:00:31.053060] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1415. [08:00:31.053090] {Default Queue}  -> wl_surface#3.commit()
  1416. [08:00:31.055874] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1417. [08:00:31.056575] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1418. [08:00:31.057291] wl_surface#3.commit()
  1419. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1420. ArkCompositor: shm_buffer=0x48ed60e0100
  1421. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1422. [08:00:31.059040]  -> wl_buffer#7.release()
  1423. [08:00:31.075308] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1424. [08:00:31.075369] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1425. [08:00:31.075383] {Default Queue}  -> wl_surface#3.commit()
  1426. [08:00:31.077988] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1427. [08:00:31.078641] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1428. [08:00:31.079489] wl_surface#3.commit()
  1429. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1430. ArkCompositor: shm_buffer=0x48ed60e0100
  1431. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1432. [08:00:31.082456]  -> wl_buffer#7.release()
  1433. [08:00:31.098342] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1434. [08:00:31.098390] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1435. [08:00:31.098550] {Default Queue}  -> wl_surface#3.commit()
  1436. [08:00:31.100606] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1437. [08:00:31.101278] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1438. [08:00:31.101855] wl_surface#3.commit()
  1439. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1440. ArkCompositor: shm_buffer=0x48ed60e0100
  1441. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1442. [08:00:31.103543]  -> wl_buffer#7.release()
  1443. [08:00:31.120441] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1444. [08:00:31.120486] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1445. [08:00:31.120618] {Default Queue}  -> wl_surface#3.commit()
  1446. [08:00:31.122444] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1447. [08:00:31.122979] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1448. [08:00:31.123546] wl_surface#3.commit()
  1449. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1450. ArkCompositor: shm_buffer=0x48ed60e0100
  1451. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1452. [08:00:31.125451]  -> wl_buffer#7.release()
  1453. [08:00:31.144875] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1454. [08:00:31.144938] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1455. [08:00:31.144956] {Default Queue}  -> wl_surface#3.commit()
  1456. [08:00:31.148421] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1457. [08:00:31.149319] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1458. [08:00:31.150157] wl_surface#3.commit()
  1459. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1460. ArkCompositor: shm_buffer=0x48ed60e0100
  1461. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1462. [08:00:31.153925]  -> wl_buffer#7.release()
  1463. [08:00:31.171680] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1464. [08:00:31.171763] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1465. [08:00:31.171782] {Default Queue}  -> wl_surface#3.commit()
  1466. [08:00:31.175557] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1467. [08:00:31.176619] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1468. [08:00:31.177935] wl_surface#3.commit()
  1469. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1470. ArkCompositor: shm_buffer=0x48ed60e0100
  1471. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1472. [08:00:31.179409]  -> wl_buffer#7.release()
  1473. [08:00:31.199251] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1474. [08:00:31.199321] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1475. [08:00:31.199340] {Default Queue}  -> wl_surface#3.commit()
  1476. [08:00:31.203100] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1477. [08:00:31.204362] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1478. [08:00:31.205571] wl_surface#3.commit()
  1479. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1480. ArkCompositor: shm_buffer=0x48ed60e0100
  1481. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1482. [08:00:31.210237]  -> wl_buffer#7.release()
  1483. [08:00:31.221400] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1484. [08:00:31.221484] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1485. [08:00:31.221497] {Default Queue}  -> wl_surface#3.commit()
  1486. [08:00:31.224047] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1487. [08:00:31.224609] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1488. [08:00:31.225202] wl_surface#3.commit()
  1489. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1490. ArkCompositor: shm_buffer=0x48ed60e0100
  1491. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1492. [08:00:31.227139]  -> wl_buffer#7.release()
  1493. [08:00:31.244965] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1494. [08:00:31.245038] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1495. [08:00:31.245052] {Default Queue}  -> wl_surface#3.commit()
  1496. [08:00:31.247354] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1497. [08:00:31.248071] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1498. [08:00:31.249051] wl_surface#3.commit()
  1499. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1500. ArkCompositor: shm_buffer=0x48ed60e0100
  1501. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1502. [08:00:31.251223]  -> wl_buffer#7.release()
  1503. [08:00:31.268902] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1504. [08:00:31.268971] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1505. [08:00:31.268990] {Default Queue}  -> wl_surface#3.commit()
  1506. [08:00:31.271325] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1507. [08:00:31.271856] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1508. [08:00:31.272441] wl_surface#3.commit()
  1509. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1510. ArkCompositor: shm_buffer=0x48ed60e0100
  1511. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1512. [08:00:31.275067]  -> wl_buffer#7.release()
  1513. [08:00:31.289914] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1514. [08:00:31.289957] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1515. [08:00:31.290086] {Default Queue}  -> wl_surface#3.commit()
  1516. [08:00:31.291925] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1517. [08:00:31.292458] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1518. [08:00:31.293056] wl_surface#3.commit()
  1519. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1520. ArkCompositor: shm_buffer=0x48ed60e0100
  1521. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1522. [08:00:31.295093]  -> wl_buffer#7.release()
  1523. [08:00:31.311204] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1524. [08:00:31.311252] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1525. [08:00:31.311387] {Default Queue}  -> wl_surface#3.commit()
  1526. [08:00:31.313144] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1527. [08:00:31.313787] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1528. [08:00:31.314708] wl_surface#3.commit()
  1529. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1530. ArkCompositor: shm_buffer=0x48ed60e0100
  1531. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1532. [08:00:31.316674]  -> wl_buffer#7.release()
  1533. [08:00:31.332431] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1534. [08:00:31.332479] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1535. [08:00:31.332601] {Default Queue}  -> wl_surface#3.commit()
  1536. [08:00:31.334345] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1537. [08:00:31.334848] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1538. [08:00:31.335421] wl_surface#3.commit()
  1539. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1540. ArkCompositor: shm_buffer=0x48ed60e0100
  1541. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1542. [08:00:31.338037]  -> wl_buffer#7.release()
  1543. [08:00:31.354004] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1544. [08:00:31.354039] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1545. [08:00:31.354171] {Default Queue}  -> wl_surface#3.commit()
  1546. [08:00:31.356096] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1547. [08:00:31.356842] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1548. [08:00:31.357640] wl_surface#3.commit()
  1549. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1550. ArkCompositor: shm_buffer=0x48ed60e0100
  1551. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1552. [08:00:31.359877]  -> wl_buffer#7.release()
  1553. [08:00:31.375551] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1554. [08:00:31.375596] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1555. [08:00:31.375727] {Default Queue}  -> wl_surface#3.commit()
  1556. [08:00:31.377477] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1557. [08:00:31.377985] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1558. [08:00:31.378677] wl_surface#3.commit()
  1559. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1560. ArkCompositor: shm_buffer=0x48ed60e0100
  1561. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1562. [08:00:31.381020]  -> wl_buffer#7.release()
  1563. [08:00:31.401539] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1564. [08:00:31.401618] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1565. [08:00:31.401636] {Default Queue}  -> wl_surface#3.commit()
  1566. [08:00:31.405462] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1567. [08:00:31.406434] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1568. [08:00:31.406471] wl_surface#3.commit()
  1569. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1570. ArkCompositor: shm_buffer=0x48ed60e0100
  1571. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1572. [08:00:31.408824]  -> wl_buffer#7.release()
  1573. [08:00:31.423829] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1574. [08:00:31.423881] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1575. [08:00:31.423892] {Default Queue}  -> wl_surface#3.commit()
  1576. [08:00:31.425931] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1577. [08:00:31.426471] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1578. [08:00:31.427077] wl_surface#3.commit()
  1579. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1580. ArkCompositor: shm_buffer=0x48ed60e0100
  1581. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1582. [08:00:31.429415]  -> wl_buffer#7.release()
  1583. [08:00:31.448396] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1584. [08:00:31.448481] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1585. [08:00:31.448503] {Default Queue}  -> wl_surface#3.commit()
  1586. [08:00:31.451875] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1587. [08:00:31.452628] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1588. [08:00:31.453502] wl_surface#3.commit()
  1589. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1590. ArkCompositor: shm_buffer=0x48ed60e0100
  1591. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1592. [08:00:31.454551]  -> wl_buffer#7.release()
  1593. [08:00:31.474730] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1594. [08:00:31.474804] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1595. [08:00:31.474826] {Default Queue}  -> wl_surface#3.commit()
  1596. [08:00:31.478697] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1597. [08:00:31.479653] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1598. [08:00:31.480648] wl_surface#3.commit()
  1599. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1600. ArkCompositor: shm_buffer=0x48ed60e0100
  1601. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1602. [08:00:31.482808]  -> wl_buffer#7.release()
  1603. [08:00:31.498368] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1604. [08:00:31.498419] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1605. [08:00:31.498569] {Default Queue}  -> wl_surface#3.commit()
  1606. [08:00:31.500670] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1607. [08:00:31.501321] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1608. [08:00:31.501885] wl_surface#3.commit()
  1609. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1610. ArkCompositor: shm_buffer=0x48ed60e0100
  1611. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1612. [08:00:31.503572]  -> wl_buffer#7.release()
  1613. [08:00:31.520576] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1614. [08:00:31.520628] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1615. [08:00:31.520639] {Default Queue}  -> wl_surface#3.commit()
  1616. [08:00:31.523613] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1617. [08:00:31.524178] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1618. [08:00:31.524734] wl_surface#3.commit()
  1619. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1620. ArkCompositor: shm_buffer=0x48ed60e0100
  1621. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1622. [08:00:31.526567]  -> wl_buffer#7.release()
  1623. [08:00:31.545711] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1624. [08:00:31.545778] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1625. [08:00:31.546100] {Default Queue}  -> wl_surface#3.commit()
  1626. [08:00:31.548393] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1627. [08:00:31.549096] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1628. [08:00:31.549820] wl_surface#3.commit()
  1629. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1630. ArkCompositor: shm_buffer=0x48ed60e0100
  1631. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1632. [08:00:31.553929]  -> wl_buffer#7.release()
  1633. [08:00:31.572770] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1634. [08:00:31.572855] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1635. [08:00:31.573130] {Default Queue}  -> wl_surface#3.commit()
  1636. [08:00:31.576791] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1637. [08:00:31.577796] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1638. [08:00:31.578820] wl_surface#3.commit()
  1639. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1640. ArkCompositor: shm_buffer=0x48ed60e0100
  1641. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1642. [08:00:31.580128]  -> wl_buffer#7.release()
  1643. [08:00:31.600221] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1644. [08:00:31.600300] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1645. [08:00:31.600320] {Default Queue}  -> wl_surface#3.commit()
  1646. [08:00:31.603565] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1647. [08:00:31.604406] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1648. [08:00:31.606150] wl_surface#3.commit()
  1649. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1650. ArkCompositor: shm_buffer=0x48ed60e0100
  1651. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1652. [08:00:31.610083]  -> wl_buffer#7.release()
  1653. [08:00:31.622800] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1654. [08:00:31.622847] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1655. [08:00:31.622857] {Default Queue}  -> wl_surface#3.commit()
  1656. [08:00:31.624948] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1657. [08:00:31.625558] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1658. [08:00:31.626132] wl_surface#3.commit()
  1659. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1660. ArkCompositor: shm_buffer=0x48ed60e0100
  1661. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1662. [08:00:31.628285]  -> wl_buffer#7.release()
  1663. [08:00:31.646395] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1664. [08:00:31.646465] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1665. [08:00:31.646861] {Default Queue}  -> wl_surface#3.commit()
  1666. [08:00:31.655779] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1667. [08:00:31.658825] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1668. [08:00:31.658973] wl_surface#3.commit()
  1669. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1670. ArkCompositor: shm_buffer=0x48ed60e0100
  1671. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1672. [08:00:31.662564]  -> wl_buffer#7.release()
  1673. [08:00:31.670459] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1674. [08:00:31.670515] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1675. [08:00:31.670527] {Default Queue}  -> wl_surface#3.commit()
  1676. [08:00:31.676857] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1677. [08:00:31.677919] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1678. [08:00:31.677958] wl_surface#3.commit()
  1679. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1680. ArkCompositor: shm_buffer=0x48ed60e0100
  1681. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1682. [08:00:31.679295]  -> wl_buffer#7.release()
  1683. [08:00:31.691677] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1684. [08:00:31.691751] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1685. [08:00:31.691760] {Default Queue}  -> wl_surface#3.commit()
  1686. [08:00:31.694280] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1687. [08:00:31.694995] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1688. [08:00:31.695832] wl_surface#3.commit()
  1689. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1690. ArkCompositor: shm_buffer=0x48ed60e0100
  1691. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1692. [08:00:31.697722]  -> wl_buffer#7.release()
  1693. [08:00:31.714263] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1694. [08:00:31.714314] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1695. [08:00:31.714325] {Default Queue}  -> wl_surface#3.commit()
  1696. [08:00:31.716483] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1697. [08:00:31.717123] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1698. [08:00:31.717935] wl_surface#3.commit()
  1699. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1700. ArkCompositor: shm_buffer=0x48ed60e0100
  1701. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1702. [08:00:31.720941]  -> wl_buffer#7.release()
  1703. [08:00:31.736765] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1704. [08:00:31.736820] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1705. [08:00:31.736831] {Default Queue}  -> wl_surface#3.commit()
  1706. [08:00:31.738871] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1707. [08:00:31.739385] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1708. [08:00:31.739948] wl_surface#3.commit()
  1709. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1710. ArkCompositor: shm_buffer=0x48ed60e0100
  1711. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1712. [08:00:31.741968]  -> wl_buffer#7.release()
  1713. [08:00:31.759212] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1714. [08:00:31.759262] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1715. [08:00:31.759274] {Default Queue}  -> wl_surface#3.commit()
  1716. [08:00:31.761711] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1717. [08:00:31.762270] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1718. [08:00:31.762823] wl_surface#3.commit()
  1719. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1720. ArkCompositor: shm_buffer=0x48ed60e0100
  1721. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1722. [08:00:31.764869]  -> wl_buffer#7.release()
  1723. [08:00:31.780803] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1724. [08:00:31.780837] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1725. [08:00:31.781060] {Default Queue}  -> wl_surface#3.commit()
  1726. [08:00:31.782746] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1727. [08:00:31.783284] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1728. [08:00:31.783835] wl_surface#3.commit()
  1729. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1730. ArkCompositor: shm_buffer=0x48ed60e0100
  1731. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1732. [08:00:31.786374]  -> wl_buffer#7.release()
  1733. [08:00:31.803597] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1734. [08:00:31.803647] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1735. [08:00:31.803801] {Default Queue}  -> wl_surface#3.commit()
  1736. [08:00:31.805842] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1737. [08:00:31.806380] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1738. [08:00:31.806938] wl_surface#3.commit()
  1739. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1740. ArkCompositor: shm_buffer=0x48ed60e0100
  1741. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1742. [08:00:31.808842]  -> wl_buffer#7.release()
  1743. [08:00:31.826063] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1744. [08:00:31.826099] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1745. [08:00:31.826235] {Default Queue}  -> wl_surface#3.commit()
  1746. [08:00:31.828091] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1747. [08:00:31.828593] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1748. [08:00:31.829162] wl_surface#3.commit()
  1749. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1750. ArkCompositor: shm_buffer=0x48ed60e0100
  1751. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1752. [08:00:31.830997]  -> wl_buffer#7.release()
  1753. [08:00:31.848203] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1754. [08:00:31.848241] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1755. [08:00:31.848370] {Default Queue}  -> wl_surface#3.commit()
  1756. [08:00:31.850219] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1757. [08:00:31.850716] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1758. [08:00:31.851295] wl_surface#3.commit()
  1759. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1760. ArkCompositor: shm_buffer=0x48ed60e0100
  1761. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1762. [08:00:31.853880]  -> wl_buffer#7.release()
  1763. [08:00:31.870127] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1764. [08:00:31.870164] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1765. [08:00:31.870176] {Default Queue}  -> wl_surface#3.commit()
  1766. [08:00:31.872038] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1767. [08:00:31.872544] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1768. [08:00:31.873099] wl_surface#3.commit()
  1769. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1770. ArkCompositor: shm_buffer=0x48ed60e0100
  1771. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1772. [08:00:31.875020]  -> wl_buffer#7.release()
  1773. [08:00:31.892057] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1774. [08:00:31.892097] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1775. [08:00:31.892230] {Default Queue}  -> wl_surface#3.commit()
  1776. [08:00:31.894044] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1777. [08:00:31.894551] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1778. [08:00:31.895110] wl_surface#3.commit()
  1779. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1780. ArkCompositor: shm_buffer=0x48ed60e0100
  1781. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1782. [08:00:31.897055]  -> wl_buffer#7.release()
  1783. [08:00:31.914043] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1784. [08:00:31.914079] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1785. [08:00:31.914215] {Default Queue}  -> wl_surface#3.commit()
  1786. [08:00:31.916006] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1787. [08:00:31.916508] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1788. [08:00:31.917102] wl_surface#3.commit()
  1789. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1790. ArkCompositor: shm_buffer=0x48ed60e0100
  1791. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1792. [08:00:31.919546]  -> wl_buffer#7.release()
  1793. [08:00:31.935697] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1794. [08:00:31.935733] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1795. [08:00:31.935848] {Default Queue}  -> wl_surface#3.commit()
  1796. [08:00:31.937604] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1797. [08:00:31.938119] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1798. [08:00:31.938672] wl_surface#3.commit()
  1799. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1800. ArkCompositor: shm_buffer=0x48ed60e0100
  1801. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1802. [08:00:31.940621]  -> wl_buffer#7.release()
  1803. [08:00:31.957505] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1804. [08:00:31.957559] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1805. [08:00:31.957697] {Default Queue}  -> wl_surface#3.commit()
  1806. [08:00:31.959472] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1807. [08:00:31.959983] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1808. [08:00:31.960555] wl_surface#3.commit()
  1809. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1810. ArkCompositor: shm_buffer=0x48ed60e0100
  1811. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1812. [08:00:31.962613]  -> wl_buffer#7.release()
  1813. [08:00:31.978031] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1814. [08:00:31.978077] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1815. [08:00:31.978086] {Default Queue}  -> wl_surface#3.commit()
  1816. [08:00:31.980516] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1817. [08:00:31.981156] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1818. [08:00:31.981735] wl_surface#3.commit()
  1819. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1820. ArkCompositor: shm_buffer=0x48ed60e0100
  1821. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1822. [08:00:31.984387]  -> wl_buffer#7.release()
  1823. [08:00:31.998286] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1824. [08:00:31.998337] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1825. [08:00:31.998347] {Default Queue}  -> wl_surface#3.commit()
  1826. [08:00:32.000950] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1827. [08:00:32.001626] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1828. [08:00:32.002424] wl_surface#3.commit()
  1829. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1830. ArkCompositor: shm_buffer=0x48ed60e0100
  1831. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1832. [08:00:32.005635]  -> wl_buffer#7.release()
  1833. [08:00:32.022401] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1834. [08:00:32.022466] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1835. [08:00:32.022481] {Default Queue}  -> wl_surface#3.commit()
  1836. [08:00:32.024987] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1837. [08:00:32.025536] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1838. [08:00:32.026109] wl_surface#3.commit()
  1839. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1840. ArkCompositor: shm_buffer=0x48ed60e0100
  1841. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1842. [08:00:32.027901]  -> wl_buffer#7.release()
  1843. [08:00:32.046870] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1844. [08:00:32.046924] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1845. [08:00:32.046933] {Default Queue}  -> wl_surface#3.commit()
  1846. [08:00:32.049268] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1847. [08:00:32.049829] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1848. [08:00:32.050471] wl_surface#3.commit()
  1849. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1850. ArkCompositor: shm_buffer=0x48ed60e0100
  1851. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1852. [08:00:32.054849]  -> wl_buffer#7.release()
  1853. [08:00:32.079428] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1854. [08:00:32.079529] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1855. [08:00:32.079553] {Default Queue}  -> wl_surface#3.commit()
  1856. [08:00:32.087433] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1857. [08:00:32.090415] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1858. [08:00:32.090471] wl_surface#3.commit()
  1859. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1860. ArkCompositor: shm_buffer=0x48ed60e0100
  1861. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1862. [08:00:32.091132]  -> wl_buffer#7.release()
  1863. [08:00:32.109403] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1864. [08:00:32.109499] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1865. [08:00:32.109517] {Default Queue}  -> wl_surface#3.commit()
  1866. [08:00:32.114815] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1867. [08:00:32.116676] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1868. [08:00:32.116743] wl_surface#3.commit()
  1869. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1870. ArkCompositor: shm_buffer=0x48ed60e0100
  1871. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1872. [08:00:32.119975]  -> wl_buffer#7.release()
  1873. [08:00:32.138261] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1874. [08:00:32.138344] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1875. [08:00:32.138359] {Default Queue}  -> wl_surface#3.commit()
  1876. [08:00:32.141552] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1877. [08:00:32.143411] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1878. [08:00:32.143459] wl_surface#3.commit()
  1879. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1880. ArkCompositor: shm_buffer=0x48ed60e0100
  1881. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1882. [08:00:32.147029]  -> wl_buffer#7.release()
  1883. [08:00:32.162138] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1884. [08:00:32.162219] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1885. [08:00:32.162234] {Default Queue}  -> wl_surface#3.commit()
  1886. [08:00:32.168547] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1887. [08:00:32.169095] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1888. [08:00:32.169671] wl_surface#3.commit()
  1889. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1890. ArkCompositor: shm_buffer=0x48ed60e0100
  1891. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1892. [08:00:32.173343]  -> wl_buffer#7.release()
  1893. [08:00:32.186269] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1894. [08:00:32.186370] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1895. [08:00:32.186387] {Default Queue}  -> wl_surface#3.commit()
  1896. [08:00:32.191230] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1897. [08:00:32.192781] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1898. [08:00:32.194640] wl_surface#3.commit()
  1899. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1900. ArkCompositor: shm_buffer=0x48ed60e0100
  1901. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1902. [08:00:32.197590]  -> wl_buffer#7.release()
  1903. [08:00:32.206790] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1904. [08:00:32.206829] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1905. [08:00:32.206838] {Default Queue}  -> wl_surface#3.commit()
  1906. [08:00:32.209372] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1907. [08:00:32.210068] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1908. [08:00:32.210860] wl_surface#3.commit()
  1909. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1910. ArkCompositor: shm_buffer=0x48ed60e0100
  1911. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1912. [08:00:32.212068]  -> wl_buffer#7.release()
  1913. [08:00:32.227864] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1914. [08:00:32.227902] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1915. [08:00:32.227919] {Default Queue}  -> wl_surface#3.commit()
  1916. [08:00:32.230717] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1917. [08:00:32.231436] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1918. [08:00:32.232220] wl_surface#3.commit()
  1919. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1920. ArkCompositor: shm_buffer=0x48ed60e0100
  1921. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1922. [08:00:32.234609]  -> wl_buffer#7.release()
  1923. [08:00:32.250917] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1924. [08:00:32.250963] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1925. [08:00:32.250978] {Default Queue}  -> wl_surface#3.commit()
  1926. [08:00:32.253933] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1927. [08:00:32.254627] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1928. [08:00:32.255384] wl_surface#3.commit()
  1929. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1930. ArkCompositor: shm_buffer=0x48ed60e0100
  1931. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1932. [08:00:32.257551]  -> wl_buffer#7.release()
  1933. [08:00:32.273731] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1934. [08:00:32.273768] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1935. [08:00:32.273779] {Default Queue}  -> wl_surface#3.commit()
  1936. [08:00:32.276003] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1937. [08:00:32.276545] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1938. [08:00:32.277105] wl_surface#3.commit()
  1939. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1940. ArkCompositor: shm_buffer=0x48ed60e0100
  1941. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1942. [08:00:32.279005]  -> wl_buffer#7.release()
  1943. [08:00:32.296296] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1944. [08:00:32.296339] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1945. [08:00:32.296350] {Default Queue}  -> wl_surface#3.commit()
  1946. [08:00:32.298511] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1947. [08:00:32.299029] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1948. [08:00:32.299598] wl_surface#3.commit()
  1949. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1950. ArkCompositor: shm_buffer=0x48ed60e0100
  1951. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1952. [08:00:32.302101]  -> wl_buffer#7.release()
  1953. [08:00:32.318815] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1954. [08:00:32.318852] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1955. [08:00:32.318863] {Default Queue}  -> wl_surface#3.commit()
  1956. [08:00:32.320945] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1957. [08:00:32.321474] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1958. [08:00:32.322044] wl_surface#3.commit()
  1959. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1960. ArkCompositor: shm_buffer=0x48ed60e0100
  1961. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1962. [08:00:32.323855]  -> wl_buffer#7.release()
  1963. [08:00:32.341149] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1964. [08:00:32.341197] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1965. [08:00:32.341208] {Default Queue}  -> wl_surface#3.commit()
  1966. [08:00:32.343378] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1967. [08:00:32.343890] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1968. [08:00:32.344479] wl_surface#3.commit()
  1969. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1970. ArkCompositor: shm_buffer=0x48ed60e0100
  1971. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1972. [08:00:32.346420]  -> wl_buffer#7.release()
  1973. [08:00:32.363197] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1974. [08:00:32.363234] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1975. [08:00:32.363245] {Default Queue}  -> wl_surface#3.commit()
  1976. [08:00:32.365489] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1977. [08:00:32.366095] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1978. [08:00:32.366664] wl_surface#3.commit()
  1979. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1980. ArkCompositor: shm_buffer=0x48ed60e0100
  1981. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1982. [08:00:32.369241]  -> wl_buffer#7.release()
  1983. [08:00:32.385494] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1984. [08:00:32.385532] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1985. [08:00:32.385543] {Default Queue}  -> wl_surface#3.commit()
  1986. [08:00:32.387667] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1987. [08:00:32.388200] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1988. [08:00:32.388752] wl_surface#3.commit()
  1989. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  1990. ArkCompositor: shm_buffer=0x48ed60e0100
  1991. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  1992. [08:00:32.390594]  -> wl_buffer#7.release()
  1993. [08:00:32.408005] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  1994. [08:00:32.408066] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1995. [08:00:32.408077] {Default Queue}  -> wl_surface#3.commit()
  1996. [08:00:32.410518] wl_surface#3.attach(wl_buffer#7, 0, 0)
  1997. [08:00:32.411057] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  1998. [08:00:32.411630] wl_surface#3.commit()
  1999. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2000. ArkCompositor: shm_buffer=0x48ed60e0100
  2001. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2002. [08:00:32.414001]  -> wl_buffer#7.release()
  2003. [08:00:32.433378] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2004. [08:00:32.433446] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2005. [08:00:32.433464] {Default Queue}  -> wl_surface#3.commit()
  2006. [08:00:32.436378] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2007. [08:00:32.437059] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2008. [08:00:32.437735] wl_surface#3.commit()
  2009. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2010. ArkCompositor: shm_buffer=0x48ed60e0100
  2011. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2012. [08:00:32.440407]  -> wl_buffer#7.release()
  2013. [08:00:32.455616] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2014. [08:00:32.455664] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2015. [08:00:32.455796] {Default Queue}  -> wl_surface#3.commit()
  2016. [08:00:32.457659] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2017. [08:00:32.458188] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2018. [08:00:32.458743] wl_surface#3.commit()
  2019. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2020. ArkCompositor: shm_buffer=0x48ed60e0100
  2021. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2022. [08:00:32.460744]  -> wl_buffer#7.release()
  2023. [08:00:32.477657] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2024. [08:00:32.477803] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2025. [08:00:32.478032] {Default Queue}  -> wl_surface#3.commit()
  2026. [08:00:32.480943] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2027. [08:00:32.481448] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2028. [08:00:32.482021] wl_surface#3.commit()
  2029. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2030. ArkCompositor: shm_buffer=0x48ed60e0100
  2031. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2032. [08:00:32.483982]  -> wl_buffer#7.release()
  2033. [08:00:32.499377] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2034. [08:00:32.499425] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2035. [08:00:32.499437] {Default Queue}  -> wl_surface#3.commit()
  2036. [08:00:32.501413] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2037. [08:00:32.501929] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2038. [08:00:32.502517] wl_surface#3.commit()
  2039. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2040. ArkCompositor: shm_buffer=0x48ed60e0100
  2041. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2042. [08:00:32.505100]  -> wl_buffer#7.release()
  2043. [08:00:32.519606] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2044. [08:00:32.519653] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2045. [08:00:32.519776] {Default Queue}  -> wl_surface#3.commit()
  2046. [08:00:32.521528] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2047. [08:00:32.522040] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2048. [08:00:32.522695] wl_surface#3.commit()
  2049. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2050. ArkCompositor: shm_buffer=0x48ed60e0100
  2051. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2052. [08:00:32.524724]  -> wl_buffer#7.release()
  2053. [08:00:32.541440] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2054. [08:00:32.541499] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2055. [08:00:32.541511] {Default Queue}  -> wl_surface#3.commit()
  2056. [08:00:32.547923] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2057. [08:00:32.550604] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2058. [08:00:32.553437] wl_surface#3.commit()
  2059. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2060. ArkCompositor: shm_buffer=0x48ed60e0100
  2061. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2062. [08:00:32.562004]  -> wl_buffer#7.release()
  2063. [08:00:32.565220] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2064. [08:00:32.565251] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2065. [08:00:32.565260] {Default Queue}  -> wl_surface#3.commit()
  2066. [08:00:32.567211] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2067. [08:00:32.567748] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2068. [08:00:32.568339] wl_surface#3.commit()
  2069. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2070. ArkCompositor: shm_buffer=0x48ed60e0100
  2071. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2072. [08:00:32.570471]  -> wl_buffer#7.release()
  2073. [08:00:32.585231] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2074. [08:00:32.585274] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2075. [08:00:32.585377] {Default Queue}  -> wl_surface#3.commit()
  2076. [08:00:32.587123] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2077. [08:00:32.587632] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2078. [08:00:32.588218] wl_surface#3.commit()
  2079. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2080. ArkCompositor: shm_buffer=0x48ed60e0100
  2081. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2082. [08:00:32.590232]  -> wl_buffer#7.release()
  2083. [08:00:32.606233] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2084. [08:00:32.606287] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2085. [08:00:32.606296] {Default Queue}  -> wl_surface#3.commit()
  2086. [08:00:32.608327] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2087. [08:00:32.608868] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2088. [08:00:32.609466] wl_surface#3.commit()
  2089. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2090. ArkCompositor: shm_buffer=0x48ed60e0100
  2091. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2092. [08:00:32.612509]  -> wl_buffer#7.release()
  2093. [08:00:32.630736] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2094. [08:00:32.630802] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2095. [08:00:32.630990] {Default Queue}  -> wl_surface#3.commit()
  2096. [08:00:32.633373] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2097. [08:00:32.633989] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2098. [08:00:32.634634] wl_surface#3.commit()
  2099. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2100. ArkCompositor: shm_buffer=0x48ed60e0100
  2101. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2102. [08:00:32.636592]  -> wl_buffer#7.release()
  2103. [08:00:32.653474] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2104. [08:00:32.653522] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2105. [08:00:32.653735] {Default Queue}  -> wl_surface#3.commit()
  2106. [08:00:32.655638] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2107. [08:00:32.656165] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2108. [08:00:32.656733] wl_surface#3.commit()
  2109. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2110. ArkCompositor: shm_buffer=0x48ed60e0100
  2111. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2112. [08:00:32.658882]  -> wl_buffer#7.release()
  2113. [08:00:32.675472] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2114. [08:00:32.675523] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2115. [08:00:32.675654] {Default Queue}  -> wl_surface#3.commit()
  2116. [08:00:32.677513] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2117. [08:00:32.678050] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2118. [08:00:32.678707] wl_surface#3.commit()
  2119. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2120. ArkCompositor: shm_buffer=0x48ed60e0100
  2121. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2122. [08:00:32.681451]  -> wl_buffer#7.release()
  2123. [08:00:32.697114] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2124. [08:00:32.697170] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2125. [08:00:32.697180] {Default Queue}  -> wl_surface#3.commit()
  2126. [08:00:32.699133] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2127. [08:00:32.699704] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2128. [08:00:32.700314] wl_surface#3.commit()
  2129. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2130. ArkCompositor: shm_buffer=0x48ed60e0100
  2131. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2132. [08:00:32.702391]  -> wl_buffer#7.release()
  2133. [08:00:32.719715] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2134. [08:00:32.719768] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2135. [08:00:32.719779] {Default Queue}  -> wl_surface#3.commit()
  2136. [08:00:32.722016] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2137. [08:00:32.722555] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2138. [08:00:32.723132] wl_surface#3.commit()
  2139. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2140. ArkCompositor: shm_buffer=0x48ed60e0100
  2141. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2142. [08:00:32.725984]  -> wl_buffer#7.release()
  2143. [08:00:32.741465] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2144. [08:00:32.741510] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2145. [08:00:32.741641] {Default Queue}  -> wl_surface#3.commit()
  2146. [08:00:32.743475] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2147. [08:00:32.743986] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2148. [08:00:32.744639] wl_surface#3.commit()
  2149. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2150. ArkCompositor: shm_buffer=0x48ed60e0100
  2151. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2152. [08:00:32.747481]  -> wl_buffer#7.release()
  2153. [08:00:32.763010] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2154. [08:00:32.763059] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2155. [08:00:32.763199] {Default Queue}  -> wl_surface#3.commit()
  2156. [08:00:32.764939] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2157. [08:00:32.765463] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2158. [08:00:32.766060] wl_surface#3.commit()
  2159. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2160. ArkCompositor: shm_buffer=0x48ed60e0100
  2161. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2162. [08:00:32.768034]  -> wl_buffer#7.release()
  2163. [08:00:32.784933] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2164. [08:00:32.784982] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2165. [08:00:32.785112] {Default Queue}  -> wl_surface#3.commit()
  2166. [08:00:32.786920] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2167. [08:00:32.787447] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2168. [08:00:32.788007] wl_surface#3.commit()
  2169. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2170. ArkCompositor: shm_buffer=0x48ed60e0100
  2171. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2172. [08:00:32.789969]  -> wl_buffer#7.release()
  2173. [08:00:32.806844] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2174. [08:00:32.806887] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2175. [08:00:32.807117] {Default Queue}  -> wl_surface#3.commit()
  2176. [08:00:32.808946] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2177. [08:00:32.809459] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2178. [08:00:32.810044] wl_surface#3.commit()
  2179. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2180. ArkCompositor: shm_buffer=0x48ed60e0100
  2181. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2182. [08:00:32.812672]  -> wl_buffer#7.release()
  2183. [08:00:32.828498] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2184. [08:00:32.828545] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2185. [08:00:32.828663] {Default Queue}  -> wl_surface#3.commit()
  2186. [08:00:32.830542] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2187. [08:00:32.831063] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2188. [08:00:32.831639] wl_surface#3.commit()
  2189. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2190. ArkCompositor: shm_buffer=0x48ed60e0100
  2191. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2192. [08:00:32.833603]  -> wl_buffer#7.release()
  2193. [08:00:32.850208] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2194. [08:00:32.850242] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2195. [08:00:32.850364] {Default Queue}  -> wl_surface#3.commit()
  2196. [08:00:32.852156] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2197. [08:00:32.852659] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2198. [08:00:32.853229] wl_surface#3.commit()
  2199. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2200. ArkCompositor: shm_buffer=0x48ed60e0100
  2201. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2202. [08:00:32.855161]  -> wl_buffer#7.release()
  2203. [08:00:32.872074] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2204. [08:00:32.872120] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2205. [08:00:32.872266] {Default Queue}  -> wl_surface#3.commit()
  2206. [08:00:32.874068] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2207. [08:00:32.874587] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2208. [08:00:32.875275] wl_surface#3.commit()
  2209. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2210. ArkCompositor: shm_buffer=0x48ed60e0100
  2211. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2212. [08:00:32.878041]  -> wl_buffer#7.release()
  2213. [08:00:32.895115] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2214. [08:00:32.895161] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2215. [08:00:32.895173] {Default Queue}  -> wl_surface#3.commit()
  2216. [08:00:32.897376] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2217. [08:00:32.897949] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2218. [08:00:32.898524] wl_surface#3.commit()
  2219. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2220. ArkCompositor: shm_buffer=0x48ed60e0100
  2221. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2222. [08:00:32.900506]  -> wl_buffer#7.release()
  2223. [08:00:32.918074] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2224. [08:00:32.918128] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2225. [08:00:32.918139] {Default Queue}  -> wl_surface#3.commit()
  2226. [08:00:32.920883] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2227. [08:00:32.922187] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2228. [08:00:32.922754] wl_surface#3.commit()
  2229. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2230. ArkCompositor: shm_buffer=0x48ed60e0100
  2231. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2232. [08:00:32.924774]  -> wl_buffer#7.release()
  2233. [08:00:32.940068] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2234. [08:00:32.940112] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2235. [08:00:32.940123] {Default Queue}  -> wl_surface#3.commit()
  2236. [08:00:32.942364] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2237. [08:00:32.942877] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2238. [08:00:32.943468] wl_surface#3.commit()
  2239. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2240. ArkCompositor: shm_buffer=0x48ed60e0100
  2241. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2242. [08:00:32.952468]  -> wl_buffer#7.release()
  2243. [08:00:32.962020] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2244. [08:00:32.962071] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2245. [08:00:32.962083] {Default Queue}  -> wl_surface#3.commit()
  2246. [08:00:32.971212] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2247. [08:00:32.973506] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2248. [08:00:32.973529] wl_surface#3.commit()
  2249. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2250. ArkCompositor: shm_buffer=0x48ed60e0100
  2251. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2252. [08:00:32.974080]  -> wl_buffer#7.release()
  2253. [08:00:32.983611] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2254. [08:00:32.983641] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2255. [08:00:32.983649] {Default Queue}  -> wl_surface#3.commit()
  2256. [08:00:32.985466] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2257. [08:00:32.985992] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2258. [08:00:32.986548] wl_surface#3.commit()
  2259. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2260. ArkCompositor: shm_buffer=0x48ed60e0100
  2261. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2262. [08:00:32.987446]  -> wl_buffer#7.release()
  2263. [08:00:33.006640] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2264. [08:00:33.006692] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2265. [08:00:33.006704] {Default Queue}  -> wl_surface#3.commit()
  2266. [08:00:33.008954] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2267. [08:00:33.009521] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2268. [08:00:33.010115] wl_surface#3.commit()
  2269. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2270. ArkCompositor: shm_buffer=0x48ed60e0100
  2271. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2272. [08:00:33.012294]  -> wl_buffer#7.release()
  2273. [08:00:33.028919] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2274. [08:00:33.028956] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2275. [08:00:33.028967] {Default Queue}  -> wl_surface#3.commit()
  2276. [08:00:33.031102] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2277. [08:00:33.031621] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2278. [08:00:33.032199] wl_surface#3.commit()
  2279. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2280. ArkCompositor: shm_buffer=0x48ed60e0100
  2281. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2282. [08:00:33.034101]  -> wl_buffer#7.release()
  2283. [08:00:33.051127] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2284. [08:00:33.051174] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2285. [08:00:33.051184] {Default Queue}  -> wl_surface#3.commit()
  2286. [08:00:33.053387] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2287. [08:00:33.054064] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2288. [08:00:33.054793] wl_surface#3.commit()
  2289. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2290. ArkCompositor: shm_buffer=0x48ed60e0100
  2291. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2292. [08:00:33.056945]  -> wl_buffer#7.release()
  2293. [08:00:33.073168] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2294. [08:00:33.073201] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2295. [08:00:33.073212] {Default Queue}  -> wl_surface#3.commit()
  2296. [08:00:33.079870] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2297. [08:00:33.082329] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2298. [08:00:33.085573] wl_surface#3.commit()
  2299. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2300. ArkCompositor: shm_buffer=0x48ed60e0100
  2301. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2302. [08:00:33.088703]  -> wl_buffer#7.release()
  2303. [08:00:33.094326] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2304. [08:00:33.094431] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2305. [08:00:33.094440] {Default Queue}  -> wl_surface#3.commit()
  2306. [08:00:33.098055] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2307. [08:00:33.098556] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2308. [08:00:33.099122] wl_surface#3.commit()
  2309. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2310. ArkCompositor: shm_buffer=0x48ed60e0100
  2311. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2312. [08:00:33.101066]  -> wl_buffer#7.release()
  2313. [08:00:33.114839] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2314. [08:00:33.114872] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2315. [08:00:33.115081] {Default Queue}  -> wl_surface#3.commit()
  2316. [08:00:33.116847] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2317. [08:00:33.117476] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2318. [08:00:33.118225] wl_surface#3.commit()
  2319. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2320. ArkCompositor: shm_buffer=0x48ed60e0100
  2321. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2322. [08:00:33.120127]  -> wl_buffer#7.release()
  2323. [08:00:33.136362] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2324. [08:00:33.136395] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2325. [08:00:33.136514] {Default Queue}  -> wl_surface#3.commit()
  2326. [08:00:33.138486] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2327. [08:00:33.139004] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2328. [08:00:33.139648] wl_surface#3.commit()
  2329. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2330. ArkCompositor: shm_buffer=0x48ed60e0100
  2331. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2332. [08:00:33.142259]  -> wl_buffer#7.release()
  2333. [08:00:33.158036] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2334. [08:00:33.158069] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2335. [08:00:33.158222] {Default Queue}  -> wl_surface#3.commit()
  2336. [08:00:33.160047] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2337. [08:00:33.160649] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2338. [08:00:33.161318] wl_surface#3.commit()
  2339. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2340. ArkCompositor: shm_buffer=0x48ed60e0100
  2341. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2342. [08:00:33.163351]  -> wl_buffer#7.release()
  2343. [08:00:33.179945] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2344. [08:00:33.179978] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2345. [08:00:33.180101] {Default Queue}  -> wl_surface#3.commit()
  2346. [08:00:33.182011] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2347. [08:00:33.182515] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2348. [08:00:33.183095] wl_surface#3.commit()
  2349. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2350. ArkCompositor: shm_buffer=0x48ed60e0100
  2351. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2352. [08:00:33.185087]  -> wl_buffer#7.release()
  2353. [08:00:33.201647] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2354. [08:00:33.201714] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2355. [08:00:33.201727] {Default Queue}  -> wl_surface#3.commit()
  2356. [08:00:33.203650] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2357. [08:00:33.204177] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2358. [08:00:33.204737] wl_surface#3.commit()
  2359. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2360. ArkCompositor: shm_buffer=0x48ed60e0100
  2361. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2362. [08:00:33.207337]  -> wl_buffer#7.release()
  2363. [08:00:33.224644] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2364. [08:00:33.224716] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2365. [08:00:33.224732] {Default Queue}  -> wl_surface#3.commit()
  2366. [08:00:33.226986] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2367. [08:00:33.228030] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2368. [08:00:33.229316] wl_surface#3.commit()
  2369. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2370. ArkCompositor: shm_buffer=0x48ed60e0100
  2371. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2372. [08:00:33.235630]  -> wl_buffer#7.release()
  2373. [08:00:33.248403] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2374. [08:00:33.248464] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2375. [08:00:33.248473] {Default Queue}  -> wl_surface#3.commit()
  2376. [08:00:33.250632] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2377. [08:00:33.251243] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2378. [08:00:33.251900] wl_surface#3.commit()
  2379. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2380. ArkCompositor: shm_buffer=0x48ed60e0100
  2381. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2382. [08:00:33.254280]  -> wl_buffer#7.release()
  2383. [08:00:33.272882] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2384. [08:00:33.273155] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2385. [08:00:33.273298] {Default Queue}  -> wl_surface#3.commit()
  2386. [08:00:33.275938] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2387. [08:00:33.276690] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2388. [08:00:33.277485] wl_surface#3.commit()
  2389. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2390. ArkCompositor: shm_buffer=0x48ed60e0100
  2391. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2392. [08:00:33.281234]  -> wl_buffer#7.release()
  2393. [08:00:33.296826] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2394. [08:00:33.296917] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2395. [08:00:33.296961] {Default Queue}  -> wl_surface#3.commit()
  2396. [08:00:33.305825] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2397. [08:00:33.307605] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2398. [08:00:33.308444] wl_surface#3.commit()
  2399. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2400. ArkCompositor: shm_buffer=0x48ed60e0100
  2401. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2402. [08:00:33.311159]  -> wl_buffer#7.release()
  2403. [08:00:33.320343] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2404. [08:00:33.320448] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2405. [08:00:33.320465] {Default Queue}  -> wl_surface#3.commit()
  2406. [08:00:33.329828] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2407. [08:00:33.332995] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2408. [08:00:33.335802] wl_surface#3.commit()
  2409. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2410. ArkCompositor: shm_buffer=0x48ed60e0100
  2411. [08:00:33.341383] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2412. [08:00:33.342350] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2413. [08:00:33.342693] {Default Queue}  -> wl_surface#3.commit()
  2414. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2415. [08:00:33.351611]  -> wl_buffer#7.release()
  2416. [08:00:33.351768] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2417. [08:00:33.352149] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2418. [08:00:33.352526] wl_surface#3.commit()
  2419. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2420. ArkCompositor: shm_buffer=0x48ed60e0100
  2421. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2422. [08:00:33.353821]  -> wl_buffer#7.release()
  2423. [08:00:33.362851] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2424. [08:00:33.362963] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2425. [08:00:33.363230] {Default Queue}  -> wl_surface#3.commit()
  2426. [08:00:33.365691] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2427. [08:00:33.367292] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2428. [08:00:33.369985] wl_surface#3.commit()
  2429. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2430. ArkCompositor: shm_buffer=0x48ed60e0100
  2431. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2432. [08:00:33.371161]  -> wl_buffer#7.release()
  2433. [08:00:33.383450] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2434. [08:00:33.383495] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2435. [08:00:33.383505] {Default Queue}  -> wl_surface#3.commit()
  2436. [08:00:33.390941] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2437. [08:00:33.391134] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2438. [08:00:33.391265] wl_surface#3.commit()
  2439. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2440. ArkCompositor: shm_buffer=0x48ed60e0100
  2441. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2442. [08:00:33.393442]  -> wl_buffer#7.release()
  2443. [08:00:33.405268] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2444. [08:00:33.405309] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2445. [08:00:33.405319] {Default Queue}  -> wl_surface#3.commit()
  2446. [08:00:33.408803] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2447. [08:00:33.409435] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2448. [08:00:33.410108] wl_surface#3.commit()
  2449. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2450. ArkCompositor: shm_buffer=0x48ed60e0100
  2451. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2452. [08:00:33.411607]  -> wl_buffer#7.release()
  2453. [08:00:33.426341] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2454. [08:00:33.426395] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2455. [08:00:33.426554] {Default Queue}  -> wl_surface#3.commit()
  2456. [08:00:33.434579] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2457. [08:00:33.437046] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2458. [08:00:33.437076] wl_surface#3.commit()
  2459. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2460. ArkCompositor: shm_buffer=0x48ed60e0100
  2461. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2462. [08:00:33.437746]  -> wl_buffer#7.release()
  2463. [08:00:33.450011] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2464. [08:00:33.450067] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2465. [08:00:33.450438] {Default Queue}  -> wl_surface#3.commit()
  2466. [08:00:33.458560] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2467. [08:00:33.461039] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2468. [08:00:33.463701] wl_surface#3.commit()
  2469. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2470. ArkCompositor: shm_buffer=0x48ed60e0100
  2471. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2472. [08:00:33.473469]  -> wl_buffer#7.release()
  2473. [08:00:33.477862] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2474. [08:00:33.477948] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2475. [08:00:33.478108] {Default Queue}  -> wl_surface#3.commit()
  2476. [08:00:33.480617] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2477. [08:00:33.481470] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2478. [08:00:33.482426] wl_surface#3.commit()
  2479. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2480. ArkCompositor: shm_buffer=0x48ed60e0100
  2481. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2482. [08:00:33.484371]  -> wl_buffer#7.release()
  2483. [08:00:33.500698] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2484. [08:00:33.500750] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2485. [08:00:33.500764] {Default Queue}  -> wl_surface#3.commit()
  2486. [08:00:33.503479] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2487. [08:00:33.505557] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2488. [08:00:33.505567] wl_surface#3.commit()
  2489. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2490. ArkCompositor: shm_buffer=0x48ed60e0100
  2491. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2492. [08:00:33.506633]  -> wl_buffer#7.release()
  2493. [08:00:33.521393] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2494. [08:00:33.521447] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2495. [08:00:33.521457] {Default Queue}  -> wl_surface#3.commit()
  2496. [08:00:33.528605] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2497. [08:00:33.531003] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2498. [08:00:33.533782] wl_surface#3.commit()
  2499. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2500. ArkCompositor: shm_buffer=0x48ed60e0100
  2501. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2502. [08:00:33.542703]  -> wl_buffer#7.release()
  2503. [08:00:33.545311] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2504. [08:00:33.545354] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2505. [08:00:33.545365] {Default Queue}  -> wl_surface#3.commit()
  2506. [08:00:33.551993] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2507. [08:00:33.552132] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2508. [08:00:33.552231] wl_surface#3.commit()
  2509. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2510. ArkCompositor: shm_buffer=0x48ed60e0100
  2511. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2512. [08:00:33.553229]  -> wl_buffer#7.release()
  2513. [08:00:33.569611] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2514. [08:00:33.569680] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2515. [08:00:33.569695] {Default Queue}  -> wl_surface#3.commit()
  2516. [08:00:33.577143] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2517. [08:00:33.577738] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2518. [08:00:33.578464] wl_surface#3.commit()
  2519. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2520. ArkCompositor: shm_buffer=0x48ed60e0100
  2521. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2522. [08:00:33.579407]  -> wl_buffer#7.release()
  2523. [08:00:33.594503] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2524. [08:00:33.594640] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2525. [08:00:33.594705] {Default Queue}  -> wl_surface#3.commit()
  2526. [08:00:33.597894] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2527. [08:00:33.598888] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2528. [08:00:33.599792] wl_surface#3.commit()
  2529. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2530. ArkCompositor: shm_buffer=0x48ed60e0100
  2531. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2532. [08:00:33.603338]  -> wl_buffer#7.release()
  2533. [08:00:33.615643] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2534. [08:00:33.615767] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2535. [08:00:33.615895] {Default Queue}  -> wl_surface#3.commit()
  2536. [08:00:33.621741] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2537. [08:00:33.626461] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2538. [08:00:33.626674] wl_surface#3.commit()
  2539. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2540. ArkCompositor: shm_buffer=0x48ed60e0100
  2541. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2542. [08:00:33.628578]  -> wl_buffer#7.release()
  2543. [08:00:33.643632] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2544. [08:00:33.643771] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2545. [08:00:33.644165] {Default Queue}  -> wl_surface#3.commit()
  2546. [08:00:33.652361] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2547. [08:00:33.655089] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2548. [08:00:33.658499] wl_surface#3.commit()
  2549. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2550. ArkCompositor: shm_buffer=0x48ed60e0100
  2551. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2552. [08:00:33.666070]  -> wl_buffer#7.release()
  2553. [08:00:33.679460] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2554. [08:00:33.679564] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2555. [08:00:33.679587] {Default Queue}  -> wl_surface#3.commit()
  2556. [08:00:33.684846] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2557. [08:00:33.686229] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2558. [08:00:33.686304] wl_surface#3.commit()
  2559. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2560. ArkCompositor: shm_buffer=0x48ed60e0100
  2561. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2562. [08:00:33.688208]  -> wl_buffer#7.release()
  2563. [08:00:33.709422] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2564. [08:00:33.709498] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2565. [08:00:33.709513] {Default Queue}  -> wl_surface#3.commit()
  2566. [08:00:33.717082] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2567. [08:00:33.719682] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2568. [08:00:33.719715] wl_surface#3.commit()
  2569. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2570. ArkCompositor: shm_buffer=0x48ed60e0100
  2571. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2572. [08:00:33.724037]  -> wl_buffer#7.release()
  2573. [08:00:33.734384] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2574. [08:00:33.734464] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2575. [08:00:33.734481] {Default Queue}  -> wl_surface#3.commit()
  2576. [08:00:33.743557] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2577. [08:00:33.746148] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2578. [08:00:33.749138] wl_surface#3.commit()
  2579. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2580. ArkCompositor: shm_buffer=0x48ed60e0100
  2581. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2582. [08:00:33.749771]  -> wl_buffer#7.release()
  2583. [08:00:33.757343] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2584. [08:00:33.757477] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2585. [08:00:33.757977] {Default Queue}  -> wl_surface#3.commit()
  2586. [08:00:33.768283] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2587. [08:00:33.768340] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2588. [08:00:33.768354] wl_surface#3.commit()
  2589. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2590. ArkCompositor: shm_buffer=0x48ed60e0100
  2591. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2592. [08:00:33.773516]  -> wl_buffer#7.release()
  2593. [08:00:33.796165] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2594. [08:00:33.798049] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2595. [08:00:33.798072] {Default Queue}  -> wl_surface#3.commit()
  2596. [08:00:33.798138] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2597. [08:00:33.798154] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2598. [08:00:33.798166] wl_surface#3.commit()
  2599. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2600. ArkCompositor: shm_buffer=0x48ed60e0100
  2601. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2602. [08:00:33.803615]  -> wl_buffer#7.release()
  2603. [08:00:33.819851] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2604. [08:00:33.819937] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2605. [08:00:33.820112] {Default Queue}  -> wl_surface#3.commit()
  2606. [08:00:33.823157] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2607. [08:00:33.824222] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2608. [08:00:33.825351] wl_surface#3.commit()
  2609. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2610. ArkCompositor: shm_buffer=0x48ed60e0100
  2611. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2612. [08:00:33.826478]  -> wl_buffer#7.release()
  2613. [08:00:33.850427] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2614. [08:00:33.850556] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2615. [08:00:33.850747] {Default Queue}  -> wl_surface#3.commit()
  2616. [08:00:33.855123] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2617. [08:00:33.858513] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2618. [08:00:33.858568] wl_surface#3.commit()
  2619. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2620. ArkCompositor: shm_buffer=0x48ed60e0100
  2621. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2622. [08:00:33.860380]  -> wl_buffer#7.release()
  2623. [08:00:33.874446] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2624. [08:00:33.874496] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2625. [08:00:33.874509] {Default Queue}  -> wl_surface#3.commit()
  2626. [08:00:33.884836] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2627. [08:00:33.887653] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2628. [08:00:33.888092] wl_surface#3.commit()
  2629. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2630. ArkCompositor: shm_buffer=0x48ed60e0100
  2631. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2632. [08:00:33.889434]  -> wl_buffer#7.release()
  2633. [08:00:33.898294] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2634. [08:00:33.898340] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2635. [08:00:33.898351] {Default Queue}  -> wl_surface#3.commit()
  2636. [08:00:33.905638] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2637. [08:00:33.906357] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2638. [08:00:33.906506] wl_surface#3.commit()
  2639. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2640. ArkCompositor: shm_buffer=0x48ed60e0100
  2641. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2642. [08:00:33.907532]  -> wl_buffer#7.release()
  2643. [08:00:33.922708] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2644. [08:00:33.922772] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2645. [08:00:33.922788] {Default Queue}  -> wl_surface#3.commit()
  2646. [08:00:33.925205] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2647. [08:00:33.925834] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2648. [08:00:33.926558] wl_surface#3.commit()
  2649. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2650. ArkCompositor: shm_buffer=0x48ed60e0100
  2651. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2652. [08:00:33.929264]  -> wl_buffer#7.release()
  2653. [08:00:33.943372] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2654. [08:00:33.943418] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2655. [08:00:33.943550] {Default Queue}  -> wl_surface#3.commit()
  2656. [08:00:33.945542] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2657. [08:00:33.946160] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2658. [08:00:33.946801] wl_surface#3.commit()
  2659. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2660. ArkCompositor: shm_buffer=0x48ed60e0100
  2661. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2662. [08:00:33.949673]  -> wl_buffer#7.release()
  2663. [08:00:33.965212] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2664. [08:00:33.965258] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2665. [08:00:33.965268] {Default Queue}  -> wl_surface#3.commit()
  2666. [08:00:33.969854] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2667. [08:00:33.970430] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2668. [08:00:33.971094] wl_surface#3.commit()
  2669. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2670. ArkCompositor: shm_buffer=0x48ed60e0100
  2671. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2672. [08:00:33.971839]  -> wl_buffer#7.release()
  2673. [08:00:33.987133] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2674. [08:00:33.987179] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2675. [08:00:33.987188] {Default Queue}  -> wl_surface#3.commit()
  2676. [08:00:33.989708] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2677. [08:00:33.990264] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2678. [08:00:33.990858] wl_surface#3.commit()
  2679. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2680. ArkCompositor: shm_buffer=0x48ed60e0100
  2681. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2682. [08:00:33.995131]  -> wl_buffer#7.release()
  2683. [08:00:34.009832] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2684. [08:00:34.009896] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2685. [08:00:34.009921] {Default Queue}  -> wl_surface#3.commit()
  2686. [08:00:34.018023] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2687. [08:00:34.020342] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2688. [08:00:34.020423] wl_surface#3.commit()
  2689. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2690. ArkCompositor: shm_buffer=0x48ed60e0100
  2691. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2692. [08:00:34.021256]  -> wl_buffer#7.release()
  2693. [08:00:34.030423] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2694. [08:00:34.030455] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2695. [08:00:34.030464] {Default Queue}  -> wl_surface#3.commit()
  2696. [08:00:34.035646] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2697. [08:00:34.036275] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2698. [08:00:34.036296] wl_surface#3.commit()
  2699. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2700. ArkCompositor: shm_buffer=0x48ed60e0100
  2701. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2702. [08:00:34.037280]  -> wl_buffer#7.release()
  2703. [08:00:34.051165] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2704. [08:00:34.051206] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2705. [08:00:34.051215] {Default Queue}  -> wl_surface#3.commit()
  2706. [08:00:34.053634] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2707. [08:00:34.054200] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2708. [08:00:34.054799] wl_surface#3.commit()
  2709. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2710. ArkCompositor: shm_buffer=0x48ed60e0100
  2711. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2712. [08:00:34.057355]  -> wl_buffer#7.release()
  2713. [08:00:34.071460] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2714. [08:00:34.071515] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2715. [08:00:34.071648] {Default Queue}  -> wl_surface#3.commit()
  2716. [08:00:34.073595] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2717. [08:00:34.074186] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2718. [08:00:34.074973] wl_surface#3.commit()
  2719. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2720. ArkCompositor: shm_buffer=0x48ed60e0100
  2721. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2722. [08:00:34.078805]  -> wl_buffer#7.release()
  2723. [08:00:34.092144] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2724. [08:00:34.092201] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2725. [08:00:34.092211] {Default Queue}  -> wl_surface#3.commit()
  2726. [08:00:34.101832] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2727. [08:00:34.103137] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2728. [08:00:34.103161] wl_surface#3.commit()
  2729. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2730. ArkCompositor: shm_buffer=0x48ed60e0100
  2731. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2732. [08:00:34.104135]  -> wl_buffer#7.release()
  2733. [08:00:34.112946] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2734. [08:00:34.112995] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2735. [08:00:34.113005] {Default Queue}  -> wl_surface#3.commit()
  2736. [08:00:34.119231] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2737. [08:00:34.121536] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2738. [08:00:34.121547] wl_surface#3.commit()
  2739. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2740. ArkCompositor: shm_buffer=0x48ed60e0100
  2741. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2742. [08:00:34.123770]  -> wl_buffer#7.release()
  2743. [08:00:34.133803] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2744. [08:00:34.134158] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2745. [08:00:34.134540] {Default Queue}  -> wl_surface#3.commit()
  2746. [08:00:34.145861] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2747. [08:00:34.148439] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2748. [08:00:34.152171] wl_surface#3.commit()
  2749. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2750. ArkCompositor: shm_buffer=0x48ed60e0100
  2751. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2752. [08:00:34.157746] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2753. [08:00:34.157832] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2754. [08:00:34.158625] {Default Queue}  -> wl_surface#3.commit()
  2755. [08:00:34.166686]  -> wl_buffer#7.release()
  2756. [08:00:34.166849] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2757. [08:00:34.167514] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2758. [08:00:34.167891] wl_surface#3.commit()
  2759. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2760. ArkCompositor: shm_buffer=0x48ed60e0100
  2761. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2762. [08:00:34.169130]  -> wl_buffer#7.release()
  2763. [08:00:34.179837] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2764. [08:00:34.180036] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2765. [08:00:34.180380] {Default Queue}  -> wl_surface#3.commit()
  2766. [08:00:34.190130] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2767. [08:00:34.192376] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2768. [08:00:34.194865] wl_surface#3.commit()
  2769. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2770. ArkCompositor: shm_buffer=0x48ed60e0100
  2771. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2772. [08:00:34.200741] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2773. [08:00:34.201742] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2774. [08:00:34.202088] {Default Queue}  -> wl_surface#3.commit()
  2775. [08:00:34.205638]  -> wl_buffer#7.release()
  2776. [08:00:34.205719] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2777. [08:00:34.205807] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2778. [08:00:34.206015] wl_surface#3.commit()
  2779. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2780. ArkCompositor: shm_buffer=0x48ed60e0100
  2781. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2782. [08:00:34.206597]  -> wl_buffer#7.release()
  2783. [08:00:34.225823] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2784. [08:00:34.225863] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2785. [08:00:34.225872] {Default Queue}  -> wl_surface#3.commit()
  2786. [08:00:34.228949] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2787. [08:00:34.231177] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2788. [08:00:34.232865] wl_surface#3.commit()
  2789. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2790. ArkCompositor: shm_buffer=0x48ed60e0100
  2791. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2792. [08:00:34.235431]  -> wl_buffer#7.release()
  2793. [08:00:34.248290] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2794. [08:00:34.248342] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2795. [08:00:34.248352] {Default Queue}  -> wl_surface#3.commit()
  2796. [08:00:34.254538] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2797. [08:00:34.255081] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2798. [08:00:34.255660] wl_surface#3.commit()
  2799. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2800. ArkCompositor: shm_buffer=0x48ed60e0100
  2801. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2802. [08:00:34.258328]  -> wl_buffer#7.release()
  2803. [08:00:34.268441] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2804. [08:00:34.268492] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2805. [08:00:34.268502] {Default Queue}  -> wl_surface#3.commit()
  2806. [08:00:34.277213] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2807. [08:00:34.279520] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2808. [08:00:34.282080] wl_surface#3.commit()
  2809. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2810. ArkCompositor: shm_buffer=0x48ed60e0100
  2811. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2812. [08:00:34.283386]  -> wl_buffer#7.release()
  2813. [08:00:34.291788] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2814. [08:00:34.291838] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2815. [08:00:34.291852] {Default Queue}  -> wl_surface#3.commit()
  2816. [08:00:34.299987] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2817. [08:00:34.302318] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2818. [08:00:34.302421] wl_surface#3.commit()
  2819. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2820. ArkCompositor: shm_buffer=0x48ed60e0100
  2821. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2822. [08:00:34.304023]  -> wl_buffer#7.release()
  2823. [08:00:34.315015] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2824. [08:00:34.315055] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2825. [08:00:34.315066] {Default Queue}  -> wl_surface#3.commit()
  2826. [08:00:34.323515] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2827. [08:00:34.325925] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2828. [08:00:34.325965] wl_surface#3.commit()
  2829. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2830. ArkCompositor: shm_buffer=0x48ed60e0100
  2831. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2832. [08:00:34.329141]  -> wl_buffer#7.release()
  2833. [08:00:34.338217] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2834. [08:00:34.338266] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2835. [08:00:34.338618] {Default Queue}  -> wl_surface#3.commit()
  2836. [08:00:34.346516] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2837. [08:00:34.348799] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2838. [08:00:34.348889] wl_surface#3.commit()
  2839. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2840. ArkCompositor: shm_buffer=0x48ed60e0100
  2841. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2842. [08:00:34.350711]  -> wl_buffer#7.release()
  2843. [08:00:34.362657] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2844. [08:00:34.362707] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2845. [08:00:34.362825] {Default Queue}  -> wl_surface#3.commit()
  2846. [08:00:34.365422] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2847. [08:00:34.366257] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2848. [08:00:34.367132] wl_surface#3.commit()
  2849. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2850. ArkCompositor: shm_buffer=0x48ed60e0100
  2851. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2852. [08:00:34.370019]  -> wl_buffer#7.release()
  2853. [08:00:34.385782] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2854. [08:00:34.385821] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2855. [08:00:34.385832] {Default Queue}  -> wl_surface#3.commit()
  2856. [08:00:34.393242] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2857. [08:00:34.394022] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2858. [08:00:34.394188] wl_surface#3.commit()
  2859. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2860. ArkCompositor: shm_buffer=0x48ed60e0100
  2861. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2862. [08:00:34.397063]  -> wl_buffer#7.release()
  2863. [08:00:34.408894] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2864. [08:00:34.408943] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2865. [08:00:34.408954] {Default Queue}  -> wl_surface#3.commit()
  2866. [08:00:34.417224] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2867. [08:00:34.419601] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2868. [08:00:34.419646] wl_surface#3.commit()
  2869. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2870. ArkCompositor: shm_buffer=0x48ed60e0100
  2871. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2872. [08:00:34.420665]  -> wl_buffer#7.release()
  2873. [08:00:34.432229] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2874. [08:00:34.432286] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2875. [08:00:34.432301] {Default Queue}  -> wl_surface#3.commit()
  2876. [08:00:34.440507] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2877. [08:00:34.442765] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2878. [08:00:34.442854] wl_surface#3.commit()
  2879. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2880. ArkCompositor: shm_buffer=0x48ed60e0100
  2881. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2882. [08:00:34.445881]  -> wl_buffer#7.release()
  2883. [08:00:34.455588] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2884. [08:00:34.455640] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2885. [08:00:34.456005] {Default Queue}  -> wl_surface#3.commit()
  2886. [08:00:34.463838] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2887. [08:00:34.466060] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2888. [08:00:34.466186] wl_surface#3.commit()
  2889. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2890. ArkCompositor: shm_buffer=0x48ed60e0100
  2891. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2892. [08:00:34.469564]  -> wl_buffer#7.release()
  2893. [08:00:34.479644] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2894. [08:00:34.479691] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2895. [08:00:34.479706] {Default Queue}  -> wl_surface#3.commit()
  2896. [08:00:34.487620] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2897. [08:00:34.489888] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2898. [08:00:34.489936] wl_surface#3.commit()
  2899. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2900. ArkCompositor: shm_buffer=0x48ed60e0100
  2901. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2902. [08:00:34.491178]  -> wl_buffer#7.release()
  2903. [08:00:34.501919] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2904. [08:00:34.501961] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2905. [08:00:34.501971] {Default Queue}  -> wl_surface#3.commit()
  2906. [08:00:34.510224] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2907. [08:00:34.512641] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2908. [08:00:34.512682] wl_surface#3.commit()
  2909. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2910. ArkCompositor: shm_buffer=0x48ed60e0100
  2911. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2912. [08:00:34.514273]  -> wl_buffer#7.release()
  2913. [08:00:34.526460] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2914. [08:00:34.526523] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2915. [08:00:34.526646] {Default Queue}  -> wl_surface#3.commit()
  2916. [08:00:34.536318] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2917. [08:00:34.539864] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2918. [08:00:34.540782] wl_surface#3.commit()
  2919. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2920. ArkCompositor: shm_buffer=0x48ed60e0100
  2921. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2922. [08:00:34.544603]  -> wl_buffer#7.release()
  2923. [08:00:34.550438] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2924. [08:00:34.550506] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2925. [08:00:34.550523] {Default Queue}  -> wl_surface#3.commit()
  2926. [08:00:34.561246] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2927. [08:00:34.563868] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2928. [08:00:34.563920] wl_surface#3.commit()
  2929. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2930. ArkCompositor: shm_buffer=0x48ed60e0100
  2931. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2932. [08:00:34.565265]  -> wl_buffer#7.release()
  2933. [08:00:34.575591] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2934. [08:00:34.575680] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2935. [08:00:34.575697] {Default Queue}  -> wl_surface#3.commit()
  2936. [08:00:34.585432] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2937. [08:00:34.588076] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2938. [08:00:34.588254] wl_surface#3.commit()
  2939. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2940. ArkCompositor: shm_buffer=0x48ed60e0100
  2941. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2942. [08:00:34.590086]  -> wl_buffer#7.release()
  2943. [08:00:34.599475] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2944. [08:00:34.599672] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2945. [08:00:34.600088] {Default Queue}  -> wl_surface#3.commit()
  2946. [08:00:34.613472] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2947. [08:00:34.616309] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2948. [08:00:34.619439] wl_surface#3.commit()
  2949. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2950. ArkCompositor: shm_buffer=0x48ed60e0100
  2951. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2952. [08:00:34.625250] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2953. [08:00:34.627975] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2954. [08:00:34.628382] {Default Queue}  -> wl_surface#3.commit()
  2955. [08:00:34.640189]  -> wl_buffer#7.release()
  2956. [08:00:34.640281] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2957. [08:00:34.640745] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2958. [08:00:34.641577] wl_surface#3.commit()
  2959. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2960. ArkCompositor: shm_buffer=0x48ed60e0100
  2961. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2962. [08:00:34.643791]  -> wl_buffer#7.release()
  2963. [08:00:34.654445] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2964. [08:00:34.654627] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2965. [08:00:34.655051] {Default Queue}  -> wl_surface#3.commit()
  2966. [08:00:34.667498] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2967. [08:00:34.670214] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2968. [08:00:34.670310] wl_surface#3.commit()
  2969. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2970. ArkCompositor: shm_buffer=0x48ed60e0100
  2971. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2972. [08:00:34.672253]  -> wl_buffer#7.release()
  2973. [08:00:34.691408] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2974. [08:00:34.691478] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2975. [08:00:34.691495] {Default Queue}  -> wl_surface#3.commit()
  2976. [08:00:34.694934] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2977. [08:00:34.695593] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2978. [08:00:34.696356] wl_surface#3.commit()
  2979. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2980. ArkCompositor: shm_buffer=0x48ed60e0100
  2981. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2982. [08:00:34.699490]  -> wl_buffer#7.release()
  2983. [08:00:34.715440] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2984. [08:00:34.715513] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2985. [08:00:34.715530] {Default Queue}  -> wl_surface#3.commit()
  2986. [08:00:34.717623] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2987. [08:00:34.718269] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2988. [08:00:34.718901] wl_surface#3.commit()
  2989. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  2990. ArkCompositor: shm_buffer=0x48ed60e0100
  2991. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  2992. [08:00:34.721076]  -> wl_buffer#7.release()
  2993. [08:00:34.739168] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  2994. [08:00:34.739236] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2995. [08:00:34.739357] {Default Queue}  -> wl_surface#3.commit()
  2996. [08:00:34.741225] wl_surface#3.attach(wl_buffer#7, 0, 0)
  2997. [08:00:34.741788] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  2998. [08:00:34.742438] wl_surface#3.commit()
  2999. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  3000. ArkCompositor: shm_buffer=0x48ed60e0100
  3001. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  3002. [08:00:34.744679]  -> wl_buffer#7.release()
  3003. [08:00:34.764836] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  3004. [08:00:34.764927] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3005. [08:00:34.765044] {Default Queue}  -> wl_surface#3.commit()
  3006. [08:00:34.767674] wl_surface#3.attach(wl_buffer#7, 0, 0)
  3007. [08:00:34.768590] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3008. [08:00:34.769511] wl_surface#3.commit()
  3009. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  3010. ArkCompositor: shm_buffer=0x48ed60e0100
  3011. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  3012. [08:00:34.774650]  -> wl_buffer#7.release()
  3013. [08:00:34.786366] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  3014. [08:00:34.786423] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3015. [08:00:34.786436] {Default Queue}  -> wl_surface#3.commit()
  3016. [08:00:34.791234] wl_surface#3.attach(wl_buffer#7, 0, 0)
  3017. [08:00:34.791972] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3018. [08:00:34.792707] wl_surface#3.commit()
  3019. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  3020. ArkCompositor: shm_buffer=0x48ed60e0100
  3021. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  3022. [08:00:34.795237]  -> wl_buffer#7.release()
  3023. [08:00:34.806606] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  3024. [08:00:34.806656] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3025. [08:00:34.806666] {Default Queue}  -> wl_surface#3.commit()
  3026. [08:00:34.814777] wl_surface#3.attach(wl_buffer#7, 0, 0)
  3027. [08:00:34.817195] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3028. [08:00:34.817246] wl_surface#3.commit()
  3029. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  3030. ArkCompositor: shm_buffer=0x48ed60e0100
  3031. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  3032. [08:00:34.818648]  -> wl_buffer#7.release()
  3033. [08:00:34.830076] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  3034. [08:00:34.830144] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3035. [08:00:34.830159] {Default Queue}  -> wl_surface#3.commit()
  3036. [08:00:34.838125] wl_surface#3.attach(wl_buffer#7, 0, 0)
  3037. [08:00:34.840333] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3038. [08:00:34.840428] wl_surface#3.commit()
  3039. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  3040. ArkCompositor: shm_buffer=0x48ed60e0100
  3041. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  3042. [08:00:34.843979]  -> wl_buffer#7.release()
  3043. [08:00:34.853394] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  3044. [08:00:34.853444] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3045. [08:00:34.853458] {Default Queue}  -> wl_surface#3.commit()
  3046. [08:00:34.861599] wl_surface#3.attach(wl_buffer#7, 0, 0)
  3047. [08:00:34.863900] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3048. [08:00:34.863991] wl_surface#3.commit()
  3049. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  3050. ArkCompositor: shm_buffer=0x48ed60e0100
  3051. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  3052. [08:00:34.865277]  -> wl_buffer#7.release()
  3053. [08:00:34.876998] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  3054. [08:00:34.877050] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3055. [08:00:34.877065] {Default Queue}  -> wl_surface#3.commit()
  3056. [08:00:34.884777] wl_surface#3.attach(wl_buffer#7, 0, 0)
  3057. [08:00:34.886835] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3058. [08:00:34.886868] wl_surface#3.commit()
  3059. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  3060. ArkCompositor: shm_buffer=0x48ed60e0100
  3061. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  3062. [08:00:34.888011]  -> wl_buffer#7.release()
  3063. [08:00:34.898248] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  3064. [08:00:34.898278] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3065. [08:00:34.898289] {Default Queue}  -> wl_surface#3.commit()
  3066. [08:00:34.907391] wl_surface#3.attach(wl_buffer#7, 0, 0)
  3067. [08:00:34.910126] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3068. [08:00:34.910275] wl_surface#3.commit()
  3069. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  3070. ArkCompositor: shm_buffer=0x48ed60e0100
  3071. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  3072. [08:00:34.913365]  -> wl_buffer#7.release()
  3073. [08:00:34.920245] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  3074. [08:00:34.920287] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3075. [08:00:34.920298] {Default Queue}  -> wl_surface#3.commit()
  3076. [08:00:34.929214] wl_surface#3.attach(wl_buffer#7, 0, 0)
  3077. [08:00:34.931762] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3078. [08:00:34.931787] wl_surface#3.commit()
  3079. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  3080. ArkCompositor: shm_buffer=0x48ed60e0100
  3081. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  3082. [08:00:34.932317]  -> wl_buffer#7.release()
  3083. [08:00:34.943103] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  3084. [08:00:34.943140] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3085. [08:00:34.943150] {Default Queue}  -> wl_surface#3.commit()
  3086. [08:00:34.952224] wl_surface#3.attach(wl_buffer#7, 0, 0)
  3087. [08:00:34.955233] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3088. [08:00:34.955266] wl_surface#3.commit()
  3089. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  3090. ArkCompositor: shm_buffer=0x48ed60e0100
  3091. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  3092. [08:00:34.956307]  -> wl_buffer#7.release()
  3093. [08:00:34.968387] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  3094. [08:00:34.968446] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3095. [08:00:34.969487] {Default Queue}  -> wl_surface#3.commit()
  3096. [08:00:34.977712] wl_surface#3.attach(wl_buffer#7, 0, 0)
  3097. [08:00:34.978410] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3098. [08:00:34.978544] wl_surface#3.commit()
  3099. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  3100. ArkCompositor: shm_buffer=0x48ed60e0100
  3101. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  3102. [08:00:34.981479]  -> wl_buffer#7.release()
  3103. [08:00:34.991118] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  3104. [08:00:34.991162] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3105. [08:00:34.991172] {Default Queue}  -> wl_surface#3.commit()
  3106. [08:00:35.000172] wl_surface#3.attach(wl_buffer#7, 0, 0)
  3107. [08:00:35.003132] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3108. [08:00:35.003199] wl_surface#3.commit()
  3109. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  3110. ArkCompositor: shm_buffer=0x48ed60e0100
  3111. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  3112. [08:00:35.004783]  -> wl_buffer#7.release()
  3113. [08:00:35.012736] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  3114. [08:00:35.013495] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3115. [08:00:35.013893] {Default Queue}  -> wl_surface#3.commit()
  3116. [08:00:35.018922] wl_surface#3.attach(wl_buffer#7, 0, 0)
  3117. [08:00:35.019551] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3118. [08:00:35.020254] wl_surface#3.commit()
  3119. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  3120. ArkCompositor: shm_buffer=0x48ed60e0100
  3121. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  3122. [08:00:35.026037]  -> wl_buffer#7.release()
  3123. [08:00:35.036014] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  3124. [08:00:35.036094] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3125. [08:00:35.036110] {Default Queue}  -> wl_surface#3.commit()
  3126. [08:00:35.045809] wl_surface#3.attach(wl_buffer#7, 0, 0)
  3127. [08:00:35.048463] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3128. [08:00:35.048493] wl_surface#3.commit()
  3129. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  3130. ArkCompositor: shm_buffer=0x48ed60e0100
  3131. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  3132. [08:00:35.051173]  -> wl_buffer#7.release()
  3133. [08:00:35.060577] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  3134. [08:00:35.060649] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3135. [08:00:35.061480] {Default Queue}  -> wl_surface#3.commit()
  3136. [08:00:35.069963] wl_surface#3.attach(wl_buffer#7, 0, 0)
  3137. [08:00:35.072469] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3138. [08:00:35.072567] wl_surface#3.commit()
  3139. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  3140. ArkCompositor: shm_buffer=0x48ed60e0100
  3141. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  3142. [08:00:35.075365]  -> wl_buffer#7.release()
  3143. [08:00:35.086116] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  3144. [08:00:35.086172] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3145. [08:00:35.086189] {Default Queue}  -> wl_surface#3.commit()
  3146. [08:00:35.095587] wl_surface#3.attach(wl_buffer#7, 0, 0)
  3147. [08:00:35.096384] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3148. [08:00:35.096522] wl_surface#3.commit()
  3149. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  3150. ArkCompositor: shm_buffer=0x48ed60e0100
  3151. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  3152. [08:00:35.097695]  -> wl_buffer#7.release()
  3153. [08:00:35.110846] {Default Queue}  -> wl_surface#3.attach(wl_buffer#7, 0, 0)
  3154. [08:00:35.110928] {Default Queue}  -> wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3155. [08:00:35.111378] {Default Queue}  -> wl_surface#3.commit()
  3156. [08:00:35.120339] wl_surface#3.attach(wl_buffer#7, 0, 0)
  3157. [08:00:35.123125] wl_surface#3.damage(0, 0, 2147483647, 2147483647)
  3158. [08:00:35.123167] wl_surface#3.commit()
  3159. ArkCompositor: surface_commit called! pending_buffer=0x48ed6060500, g_render_buffer=0x7f545f717000
  3160. ArkCompositor: shm_buffer=0x48ed60e0100
  3161. ArkCompositor: copying frame... 1920x1080 (stride=7680)
  3162. [08:00:35.125793]  -> wl_buffer#7.release()
  3163. [2026-08-26 08:00:35 +0000] [INFO] [ark.log] Starting system services...
  3164. [2026-08-26 08:00:35 +0000] [INFO] [ark.sys.service] Scanning /system/services for .serve files...
  3165. [2026-08-26 08:00:35 +0000] [INFO] [ark.sys.service] Registered 'setup' [exec=/system/ui_test, autostart=true, respawn=true, deps=[]]
  3166. [2026-08-26 08:00:35 +0000] [INFO] [ark.sys.service] Loaded 1 service(s)
  3167. [2026-08-26 08:00:35 +0000] [INFO] [ark.sys.service] Starting 'setup' (/system/ui_test)...
  3168. [2026-08-26 08:00:35 +0000] [INFO] [ark.sys.service] 'setup' started with PID 78
  3169. [08:00:35.171546] wl_display#1.get_registry(new id wl_registry#2)
  3170. display_get_registry: display=0x48ed41e0100, global_list empty? 0
  3171. display_get_registry: global wl_shm version 2 (is_visible: 1)
  3172. [08:00:35.173237]  -> wl_registry#2.global(1, "wl_shm", 2)
  3173. display_get_registry: global wl_compositor version 4 (is_visible: 1)
  3174. [08:00:35.174415]  -> wl_registry#2.global(2, "wl_compositor", 4)
  3175. [08:00:35.175163] wl_display#1.sync(new id wl_callback#3)
  3176. [08:00:35.175825]  -> wl_callback#3.done(0)
  3177. [08:00:35.176391]  -> wl_display#1.delete_id(3)