Searched refs:ilace (Results 1 – 10 of 10) sorted by relevance
/external/libkmsxx/kms++/src/ |
D | modedb.cpp | 11 …ind_from_table(const Videomode* modes, uint32_t width, uint32_t height, float vrefresh, bool ilace) in find_from_table() argument 19 if (ilace != m.interlace()) in find_from_table() 36 if (ilace != m.interlace()) in find_from_table() 48 const Videomode& find_dmt(uint32_t width, uint32_t height, float vrefresh, bool ilace) in find_dmt() argument 50 return find_from_table(dmt_modes, width, height, vrefresh, ilace); in find_dmt() 53 const Videomode& find_cea(uint32_t width, uint32_t height, float vrefresh, bool ilace) in find_cea() argument 55 return find_from_table(cea_modes, width, height, vrefresh, ilace); in find_cea()
|
D | mode_cvt.cpp | 49 Videomode videomode_from_cvt(uint32_t hact, uint32_t vact, uint32_t refresh, bool ilace, bool reduc… in videomode_from_cvt() argument 56 bool INT_RQD = ilace; in videomode_from_cvt() 61 if (ilace) in videomode_from_cvt()
|
D | connector.cpp | 155 Videomode Connector::get_mode(unsigned xres, unsigned yres, float vrefresh, bool ilace) const in get_mode() 165 if (ilace != m.interlace()) in get_mode() 182 if (ilace != m.interlace()) in get_mode()
|
D | videomode.cpp | 56 void Videomode::set_interlace(bool ilace) in set_interlace() argument 58 if (ilace) in set_interlace()
|
/external/libkmsxx/kms++/inc/kms++/ |
D | modedb.h | 13 const Videomode& find_dmt(uint32_t width, uint32_t height, float vrefresh, bool ilace); 14 const Videomode& find_cea(uint32_t width, uint32_t height, float vrefresh, bool ilace);
|
D | mode_cvt.h | 7 Videomode videomode_from_cvt(uint32_t hact, uint32_t vact, uint32_t refresh, bool ilace, bool reduc…
|
D | connector.h | 28 Videomode get_mode(unsigned xres, unsigned yres, float vrefresh, bool ilace) const;
|
D | videomode.h | 45 void set_interlace(bool ilace);
|
/external/libkmsxx/utils/ |
D | kmstest.cpp | 152 bool ilace = sm[5].matched ? true : false; in parse_crtc() local 156 output.mode = videomode_from_cvt(w, h, refresh, ilace, s_cvt_v2, s_cvt_vid_opt); in parse_crtc() 159 output.mode = find_dmt(w, h, refresh, ilace); in parse_crtc() 165 output.mode = find_cea(w, h, refresh, ilace); in parse_crtc() 171 output.mode = output.connector->get_mode(w, h, refresh, ilace); in parse_crtc()
|
/external/libkmsxx/py/pykms/ |
D | pykmsbase.cpp | 78 ….def("get_mode", (Videomode(Connector::*)(unsigned xres, unsigned yres, float refresh, bool ilace)… in init_pykmsbase()
|