Lines Matching refs:windownr

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