2014-06-05 02:03:25 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
* X11 Graphics Pipeline
|
|
|
|
*
|
|
|
|
* Copyright 2014 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "xf_gfx.h"
|
|
|
|
|
|
|
|
int xf_ResetGraphics(RdpgfxClientContext* context, RDPGFX_RESET_GRAPHICS_PDU* resetGraphics)
|
|
|
|
{
|
|
|
|
xfContext* xfc = (xfContext*) context->custom;
|
|
|
|
|
2014-06-05 20:36:01 +04:00
|
|
|
printf("xf_ResetGraphics: width: %d height: %d\n",
|
|
|
|
resetGraphics->width, resetGraphics->height);
|
|
|
|
|
2014-06-05 02:03:25 +04:00
|
|
|
if (xfc->rfx)
|
|
|
|
{
|
|
|
|
rfx_context_free(xfc->rfx);
|
|
|
|
xfc->rfx = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
xfc->rfx = rfx_context_new(FALSE);
|
|
|
|
|
|
|
|
xfc->rfx->width = resetGraphics->width;
|
|
|
|
xfc->rfx->height = resetGraphics->height;
|
|
|
|
rfx_context_set_pixel_format(xfc->rfx, RDP_PIXEL_FORMAT_B8G8R8A8);
|
|
|
|
|
|
|
|
if (xfc->nsc)
|
|
|
|
{
|
|
|
|
nsc_context_free(xfc->nsc);
|
|
|
|
xfc->nsc = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
xfc->nsc = nsc_context_new();
|
|
|
|
|
|
|
|
xfc->nsc->width = resetGraphics->width;
|
|
|
|
xfc->nsc->height = resetGraphics->height;
|
|
|
|
nsc_context_set_pixel_format(xfc->nsc, RDP_PIXEL_FORMAT_B8G8R8A8);
|
|
|
|
|
2014-06-14 01:30:13 +04:00
|
|
|
xfc->clear = clear_context_new(FALSE);
|
|
|
|
|
2014-06-05 06:49:03 +04:00
|
|
|
region16_init(&(xfc->invalidRegion));
|
|
|
|
|
2014-06-13 00:13:12 +04:00
|
|
|
xfc->graphicsReset = TRUE;
|
|
|
|
|
2014-06-05 02:03:25 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-06-13 00:13:12 +04:00
|
|
|
int xf_OutputUpdate(xfContext* xfc)
|
2014-06-05 02:03:25 +04:00
|
|
|
{
|
2014-06-05 06:49:03 +04:00
|
|
|
UINT16 width, height;
|
2014-06-13 00:13:12 +04:00
|
|
|
xfGfxSurface* surface;
|
2014-06-05 20:36:01 +04:00
|
|
|
RECTANGLE_16 surfaceRect;
|
2014-06-05 06:49:03 +04:00
|
|
|
const RECTANGLE_16* extents;
|
2014-06-05 20:36:01 +04:00
|
|
|
|
2014-06-13 00:13:12 +04:00
|
|
|
if (!xfc->graphicsReset)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
surface = (xfGfxSurface*) xfc->gfx->GetSurfaceData(xfc->gfx, xfc->outputSurfaceId);
|
|
|
|
|
|
|
|
if (!surface)
|
|
|
|
return -1;
|
|
|
|
|
2014-06-05 20:36:01 +04:00
|
|
|
surfaceRect.left = 0;
|
|
|
|
surfaceRect.top = 0;
|
|
|
|
surfaceRect.right = xfc->width - 1;
|
|
|
|
surfaceRect.bottom = xfc->height - 1;
|
|
|
|
|
|
|
|
region16_intersect_rect(&(xfc->invalidRegion), &(xfc->invalidRegion), &surfaceRect);
|
2014-06-05 06:49:03 +04:00
|
|
|
|
2014-06-13 00:13:12 +04:00
|
|
|
XSetClipMask(xfc->display, xfc->gc, None);
|
|
|
|
XSetFunction(xfc->display, xfc->gc, GXcopy);
|
|
|
|
XSetFillStyle(xfc->display, xfc->gc, FillSolid);
|
|
|
|
|
2014-06-05 06:49:03 +04:00
|
|
|
if (!region16_is_empty(&(xfc->invalidRegion)))
|
|
|
|
{
|
|
|
|
extents = region16_extents(&(xfc->invalidRegion));
|
|
|
|
|
2014-06-13 05:02:25 +04:00
|
|
|
width = extents->right - extents->left + 1;
|
|
|
|
height = extents->bottom - extents->top + 1;
|
2014-06-05 06:49:03 +04:00
|
|
|
|
2014-06-05 20:36:01 +04:00
|
|
|
if (width > xfc->width)
|
|
|
|
width = xfc->width;
|
|
|
|
|
|
|
|
if (height > xfc->height)
|
|
|
|
height = xfc->height;
|
|
|
|
|
2014-06-13 00:13:12 +04:00
|
|
|
XPutImage(xfc->display, xfc->drawable, xfc->gc, surface->image,
|
|
|
|
extents->left, extents->top,
|
2014-06-05 20:36:01 +04:00
|
|
|
extents->left, extents->top, width, height);
|
2014-06-05 06:49:03 +04:00
|
|
|
}
|
2014-06-05 20:36:01 +04:00
|
|
|
|
|
|
|
region16_clear(&(xfc->invalidRegion));
|
|
|
|
|
2014-06-13 00:13:12 +04:00
|
|
|
XSetClipMask(xfc->display, xfc->gc, None);
|
2014-06-05 21:13:47 +04:00
|
|
|
XSync(xfc->display, True);
|
|
|
|
|
2014-06-05 20:36:01 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-06-13 00:13:12 +04:00
|
|
|
int xf_OutputExpose(xfContext* xfc, int x, int y, int width, int height)
|
|
|
|
{
|
|
|
|
RECTANGLE_16 invalidRect;
|
|
|
|
|
|
|
|
invalidRect.left = x;
|
|
|
|
invalidRect.top = y;
|
|
|
|
invalidRect.right = x + width - 1;
|
|
|
|
invalidRect.bottom = y + height - 1;
|
|
|
|
|
|
|
|
region16_union_rect(&(xfc->invalidRegion), &(xfc->invalidRegion), &invalidRect);
|
|
|
|
|
|
|
|
xf_OutputUpdate(xfc);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-06-05 20:36:01 +04:00
|
|
|
int xf_StartFrame(RdpgfxClientContext* context, RDPGFX_START_FRAME_PDU* startFrame)
|
|
|
|
{
|
|
|
|
xfContext* xfc = (xfContext*) context->custom;
|
|
|
|
|
|
|
|
xfc->inGfxFrame = TRUE;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int xf_EndFrame(RdpgfxClientContext* context, RDPGFX_END_FRAME_PDU* endFrame)
|
|
|
|
{
|
|
|
|
xfContext* xfc = (xfContext*) context->custom;
|
|
|
|
|
2014-06-13 00:13:12 +04:00
|
|
|
xf_OutputUpdate(xfc);
|
2014-06-05 20:36:01 +04:00
|
|
|
|
|
|
|
xfc->inGfxFrame = FALSE;
|
2014-06-05 06:49:03 +04:00
|
|
|
|
2014-06-05 02:03:25 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int xf_SurfaceCommand_Uncompressed(xfContext* xfc, RdpgfxClientContext* context, RDPGFX_SURFACE_COMMAND* cmd)
|
|
|
|
{
|
2014-06-13 00:13:12 +04:00
|
|
|
xfGfxSurface* surface;
|
2014-06-05 06:49:03 +04:00
|
|
|
RECTANGLE_16 invalidRect;
|
2014-06-05 02:03:25 +04:00
|
|
|
|
2014-06-13 00:13:12 +04:00
|
|
|
surface = (xfGfxSurface*) context->GetSurfaceData(context, cmd->surfaceId);
|
2014-06-05 02:03:25 +04:00
|
|
|
|
2014-06-13 00:13:12 +04:00
|
|
|
if (!surface)
|
|
|
|
return -1;
|
2014-06-05 02:03:25 +04:00
|
|
|
|
2014-06-13 00:13:12 +04:00
|
|
|
freerdp_image_copy(surface->data, PIXEL_FORMAT_XRGB32, surface->scanline, cmd->left, cmd->top,
|
2014-06-13 05:02:25 +04:00
|
|
|
cmd->width, cmd->height, cmd->data, PIXEL_FORMAT_XRGB32, cmd->width * 4, 0, 0);
|
2014-06-05 02:03:25 +04:00
|
|
|
|
2014-06-05 06:49:03 +04:00
|
|
|
invalidRect.left = cmd->left;
|
|
|
|
invalidRect.top = cmd->top;
|
|
|
|
invalidRect.right = cmd->right;
|
|
|
|
invalidRect.bottom = cmd->bottom;
|
|
|
|
|
|
|
|
region16_union_rect(&(xfc->invalidRegion), &(xfc->invalidRegion), &invalidRect);
|
2014-06-05 02:03:25 +04:00
|
|
|
|
2014-06-05 20:36:01 +04:00
|
|
|
if (!xfc->inGfxFrame)
|
2014-06-13 00:13:12 +04:00
|
|
|
xf_OutputUpdate(xfc);
|
2014-06-05 20:36:01 +04:00
|
|
|
|
2014-06-05 02:03:25 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int xf_SurfaceCommand_RemoteFX(xfContext* xfc, RdpgfxClientContext* context, RDPGFX_SURFACE_COMMAND* cmd)
|
|
|
|
{
|
2014-06-13 02:23:51 +04:00
|
|
|
int j;
|
|
|
|
UINT16 i;
|
2014-06-05 20:36:01 +04:00
|
|
|
RFX_RECT* rect;
|
|
|
|
RFX_TILE* tile;
|
2014-06-13 00:13:12 +04:00
|
|
|
int nXDst, nYDst;
|
|
|
|
int nWidth, nHeight;
|
2014-06-13 02:23:51 +04:00
|
|
|
int nbUpdateRects;
|
2014-06-05 02:03:25 +04:00
|
|
|
RFX_MESSAGE* message;
|
2014-06-13 00:13:12 +04:00
|
|
|
xfGfxSurface* surface;
|
2014-06-13 02:23:51 +04:00
|
|
|
REGION16 updateRegion;
|
|
|
|
RECTANGLE_16 updateRect;
|
|
|
|
RECTANGLE_16* updateRects;
|
|
|
|
REGION16 clippingRects;
|
|
|
|
RECTANGLE_16 clippingRect;
|
2014-06-05 20:36:01 +04:00
|
|
|
|
2014-06-13 00:13:12 +04:00
|
|
|
surface = (xfGfxSurface*) context->GetSurfaceData(context, cmd->surfaceId);
|
|
|
|
|
|
|
|
if (!surface)
|
|
|
|
return -1;
|
2014-06-05 20:36:01 +04:00
|
|
|
|
2014-06-05 05:35:31 +04:00
|
|
|
message = rfx_process_message(xfc->rfx, cmd->data, cmd->length);
|
2014-06-05 02:03:25 +04:00
|
|
|
|
|
|
|
if (!message)
|
|
|
|
return -1;
|
|
|
|
|
2014-06-13 02:23:51 +04:00
|
|
|
region16_init(&clippingRects);
|
|
|
|
|
|
|
|
for (i = 0; i < message->numRects; i++)
|
2014-06-05 02:03:25 +04:00
|
|
|
{
|
2014-06-13 02:23:51 +04:00
|
|
|
rect = &(message->rects[i]);
|
2014-06-05 02:03:25 +04:00
|
|
|
|
2014-06-13 02:23:51 +04:00
|
|
|
clippingRect.left = cmd->left + rect->x;
|
|
|
|
clippingRect.top = cmd->top + rect->y;
|
|
|
|
clippingRect.right = clippingRect.left + rect->width - 1;
|
|
|
|
clippingRect.bottom = clippingRect.top + rect->height - 1;
|
2014-06-05 20:36:01 +04:00
|
|
|
|
2014-06-13 02:23:51 +04:00
|
|
|
region16_union_rect(&clippingRects, &clippingRects, &clippingRect);
|
2014-06-05 02:03:25 +04:00
|
|
|
}
|
|
|
|
|
2014-06-13 02:23:51 +04:00
|
|
|
for (i = 0; i < message->numTiles; i++)
|
2014-06-05 02:03:25 +04:00
|
|
|
{
|
2014-06-13 02:23:51 +04:00
|
|
|
tile = message->tiles[i];
|
|
|
|
|
|
|
|
updateRect.left = cmd->left + tile->x;
|
|
|
|
updateRect.top = cmd->top + tile->y;
|
|
|
|
updateRect.right = updateRect.left + 64 - 1;
|
|
|
|
updateRect.bottom = updateRect.top + 64 - 1;
|
2014-06-05 02:03:25 +04:00
|
|
|
|
2014-06-13 02:23:51 +04:00
|
|
|
region16_init(&updateRegion);
|
|
|
|
region16_intersect_rect(&updateRegion, &clippingRects, &updateRect);
|
|
|
|
updateRects = (RECTANGLE_16*) region16_rects(&updateRegion, &nbUpdateRects);
|
2014-06-05 06:49:03 +04:00
|
|
|
|
2014-06-13 02:23:51 +04:00
|
|
|
for (j = 0; j < nbUpdateRects; j++)
|
|
|
|
{
|
|
|
|
nXDst = updateRects[j].left;
|
|
|
|
nYDst = updateRects[j].top;
|
|
|
|
nWidth = updateRects[j].right - updateRects[j].left + 1;
|
|
|
|
nHeight = updateRects[j].bottom - updateRects[j].top + 1;
|
2014-06-05 20:36:01 +04:00
|
|
|
|
2014-06-13 02:23:51 +04:00
|
|
|
freerdp_image_copy(surface->data, PIXEL_FORMAT_XRGB32, surface->scanline,
|
|
|
|
nXDst, nYDst, nWidth, nHeight,
|
|
|
|
tile->data, PIXEL_FORMAT_XRGB32, 64 * 4, 0, 0);
|
2014-06-05 02:03:25 +04:00
|
|
|
|
2014-06-13 02:23:51 +04:00
|
|
|
region16_union_rect(&(xfc->invalidRegion), &(xfc->invalidRegion), &updateRects[j]);
|
|
|
|
}
|
2014-06-13 00:13:12 +04:00
|
|
|
|
2014-06-13 02:23:51 +04:00
|
|
|
region16_uninit(&updateRegion);
|
2014-06-13 00:13:12 +04:00
|
|
|
}
|
2014-06-05 20:36:01 +04:00
|
|
|
|
2014-06-05 02:03:25 +04:00
|
|
|
rfx_message_free(xfc->rfx, message);
|
|
|
|
|
2014-06-05 20:36:01 +04:00
|
|
|
if (!xfc->inGfxFrame)
|
2014-06-13 00:13:12 +04:00
|
|
|
xf_OutputUpdate(xfc);
|
2014-06-05 06:49:03 +04:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int xf_SurfaceCommand_ClearCodec(xfContext* xfc, RdpgfxClientContext* context, RDPGFX_SURFACE_COMMAND* cmd)
|
|
|
|
{
|
2014-06-14 01:30:13 +04:00
|
|
|
int status;
|
|
|
|
UINT32 DstSize = 0;
|
|
|
|
BYTE* pDstData = NULL;
|
|
|
|
xfGfxSurface* surface;
|
|
|
|
RECTANGLE_16 invalidRect;
|
|
|
|
|
|
|
|
surface = (xfGfxSurface*) context->GetSurfaceData(context, cmd->surfaceId);
|
|
|
|
|
|
|
|
if (!surface)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
status = clear_decompress(xfc->clear, cmd->data, cmd->length, &pDstData, &DstSize);
|
|
|
|
|
|
|
|
printf("xf_SurfaceCommand_ClearCodec: status: %d\n", status);
|
|
|
|
|
|
|
|
/* fill with pink for now to distinguish from the rest */
|
|
|
|
|
|
|
|
freerdp_image_fill(surface->data, PIXEL_FORMAT_XRGB32, surface->scanline,
|
|
|
|
cmd->left, cmd->top, cmd->width, cmd->height, 0xFF69B4);
|
|
|
|
|
|
|
|
invalidRect.left = cmd->left;
|
|
|
|
invalidRect.top = cmd->top;
|
|
|
|
invalidRect.right = cmd->right;
|
|
|
|
invalidRect.bottom = cmd->bottom;
|
|
|
|
|
|
|
|
region16_union_rect(&(xfc->invalidRegion), &(xfc->invalidRegion), &invalidRect);
|
|
|
|
|
2014-06-05 20:36:01 +04:00
|
|
|
if (!xfc->inGfxFrame)
|
2014-06-13 00:13:12 +04:00
|
|
|
xf_OutputUpdate(xfc);
|
2014-06-05 20:36:01 +04:00
|
|
|
|
2014-06-05 06:49:03 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int xf_SurfaceCommand_Planar(xfContext* xfc, RdpgfxClientContext* context, RDPGFX_SURFACE_COMMAND* cmd)
|
|
|
|
{
|
2014-06-18 00:15:30 +04:00
|
|
|
int status;
|
|
|
|
BYTE* DstData = NULL;
|
|
|
|
xfGfxSurface* surface;
|
|
|
|
RECTANGLE_16 invalidRect;
|
|
|
|
|
|
|
|
surface = (xfGfxSurface*) context->GetSurfaceData(context, cmd->surfaceId);
|
|
|
|
|
|
|
|
if (!surface)
|
|
|
|
return -1;
|
|
|
|
|
2014-06-18 00:44:24 +04:00
|
|
|
status = planar_decompress(NULL, cmd->data, cmd->length, &DstData,
|
|
|
|
PIXEL_FORMAT_XRGB32, cmd->width * 4, 0, 0, cmd->width, cmd->height);
|
2014-06-18 00:15:30 +04:00
|
|
|
|
|
|
|
freerdp_image_copy(surface->data, PIXEL_FORMAT_XRGB32, surface->scanline, cmd->left, cmd->top,
|
2014-06-19 21:08:07 +04:00
|
|
|
cmd->width, cmd->height, DstData, PIXEL_FORMAT_XRGB32, cmd->width * 4, 0, 0);
|
2014-06-18 00:15:30 +04:00
|
|
|
|
|
|
|
free(DstData);
|
|
|
|
|
|
|
|
invalidRect.left = cmd->left;
|
|
|
|
invalidRect.top = cmd->top;
|
|
|
|
invalidRect.right = cmd->right;
|
|
|
|
invalidRect.bottom = cmd->bottom;
|
|
|
|
|
|
|
|
region16_union_rect(&(xfc->invalidRegion), &(xfc->invalidRegion), &invalidRect);
|
|
|
|
|
2014-06-05 20:36:01 +04:00
|
|
|
if (!xfc->inGfxFrame)
|
2014-06-13 00:13:12 +04:00
|
|
|
xf_OutputUpdate(xfc);
|
2014-06-05 20:36:01 +04:00
|
|
|
|
2014-06-05 02:03:25 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int xf_SurfaceCommand(RdpgfxClientContext* context, RDPGFX_SURFACE_COMMAND* cmd)
|
|
|
|
{
|
|
|
|
int status = 1;
|
|
|
|
xfContext* xfc = (xfContext*) context->custom;
|
|
|
|
|
|
|
|
switch (cmd->codecId)
|
|
|
|
{
|
|
|
|
case RDPGFX_CODECID_UNCOMPRESSED:
|
|
|
|
status = xf_SurfaceCommand_Uncompressed(xfc, context, cmd);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RDPGFX_CODECID_CAVIDEO:
|
|
|
|
status = xf_SurfaceCommand_RemoteFX(xfc, context, cmd);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RDPGFX_CODECID_CLEARCODEC:
|
2014-06-05 06:49:03 +04:00
|
|
|
status = xf_SurfaceCommand_ClearCodec(xfc, context, cmd);
|
2014-06-05 02:03:25 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case RDPGFX_CODECID_PLANAR:
|
2014-06-05 06:49:03 +04:00
|
|
|
status = xf_SurfaceCommand_Planar(xfc, context, cmd);
|
2014-06-05 02:03:25 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case RDPGFX_CODECID_H264:
|
2014-06-05 20:36:01 +04:00
|
|
|
printf("xf_SurfaceCommand_H264\n");
|
2014-06-05 02:03:25 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case RDPGFX_CODECID_ALPHA:
|
2014-06-05 20:36:01 +04:00
|
|
|
printf("xf_SurfaceCommand_Alpha\n");
|
2014-06-05 02:03:25 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case RDPGFX_CODECID_CAPROGRESSIVE:
|
2014-06-05 20:36:01 +04:00
|
|
|
printf("xf_SurfaceCommand_Progressive\n");
|
2014-06-05 02:03:25 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case RDPGFX_CODECID_CAPROGRESSIVE_V2:
|
2014-06-05 20:36:01 +04:00
|
|
|
printf("xf_SurfaceCommand_ProgressiveV2\n");
|
2014-06-05 02:03:25 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int xf_DeleteEncodingContext(RdpgfxClientContext* context, RDPGFX_DELETE_ENCODING_CONTEXT_PDU* deleteEncodingContext)
|
|
|
|
{
|
2014-06-13 00:13:12 +04:00
|
|
|
printf("xf_DeleteEncodingContext\n");
|
|
|
|
|
2014-06-05 02:03:25 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int xf_CreateSurface(RdpgfxClientContext* context, RDPGFX_CREATE_SURFACE_PDU* createSurface)
|
|
|
|
{
|
2014-06-12 01:48:04 +04:00
|
|
|
xfGfxSurface* surface;
|
|
|
|
xfContext* xfc = (xfContext*) context->custom;
|
|
|
|
|
2014-06-05 22:52:27 +04:00
|
|
|
printf("xf_CreateSurface: surfaceId: %d width: %d height: %d format: 0x%02X\n",
|
|
|
|
createSurface->surfaceId, createSurface->width, createSurface->height, createSurface->pixelFormat);
|
|
|
|
|
2014-06-12 01:48:04 +04:00
|
|
|
surface = (xfGfxSurface*) calloc(1, sizeof(xfGfxSurface));
|
|
|
|
|
|
|
|
if (!surface)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
surface->surfaceId = createSurface->surfaceId;
|
|
|
|
surface->width = (UINT32) createSurface->width;
|
|
|
|
surface->height = (UINT32) createSurface->height;
|
|
|
|
surface->alpha = (createSurface->pixelFormat == PIXEL_FORMAT_ARGB_8888) ? TRUE : FALSE;
|
|
|
|
|
2014-06-13 00:13:12 +04:00
|
|
|
surface->scanline = surface->width * 4;
|
|
|
|
surface->data = (BYTE*) calloc(1, surface->scanline * surface->height);
|
2014-06-12 01:48:04 +04:00
|
|
|
|
|
|
|
if (!surface->data)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
surface->image = XCreateImage(xfc->display, xfc->visual, 24, ZPixmap, 0,
|
|
|
|
(char*) surface->data, surface->width, surface->height, 32, 0);
|
|
|
|
|
|
|
|
context->SetSurfaceData(context, surface->surfaceId, (void*) surface);
|
|
|
|
|
2014-06-05 02:03:25 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int xf_DeleteSurface(RdpgfxClientContext* context, RDPGFX_DELETE_SURFACE_PDU* deleteSurface)
|
|
|
|
{
|
2014-06-12 01:48:04 +04:00
|
|
|
xfGfxSurface* surface = NULL;
|
|
|
|
|
|
|
|
surface = (xfGfxSurface*) context->GetSurfaceData(context, deleteSurface->surfaceId);
|
|
|
|
|
2014-06-05 22:52:27 +04:00
|
|
|
printf("xf_DeleteSurface: surfaceId: %d\n", deleteSurface->surfaceId);
|
|
|
|
|
2014-06-12 01:48:04 +04:00
|
|
|
if (surface)
|
|
|
|
{
|
|
|
|
XFree(surface->image);
|
|
|
|
free(surface->data);
|
|
|
|
free(surface);
|
|
|
|
}
|
|
|
|
|
|
|
|
context->SetSurfaceData(context, deleteSurface->surfaceId, NULL);
|
|
|
|
|
2014-06-05 02:03:25 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int xf_SolidFill(RdpgfxClientContext* context, RDPGFX_SOLID_FILL_PDU* solidFill)
|
|
|
|
{
|
2014-06-05 06:49:03 +04:00
|
|
|
UINT16 index;
|
|
|
|
UINT32 color;
|
|
|
|
BYTE a, r, g, b;
|
2014-06-13 16:36:09 +04:00
|
|
|
int nWidth, nHeight;
|
2014-06-05 06:49:03 +04:00
|
|
|
RDPGFX_RECT16* rect;
|
2014-06-13 16:36:09 +04:00
|
|
|
xfGfxSurface* surface;
|
2014-06-05 06:49:03 +04:00
|
|
|
RECTANGLE_16 invalidRect;
|
|
|
|
xfContext* xfc = (xfContext*) context->custom;
|
|
|
|
|
2014-06-13 16:36:09 +04:00
|
|
|
surface = (xfGfxSurface*) context->GetSurfaceData(context, solidFill->surfaceId);
|
|
|
|
|
2014-06-05 20:36:01 +04:00
|
|
|
printf("xf_SolidFill\n");
|
|
|
|
|
2014-06-13 16:36:09 +04:00
|
|
|
if (!surface)
|
|
|
|
return -1;
|
|
|
|
|
2014-06-05 06:49:03 +04:00
|
|
|
b = solidFill->fillPixel.B;
|
|
|
|
g = solidFill->fillPixel.G;
|
|
|
|
r = solidFill->fillPixel.R;
|
|
|
|
a = solidFill->fillPixel.XA;
|
|
|
|
|
|
|
|
color = ARGB32(a, r, g, b);
|
|
|
|
|
|
|
|
for (index = 0; index < solidFill->fillRectCount; index++)
|
|
|
|
{
|
|
|
|
rect = &(solidFill->fillRects[index]);
|
|
|
|
|
2014-06-13 16:36:09 +04:00
|
|
|
nWidth = rect->right - rect->left;
|
|
|
|
nHeight = rect->bottom - rect->top;
|
2014-06-05 06:49:03 +04:00
|
|
|
|
|
|
|
invalidRect.left = rect->left;
|
|
|
|
invalidRect.top = rect->top;
|
|
|
|
invalidRect.right = rect->right;
|
|
|
|
invalidRect.bottom = rect->bottom;
|
|
|
|
|
2014-06-13 16:36:09 +04:00
|
|
|
freerdp_image_fill(surface->data, PIXEL_FORMAT_XRGB32, surface->scanline,
|
|
|
|
rect->left, rect->top, nWidth, nHeight, color);
|
|
|
|
|
2014-06-05 06:49:03 +04:00
|
|
|
region16_union_rect(&(xfc->invalidRegion), &(xfc->invalidRegion), &invalidRect);
|
|
|
|
}
|
|
|
|
|
2014-06-05 20:36:01 +04:00
|
|
|
if (!xfc->inGfxFrame)
|
2014-06-13 00:13:12 +04:00
|
|
|
xf_OutputUpdate(xfc);
|
2014-06-05 20:36:01 +04:00
|
|
|
|
2014-06-05 02:03:25 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int xf_SurfaceToSurface(RdpgfxClientContext* context, RDPGFX_SURFACE_TO_SURFACE_PDU* surfaceToSurface)
|
|
|
|
{
|
2014-06-13 00:13:12 +04:00
|
|
|
UINT16 index;
|
|
|
|
int nWidth, nHeight;
|
|
|
|
RDPGFX_RECT16* rectSrc;
|
|
|
|
RDPGFX_POINT16* destPt;
|
|
|
|
RECTANGLE_16 invalidRect;
|
|
|
|
xfGfxSurface* surfaceSrc;
|
|
|
|
xfGfxSurface* surfaceDst;
|
|
|
|
xfContext* xfc = (xfContext*) context->custom;
|
|
|
|
|
|
|
|
rectSrc = &(surfaceToSurface->rectSrc);
|
|
|
|
destPt = &surfaceToSurface->destPts[0];
|
|
|
|
|
|
|
|
surfaceSrc = (xfGfxSurface*) context->GetSurfaceData(context, surfaceToSurface->surfaceIdSrc);
|
|
|
|
|
|
|
|
if (surfaceToSurface->surfaceIdSrc != surfaceToSurface->surfaceIdDest)
|
|
|
|
surfaceDst = (xfGfxSurface*) context->GetSurfaceData(context, surfaceToSurface->surfaceIdDest);
|
|
|
|
else
|
|
|
|
surfaceDst = surfaceSrc;
|
|
|
|
|
|
|
|
if (!surfaceSrc || !surfaceDst)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
nWidth = rectSrc->right - rectSrc->left + 1;
|
|
|
|
nHeight = rectSrc->bottom - rectSrc->top + 1;
|
|
|
|
|
|
|
|
for (index = 0; index < surfaceToSurface->destPtsCount; index++)
|
|
|
|
{
|
|
|
|
destPt = &surfaceToSurface->destPts[index];
|
|
|
|
|
2014-06-13 05:02:25 +04:00
|
|
|
freerdp_image_copy(surfaceDst->data, PIXEL_FORMAT_XRGB32, surfaceDst->scanline,
|
|
|
|
destPt->x, destPt->y, nWidth, nHeight, surfaceSrc->data, PIXEL_FORMAT_XRGB32,
|
|
|
|
surfaceSrc->scanline, rectSrc->left, rectSrc->top);
|
2014-06-13 00:13:12 +04:00
|
|
|
|
|
|
|
invalidRect.left = destPt->x;
|
|
|
|
invalidRect.top = destPt->y;
|
2014-06-13 05:02:25 +04:00
|
|
|
invalidRect.right = destPt->x + rectSrc->right;
|
|
|
|
invalidRect.bottom = destPt->y + rectSrc->bottom;
|
2014-06-13 00:13:12 +04:00
|
|
|
|
|
|
|
region16_union_rect(&(xfc->invalidRegion), &(xfc->invalidRegion), &invalidRect);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!xfc->inGfxFrame)
|
|
|
|
xf_OutputUpdate(xfc);
|
|
|
|
|
2014-06-05 02:03:25 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int xf_SurfaceToCache(RdpgfxClientContext* context, RDPGFX_SURFACE_TO_CACHE_PDU* surfaceToCache)
|
|
|
|
{
|
2014-06-13 16:36:09 +04:00
|
|
|
RDPGFX_RECT16* rect;
|
|
|
|
xfGfxSurface* surface;
|
|
|
|
xfGfxCacheEntry* cacheEntry;
|
|
|
|
|
|
|
|
rect = &(surfaceToCache->rectSrc);
|
|
|
|
|
|
|
|
surface = (xfGfxSurface*) context->GetSurfaceData(context, surfaceToCache->surfaceId);
|
|
|
|
|
2014-06-14 01:30:13 +04:00
|
|
|
//printf("xf_SurfaceToCache: cacheKey: 0x%016X cacheSlot: %ld\n",
|
|
|
|
// surfaceToCache->cacheKey, surfaceToCache->cacheSlot);
|
2014-06-13 16:36:09 +04:00
|
|
|
|
|
|
|
if (!surface)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
cacheEntry = (xfGfxCacheEntry*) calloc(1, sizeof(xfGfxCacheEntry));
|
|
|
|
|
|
|
|
if (!cacheEntry)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
cacheEntry->width = (UINT32) (rect->right - rect->left);
|
|
|
|
cacheEntry->height = (UINT32) (rect->bottom - rect->top);
|
|
|
|
cacheEntry->alpha = surface->alpha;
|
|
|
|
|
|
|
|
cacheEntry->scanline = cacheEntry->width * 4;
|
|
|
|
cacheEntry->data = (BYTE*) calloc(1, surface->scanline * surface->height);
|
|
|
|
|
|
|
|
if (!cacheEntry->data)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
freerdp_image_copy(cacheEntry->data, PIXEL_FORMAT_XRGB32, cacheEntry->scanline,
|
|
|
|
0, 0, cacheEntry->width, cacheEntry->height, surface->data,
|
|
|
|
PIXEL_FORMAT_XRGB32, surface->scanline, rect->left, rect->top);
|
|
|
|
|
|
|
|
context->SetCacheSlotData(context, surfaceToCache->cacheSlot, (void*) cacheEntry);
|
2014-06-13 00:13:12 +04:00
|
|
|
|
2014-06-05 02:03:25 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int xf_CacheToSurface(RdpgfxClientContext* context, RDPGFX_CACHE_TO_SURFACE_PDU* cacheToSurface)
|
|
|
|
{
|
2014-06-13 16:36:09 +04:00
|
|
|
UINT16 index;
|
|
|
|
RDPGFX_POINT16* destPt;
|
|
|
|
xfGfxSurface* surface;
|
|
|
|
xfGfxCacheEntry* cacheEntry;
|
|
|
|
RECTANGLE_16 invalidRect;
|
|
|
|
xfContext* xfc = (xfContext*) context->custom;
|
|
|
|
|
|
|
|
surface = (xfGfxSurface*) context->GetSurfaceData(context, cacheToSurface->surfaceId);
|
|
|
|
cacheEntry = (xfGfxCacheEntry*) context->GetCacheSlotData(context, cacheToSurface->cacheSlot);
|
|
|
|
|
2014-06-14 01:30:13 +04:00
|
|
|
//printf("xf_CacheToSurface: cacheEntry: %d\n",
|
|
|
|
// cacheToSurface->cacheSlot);
|
2014-06-13 16:36:09 +04:00
|
|
|
|
|
|
|
if (!surface || !cacheEntry)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
for (index = 0; index < cacheToSurface->destPtsCount; index++)
|
|
|
|
{
|
|
|
|
destPt = &cacheToSurface->destPts[index];
|
|
|
|
|
|
|
|
freerdp_image_copy(surface->data, PIXEL_FORMAT_XRGB32, surface->scanline,
|
|
|
|
destPt->x, destPt->y, cacheEntry->width, cacheEntry->height,
|
|
|
|
cacheEntry->data, PIXEL_FORMAT_XRGB32, cacheEntry->scanline, 0, 0);
|
|
|
|
|
|
|
|
invalidRect.left = destPt->x;
|
|
|
|
invalidRect.top = destPt->y;
|
|
|
|
invalidRect.right = destPt->x + cacheEntry->width - 1;
|
|
|
|
invalidRect.bottom = destPt->y + cacheEntry->height - 1;
|
|
|
|
|
|
|
|
region16_union_rect(&(xfc->invalidRegion), &(xfc->invalidRegion), &invalidRect);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!xfc->inGfxFrame)
|
|
|
|
xf_OutputUpdate(xfc);
|
2014-06-13 00:13:12 +04:00
|
|
|
|
2014-06-05 02:03:25 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int xf_CacheImportReply(RdpgfxClientContext* context, RDPGFX_CACHE_IMPORT_REPLY_PDU* cacheImportReply)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int xf_EvictCacheEntry(RdpgfxClientContext* context, RDPGFX_EVICT_CACHE_ENTRY_PDU* evictCacheEntry)
|
|
|
|
{
|
2014-06-13 00:13:12 +04:00
|
|
|
printf("xf_EvictCacheEntry\n");
|
|
|
|
|
2014-06-05 02:03:25 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int xf_MapSurfaceToOutput(RdpgfxClientContext* context, RDPGFX_MAP_SURFACE_TO_OUTPUT_PDU* surfaceToOutput)
|
|
|
|
{
|
2014-06-13 00:13:12 +04:00
|
|
|
xfContext* xfc = (xfContext*) context->custom;
|
|
|
|
|
|
|
|
xfc->outputSurfaceId = surfaceToOutput->surfaceId;
|
|
|
|
|
2014-06-05 02:03:25 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int xf_MapSurfaceToWindow(RdpgfxClientContext* context, RDPGFX_MAP_SURFACE_TO_WINDOW_PDU* surfaceToWindow)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void xf_register_graphics_pipeline(xfContext* xfc, RdpgfxClientContext* gfx)
|
|
|
|
{
|
|
|
|
xfc->gfx = gfx;
|
|
|
|
gfx->custom = (void*) xfc;
|
|
|
|
|
|
|
|
gfx->ResetGraphics = xf_ResetGraphics;
|
|
|
|
gfx->StartFrame = xf_StartFrame;
|
|
|
|
gfx->EndFrame = xf_EndFrame;
|
|
|
|
gfx->SurfaceCommand = xf_SurfaceCommand;
|
|
|
|
gfx->DeleteEncodingContext = xf_DeleteEncodingContext;
|
|
|
|
gfx->CreateSurface = xf_CreateSurface;
|
|
|
|
gfx->DeleteSurface = xf_DeleteSurface;
|
|
|
|
gfx->SolidFill = xf_SolidFill;
|
|
|
|
gfx->SurfaceToSurface = xf_SurfaceToSurface;
|
|
|
|
gfx->SurfaceToCache = xf_SurfaceToCache;
|
|
|
|
gfx->CacheToSurface = xf_CacheToSurface;
|
|
|
|
gfx->CacheImportReply = xf_CacheImportReply;
|
|
|
|
gfx->EvictCacheEntry = xf_EvictCacheEntry;
|
|
|
|
gfx->MapSurfaceToOutput = xf_MapSurfaceToOutput;
|
|
|
|
gfx->MapSurfaceToWindow = xf_MapSurfaceToWindow;
|
2014-06-13 00:13:12 +04:00
|
|
|
|
|
|
|
region16_init(&(xfc->invalidRegion));
|
2014-06-05 02:03:25 +04:00
|
|
|
}
|