Home
last modified time | relevance | path

Searched refs:ilace (Results 1 – 10 of 10) sorted by relevance

/external/libkmsxx/kms++/src/
Dmodedb.cpp11 …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()
Dmode_cvt.cpp49 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()
Dconnector.cpp155 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()
Dvideomode.cpp56 void Videomode::set_interlace(bool ilace) in set_interlace() argument
58 if (ilace) in set_interlace()
/external/libkmsxx/kms++/inc/kms++/
Dmodedb.h13 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);
Dmode_cvt.h7 Videomode videomode_from_cvt(uint32_t hact, uint32_t vact, uint32_t refresh, bool ilace, bool reduc…
Dconnector.h28 Videomode get_mode(unsigned xres, unsigned yres, float vrefresh, bool ilace) const;
Dvideomode.h45 void set_interlace(bool ilace);
/external/libkmsxx/utils/
Dkmstest.cpp152 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/
Dpykmsbase.cpp78 ….def("get_mode", (Videomode(Connector::*)(unsigned xres, unsigned yres, float refresh, bool ilace)… in init_pykmsbase()