@@ -439,6 +439,15 @@ static void transaction_commit(struct sway_transaction *transaction) {
439
439
instruction -> container_state .content_height );
440
440
++ transaction -> num_waiting ;
441
441
442
+ sway_log (SWAY_DEBUG , "Transaction %p[%d]: configure view %p to %dx%d+%d+%d, serial %d" ,
443
+ transaction , i , node -> sway_container -> view ,
444
+ (int )instruction -> container_state .content_width ,
445
+ (int )instruction -> container_state .content_height ,
446
+ (int )instruction -> container_state .content_x ,
447
+ (int )instruction -> container_state .content_y ,
448
+ instruction -> serial
449
+ );
450
+
442
451
// From here on we are rendering a saved buffer of the view, which
443
452
// means we can send a frame done event to make the client redraw it
444
453
// as soon as possible. Additionally, this is required if a view is
@@ -514,28 +523,50 @@ void transaction_notify_view_ready_by_serial(struct sway_view *view,
514
523
uint32_t serial ) {
515
524
struct sway_transaction_instruction * instruction =
516
525
view -> container -> node .instruction ;
517
- if (instruction != NULL && instruction -> serial == serial ) {
518
- set_instruction_ready (instruction );
526
+ if (instruction != NULL ) {
527
+ if (instruction -> serial == serial ) {
528
+ sway_log (SWAY_DEBUG ,
529
+ "Transaction %p: view %p acked serial %d" ,
530
+ instruction -> transaction , view , serial );
531
+ set_instruction_ready (instruction );
532
+ } else {
533
+ sway_log (SWAY_DEBUG ,
534
+ "Transaction %p: view %p acked serial %d, was expecting %d" ,
535
+ instruction -> transaction , view , serial , instruction -> serial );
536
+ }
519
537
}
520
538
}
521
539
522
540
void transaction_notify_view_ready_by_geometry (struct sway_view * view ,
523
541
double x , double y , int width , int height ) {
524
542
struct sway_transaction_instruction * instruction =
525
543
view -> container -> node .instruction ;
526
- if (instruction != NULL &&
527
- (int )instruction -> container_state .content_x == (int )x &&
528
- (int )instruction -> container_state .content_y == (int )y &&
529
- instruction -> container_state .content_width == width &&
530
- instruction -> container_state .content_height == height ) {
531
- set_instruction_ready (instruction );
544
+ if (instruction != NULL ) {
545
+ int txn_x = (int )instruction -> container_state .content_x ;
546
+ int txn_y = (int )instruction -> container_state .content_y ;
547
+ int txn_width = instruction -> container_state .content_width ;
548
+ int txn_height = instruction -> container_state .content_height ;
549
+ if (txn_x == (int )x && txn_y == (int )y &&
550
+ txn_width == width && txn_height == height ) {
551
+ sway_log (SWAY_DEBUG ,
552
+ "Transaction %p: view %p acked geometry %dx%d+%d+%d" ,
553
+ instruction -> transaction , view , width , height , (int )x , (int )y );
554
+ set_instruction_ready (instruction );
555
+ } else {
556
+ sway_log (SWAY_DEBUG ,
557
+ "Transaction %p: view %p acked geometry %dx%d+%d+%d, was expecting %dx%d+%d+%d" ,
558
+ instruction -> transaction , view , width , height , (int )x , (int )y ,
559
+ txn_width , txn_height , txn_x , txn_y );
560
+ }
532
561
}
533
562
}
534
563
535
564
void transaction_notify_view_ready_immediately (struct sway_view * view ) {
536
565
struct sway_transaction_instruction * instruction =
537
566
view -> container -> node .instruction ;
538
567
if (instruction != NULL ) {
568
+ sway_log (SWAY_DEBUG , "Transaction %p: view %p marked ready" ,
569
+ instruction -> transaction , view );
539
570
set_instruction_ready (instruction );
540
571
}
541
572
}
0 commit comments