diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2023-03-19 12:02:41 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2023-03-19 14:29:50 -0700 |
commit | 0f537ab4913a8d2b3e58a40385a7745c4974bd76 (patch) | |
tree | f295b1b1ac258459707d67b70b0108ba1807ba8b /src/XvMClibint.h | |
parent | 162422fa80332129168097fd4bcc094cd73a1e65 (diff) |
Convert to X.Org standard code style
Mostly via util/modular/x-indent-all.sh, plus some manual cleanup
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src/XvMClibint.h')
-rw-r--r-- | src/XvMClibint.h | 47 |
1 files changed, 23 insertions, 24 deletions
diff --git a/src/XvMClibint.h b/src/XvMClibint.h index 195a77d..b21b966 100644 --- a/src/XvMClibint.h +++ b/src/XvMClibint.h @@ -9,7 +9,6 @@ #define XvMCCheckExtension(dpy, i, val) \ XextCheckExtension(dpy, i, xvmc_extension_name, val) - #define XvMCGetReq(name, req) \ WORD64ALIGN\ if ((dpy->bufptr + sizeof(xvmc##name##Req)) > dpy->bufmax)\ @@ -24,41 +23,41 @@ _XFUNCPROTOBEGIN Status _xvmc_create_context( - Display * /* dpy */, - XvMCContext * /* context */, - int * /* priv_count */, - CARD32 ** /* priv_data */ + Display * /* dpy */, + XvMCContext * /* context */, + int * /* priv_count */, + CARD32 ** /* priv_data */ ); Status _xvmc_destroy_context( - Display * /* dpy */, - XvMCContext * /* context */ + Display * /* dpy */, + XvMCContext * /* context */ ); -Status _xvmc_create_surface ( - Display * /* dpy */, - XvMCContext * /* context */, - XvMCSurface * /* surface */, - int * /* priv_count */, - CARD32 ** /* priv_data */ +Status _xvmc_create_surface( + Display * /* dpy */, + XvMCContext * /* context */, + XvMCSurface * /* surface */, + int * /* priv_count */, + CARD32 ** /* priv_data */ ); -Status _xvmc_destroy_surface ( - Display * /* dpy */, - XvMCSurface * /* surface */ +Status _xvmc_destroy_surface( + Display * /* dpy */, + XvMCSurface * /* surface */ ); -Status _xvmc_create_subpicture ( - Display * /* dpy */, - XvMCContext * /* context */, - XvMCSubpicture * /* subpicture */, - int * /* priv_count */, - CARD32 ** /* priv_data */ +Status _xvmc_create_subpicture( + Display * /* dpy */, + XvMCContext * /* context */, + XvMCSubpicture * /* subpicture */, + int * /* priv_count */, + CARD32 ** /* priv_data */ ); Status _xvmc_destroy_subpicture( - Display * /* dpy */, - XvMCSubpicture * /* subpicture */ + Display * /* dpy */, + XvMCSubpicture * /* subpicture */ ); _XFUNCPROTOEND |