Lines Matching refs:windownr
690 static inline int SetColorBlend(struct av7110 *av7110, u8 windownr)
692 return av7110_fw_cmd(av7110, COMTYPE_OSD, SetCBlend, 1, windownr);
695 static inline int SetBlend_(struct av7110 *av7110, u8 windownr,
699 windownr, colordepth, index, blending);
702 static inline int SetColor_(struct av7110 *av7110, u8 windownr,
706 windownr, colordepth, index, colorhi, colorlo);
709 static inline int SetFont(struct av7110 *av7110, u8 windownr, u8 fontsize,
713 windownr, fontsize, colorfg, colorbg);
790 static inline int DrawLine(struct av7110 *av7110, u8 windownr,
794 windownr, x, y, dx, dy, color);
797 static inline int DrawBlock(struct av7110 *av7110, u8 windownr,
801 windownr, x, y, dx, dy, color);
804 static inline int HideWindow(struct av7110 *av7110, u8 windownr)
806 return av7110_fw_cmd(av7110, COMTYPE_OSD, WHide, 1, windownr);
809 static inline int MoveWindowRel(struct av7110 *av7110, u8 windownr, u16 x, u16 y)
811 return av7110_fw_cmd(av7110, COMTYPE_OSD, WMoveD, 3, windownr, x, y);
814 static inline int MoveWindowAbs(struct av7110 *av7110, u8 windownr, u16 x, u16 y)
816 return av7110_fw_cmd(av7110, COMTYPE_OSD, WMoveA, 3, windownr, x, y);
819 static inline int DestroyOSDWindow(struct av7110 *av7110, u8 windownr)
821 return av7110_fw_cmd(av7110, COMTYPE_OSD, WDestroy, 1, windownr);
824 static inline int CreateOSDWindow(struct av7110 *av7110, u8 windownr,
829 windownr, disptype, width, height);