Changeset 2b3dd78 in mainline for uspace/lib/graph/graph.h


Ignore:
Timestamp:
2018-01-31T12:02:00Z (7 years ago)
Author:
Jenda <jenda.jzqk73@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5595841
Parents:
a0a9cc2 (diff), 14d789c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge remote-tracking branch 'upstream/master' into forwardport

change tmon includes because of new stdlib

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/graph/graph.h

    ra0a9cc2 r2b3dd78  
    5454         * Device driver shall allocate any necessary internal structures
    5555         * specific for a claimed visualizer. */
    56         errno_t (* claim)(struct visualizer *vs);
     56        errno_t (*claim)(struct visualizer *vs);
    5757       
    5858        /**
     
    6161         * the mode is set and if so it shall change its internal state
    6262         * accordingly (e.g. deallocate frame buffers). */
    63         errno_t (* yield)(struct visualizer *vs);
     63        errno_t (*yield)(struct visualizer *vs);
    6464       
    6565        /**
     
    7272         * optimization), the pointer to the handle_damage operation can be
    7373         * changed at this point. */
    74         errno_t (* change_mode)(struct visualizer *vs, vslmode_t new_mode);
     74        errno_t (*change_mode)(struct visualizer *vs, vslmode_t new_mode);
    7575       
    7676        /**
     
    8282         * shall be added to the coordinates and if necessary the result shall be
    8383         * wrapped around the edge of the backbuffer). */
    84         errno_t (* handle_damage)(struct visualizer *vs,
     84        errno_t (*handle_damage)(struct visualizer *vs,
    8585            sysarg_t x, sysarg_t y, sysarg_t width, sysarg_t height,
    86                 sysarg_t x_offset, sysarg_t y_offset);
     86            sysarg_t x_offset, sysarg_t y_offset);
    8787       
    8888        /**
     
    9090         * case, device driver might enable power saving mode on the device
    9191         * corresponding to the visualizer. */
    92         errno_t (* suspend)(struct visualizer *vs);
     92        errno_t (*suspend)(struct visualizer *vs);
    9393       
    9494        /**
    9595         * When upper layers detect activity on suspended visualizer, device
    9696         * driver shall disable power saving mode on the corresponding device. */
    97         errno_t (* wakeup)(struct visualizer *vs);
     97        errno_t (*wakeup)(struct visualizer *vs);
    9898} visualizer_ops_t;
    9999
Note: See TracChangeset for help on using the changeset viewer.