Changeset 5b0cf63 in mainline for uspace/lib/graph/graph.h


Ignore:
Timestamp:
2018-01-25T13:42:08Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1ab3c4b
Parents:
c832ab15
git-author:
Jiri Svoboda <jiri@…> (2017-01-24 18:40:44)
git-committer:
Jiri Svoboda <jiri@…> (2018-01-25 13:42:08)
Message:

A round of cstyle fixing (i.e. run make ccheck-fix).

File:
1 edited

Legend:

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

    rc832ab15 r5b0cf63  
    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.