sschiffli opened a new pull request, #657:
URL: https://github.com/apache/guacamole-server/pull/657

   This ensures the check for layer size changes will send the proper 
```size``` instruction even if the layer happens to be 
GUAC_DISPLAY_RESIZE_FACTOR x GUAC_DISPLAY_RESIZE_FACTOR (currently 64x64)
   
   ```
   /* Commit any change in layer size */
   if (current->pending_frame.width != current->last_frame.width
           || current->pending_frame.height != current->last_frame.height) {
   
   ```
   
   Having the last_frame buffer initially NULL also more clearly conveys that 
no frame has been sent yet, and once a frame has been sent, the buffer 
reallocates on sizes changes and will function normally. 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to