GUAC-236: Document transfer as currently unimplemented (rarely used).

This commit is contained in:
Michael Jumper 2016-03-12 19:56:30 -08:00
parent be0a9e728f
commit 2798536a7a

View File

@ -47,10 +47,11 @@ int guacenc_handle_transfer(guacenc_display* display, int argc, char** argv) {
int dst_x = atoi(argv[7]); int dst_x = atoi(argv[7]);
int dst_y = atoi(argv[8]); int dst_y = atoi(argv[8]);
/* STUB */ /* TODO: Unimplemented for now (rarely used) */
guacenc_log(GUAC_LOG_DEBUG, "transform: src_layer=%i (%i, %i) %ix%i " guacenc_log(GUAC_LOG_DEBUG, "transform: src_layer=%i (%i, %i) %ix%i "
"function=0x%X dst_layer=%i (%i, %i)", src_index, src_x, src_y, "function=0x%X dst_layer=%i (%i, %i)", src_index, src_x, src_y,
src_w, src_h, function, dst_index, dst_x, dst_y); src_w, src_h, function, dst_index, dst_x, dst_y);
return 0; return 0;
} }