Home | History | Annotate | Download | only in wayland

Lines Matching refs:pDriverContext

41     return ((VADisplayContextP)dpy)->pDriverContext;
59 VADriverContextP const pDriverContext = pDisplayContext->pDriverContext;
61 return (pDriverContext &&
62 pDriverContext->display_type == VA_DISPLAY_WAYLAND);
68 VADriverContextP pDriverContext;
78 pDriverContext = pDisplayContext->pDriverContext;
79 if (pDriverContext) {
80 free(pDriverContext->vtable_wayland);
81 pDriverContext->vtable_wayland = NULL;
82 free(pDriverContext);
83 pDisplayContext->pDriverContext = NULL;
119 VADriverContextP pDriverContext;
132 pDriverContext = calloc(1, sizeof(*pDriverContext));
133 if (!pDriverContext)
135 pDisplayContext->pDriverContext = pDriverContext;
137 pDriverContext->native_dpy = display;
138 pDriverContext->display_type = VA_DISPLAY_WAYLAND;
143 pDriverContext->vtable_wayland = vtable;