Searched refs:old_xpos (Results 1 – 7 of 7) sorted by relevance
/external/libkmsxx/kms++util/src/ |
D | colorbar.cpp | 38 static void drm_draw_color_bar_rgb888(IFramebuffer& buf, int old_xpos, int xpos, int width) in drm_draw_color_bar_rgb888() argument 44 if (old_xpos >= 0) { in drm_draw_color_bar_rgb888() 45 for (int x = old_xpos; x < old_xpos + width; ++x) in drm_draw_color_bar_rgb888() 54 static void drm_draw_color_bar_rgb565(IFramebuffer& buf, int old_xpos, int xpos, int width) in drm_draw_color_bar_rgb565() argument 62 if (old_xpos >= 0) { in drm_draw_color_bar_rgb565() 63 for (int x = old_xpos; x < old_xpos + width; ++x) in drm_draw_color_bar_rgb565() 72 static void drm_draw_color_bar_semiplanar_yuv(IFramebuffer& buf, int old_xpos, int xpos, int width) in drm_draw_color_bar_semiplanar_yuv() argument 90 if (old_xpos >= 0) { in drm_draw_color_bar_semiplanar_yuv() 91 for (int x = old_xpos; x < old_xpos + width; ++x) in drm_draw_color_bar_semiplanar_yuv() 100 void draw_color_bar(IFramebuffer& buf, int old_xpos, int xpos, int width) in draw_color_bar() argument [all …]
|
/external/libkmsxx/py/pykms/ |
D | pykmsutil.cpp | 52 m.def("draw_color_bar", [](Framebuffer& fb, int old_xpos, int xpos, int width) { in init_pykmstest() argument 53 draw_color_bar(fb, old_xpos, xpos, width); in init_pykmstest()
|
/external/libkmsxx/py/tests/ |
D | db.py | 45 old_xpos = (current_xpos + (fb.width - bar_width - bar_speed)) % (fb.width - bar_width); 50 pykms.draw_color_bar(fb, old_xpos, new_xpos, bar_width)
|
D | sync.py | 137 old_xpos = (current_xpos + (fb.width - bar_width - bar_speed)) % (fb.width - bar_width); 142 pykms.draw_color_bar(fb, old_xpos, new_xpos, bar_width)
|
/external/libkmsxx/kms++util/inc/kms++util/ |
D | kms++util.h | 29 void draw_color_bar(IFramebuffer& buf, int old_xpos, int xpos, int width);
|
/external/libkmsxx/utils/ |
D | omap-wbcap.cpp | 198 int old_xpos = frame_num < s_num_buffers ? -1 : get_bar_pos(fb, frame_num - s_num_buffers); in draw_bar() local 201 draw_color_bar(*fb, old_xpos, new_xpos, bar_width); in draw_bar()
|
D | kmstest.cpp | 976 int old_xpos = frame_num < s_num_buffers ? -1 : get_bar_pos(fb, frame_num - s_num_buffers); in draw_bar() local 979 draw_color_bar(*fb, old_xpos, new_xpos, bar_width); in draw_bar()
|