Merge pull request #4038 from nfedera/fix-sample-server-pixmap-format

Fixed sample server's wrong rfx pixel format
This commit is contained in:
David Fort 2017-07-10 12:04:02 +02:00 committed by GitHub
commit 214a198a59
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ BOOL test_peer_context_new(freerdp_peer* client, testPeerContext* context)
goto fail_rfx_context;
context->rfx_context->mode = RLGR3;
rfx_context_set_pixel_format(context->rfx_context, PIXEL_FORMAT_BGRX32);
rfx_context_set_pixel_format(context->rfx_context, PIXEL_FORMAT_RGB24);
if (!(context->nsc_context = nsc_context_new()))
goto fail_nsc_context;