mirror of https://github.com/FreeRDP/FreeRDP
Fixed surface buffer alignment
This commit is contained in:
parent
645cc8bb69
commit
be88fa6705
|
@ -40,9 +40,9 @@ rdpShadowSurface* shadow_surface_new(rdpShadowServer* server, UINT16 x, UINT16 y
|
|||
surface->y = y;
|
||||
surface->width = width;
|
||||
surface->height = height;
|
||||
surface->scanline = ALIGN_SCREEN_SIZE(surface->width, 4) * 4;
|
||||
surface->scanline = ALIGN_SCREEN_SIZE(surface->width, 32) * 4;
|
||||
surface->format = PIXEL_FORMAT_BGRX32;
|
||||
surface->data = (BYTE*)calloc(ALIGN_SCREEN_SIZE(surface->height, 4), surface->scanline);
|
||||
surface->data = (BYTE*)calloc(ALIGN_SCREEN_SIZE(surface->height, 32), surface->scanline);
|
||||
|
||||
if (!surface->data)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue