Home
last modified time | relevance | path

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

/external/libkmsxx/kms++/src/
Dmodedb.cpp12 …ind_from_table(const Videomode* modes, uint32_t width, uint32_t height, float vrefresh, bool ilace) in find_from_table() argument
20 if (ilace != m.interlace()) in find_from_table()
37 if (ilace != m.interlace()) in find_from_table()
49 const Videomode& find_dmt(uint32_t width, uint32_t height, float vrefresh, bool ilace) in find_dmt() argument
51 return find_from_table(dmt_modes, width, height, vrefresh, ilace); in find_dmt()
54 const Videomode& find_cea(uint32_t width, uint32_t height, float vrefresh, bool ilace) in find_cea() argument
56 return find_from_table(cea_modes, width, height, vrefresh, ilace); in find_cea()
Dmode_cvt.cpp53 Videomode videomode_from_cvt(uint32_t hact, uint32_t vact, uint32_t refresh, bool ilace, bool reduc… in videomode_from_cvt() argument
60 bool INT_RQD = ilace; in videomode_from_cvt()
65 if (ilace) in videomode_from_cvt()
Dconnector.cpp153 Videomode Connector::get_mode(unsigned xres, unsigned yres, float vrefresh, bool ilace) const in get_mode()
163 if (ilace != m.interlace()) in get_mode()
180 if (ilace != m.interlace()) in get_mode()
Dvideomode.cpp51 void Videomode::set_interlace(bool ilace) in set_interlace() argument
53 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.h8 Videomode videomode_from_cvt(uint32_t hact, uint32_t vact, uint32_t refresh, bool ilace, bool reduc…
Dconnector.h22 Videomode get_mode(unsigned xres, unsigned yres, float vrefresh, bool ilace) const;
Dvideomode.h48 void set_interlace(bool ilace);
/external/libkmsxx/utils/
Dkmstest.cpp155 bool ilace = sm[5].matched ? true : false; in parse_crtc() local
159 output.mode = videomode_from_cvt(w, h, refresh, ilace, s_cvt_v2, s_cvt_vid_opt); in parse_crtc()
162 output.mode = find_dmt(w, h, refresh, ilace); in parse_crtc()
168 output.mode = find_cea(w, h, refresh, ilace); in parse_crtc()
174 output.mode = output.connector->get_mode(w, h, refresh, ilace); in parse_crtc()
/external/libkmsxx/py/pykms/
Dpykmsbase.cpp74 …ideomode (Connector::*)(unsigned xres, unsigned yres, float refresh, bool ilace) const)&Connector:… in init_pykmsbase()