Skip to content
This repository has been archived by the owner on Aug 20, 2020. It is now read-only.

Clean up Event handling. #3

Closed
wants to merge 2 commits into from
Closed

Clean up Event handling. #3

wants to merge 2 commits into from

Commits on Aug 17, 2013

  1. Clean up Event handling.

    We currently have too many places where display is flushed for various reasons.
    The patch does the following changes:
    1)Make all code related to flushing display internal to WaylandDisplay.
    2)Avoid need to flush in WaylandWindow.
    3)In certain cases we need to flush display only if any pending WaylandTasks have been handled else we dont have to.
    kalyankondapally committed Aug 17, 2013
    Configuration menu
    Copy the full SHA
    89a06c8 View commit details
    Browse the repository at this point in the history
  2. Wrong buffer size in DefaultDisplaySpec

    We are using sizeof(pointer) to determine the size of the buffer. This is
    wrong as size of pointer is usually 4 bytes on 32 bit system or size of
    the address register on the particular machine controls the size of the pointer.
    In this case we already know the size as we are allocating the char array on heap.
    This patch makes the necessary changes in this direction.
    kalyankondapally committed Aug 17, 2013
    Configuration menu
    Copy the full SHA
    022a28d View commit details
    Browse the repository at this point in the history