GUAC-1389: guac_vnc_set_pixel_format() is not a callback.

This commit is contained in:
Michael Jumper 2016-03-03 17:32:51 -08:00
parent 551398ae53
commit 967affa883

View File

@ -88,16 +88,18 @@ void guac_vnc_copyrect(rfbClient* client, int src_x, int src_y, int w, int h,
int dest_x, int dest_y); int dest_x, int dest_y);
/** /**
* Callback invoked by libVNCServer when the pixel format of future graphical * Sets the pixel format to request of the VNC server. The request will be made
* updates is changing. * during the connection handshake with the VNC server using the values
* specified by this function. Note that the VNC server is not required to
* honor this request.
* *
* @param client * @param client
* The VNC client associated with the VNC session whose pixel format is * The VNC client associated with the VNC session whose desired pixel
* changing. * format should be set.
* *
* @param color_depth * @param color_depth
* The new color depth, in bits per pixel. Valid values are 8, 16, 24, and * The desired new color depth, in bits per pixel. Valid values are 8, 16,
* 32. * 24, and 32.
*/ */
void guac_vnc_set_pixel_format(rfbClient* client, int color_depth); void guac_vnc_set_pixel_format(rfbClient* client, int color_depth);