Home
last modified time | relevance | path

Searched refs:IFramebuffer (Results 1 – 7 of 7) sorted by relevance

/external/libkmsxx/kms++util/inc/kms++util/
Dkms++util.h18 class IFramebuffer; variable
20 void draw_rgb_pixel(IFramebuffer& buf, unsigned x, unsigned y, RGB color);
21 void draw_yuv422_macropixel(IFramebuffer& buf, unsigned x, unsigned y, YUV yuv1, YUV yuv2);
22 void draw_yuv420_macropixel(IFramebuffer& buf, unsigned x, unsigned y,
24 void draw_rect(IFramebuffer &fb, uint32_t x, uint32_t y, uint32_t w, uint32_t h, RGB color);
25 void draw_text(IFramebuffer& buf, uint32_t x, uint32_t y, const std::string& str, RGB color);
27 void draw_color_bar(IFramebuffer& buf, int old_xpos, int xpos, int width);
29 void draw_test_pattern(IFramebuffer &fb, YUVType yuvt = YUVType::BT601_Lim);
Dcpuframebuffer.h8 class CPUFramebuffer : public IFramebuffer {
Dextcpuframebuffer.h8 class ExtCPUFramebuffer : public IFramebuffer
/external/libkmsxx/kms++/inc/kms++/
Dframebuffer.h8 class IFramebuffer {
10 virtual ~IFramebuffer() { } in ~IFramebuffer()
25 class Framebuffer : public DrmObject, public IFramebuffer
/external/libkmsxx/kms++util/src/
Dcolorbar.cpp38 static void drm_draw_color_bar_rgb888(IFramebuffer& buf, int old_xpos, int xpos, int width) 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()
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()
100 void draw_color_bar(IFramebuffer& buf, int old_xpos, int xpos, int width) in draw_color_bar()
Ddrawing.cpp9 void draw_rgb_pixel(IFramebuffer& buf, unsigned x, unsigned y, RGB color) in draw_rgb_pixel()
62 void draw_yuv422_macropixel(IFramebuffer& buf, unsigned x, unsigned y, YUV yuv1, YUV yuv2) in draw_yuv422_macropixel()
110 void draw_yuv420_macropixel(IFramebuffer& buf, unsigned x, unsigned y, in draw_yuv420_macropixel()
155 void draw_rect(IFramebuffer &fb, uint32_t x, uint32_t y, uint32_t w, uint32_t h, RGB color) in draw_rect()
211 static void draw_char(IFramebuffer& buf, uint32_t xpos, uint32_t ypos, char c, RGB color) in draw_char()
269 void draw_text(IFramebuffer& buf, uint32_t x, uint32_t y, const string& str, RGB color) in draw_text()
Dtestpat.cpp16 static RGB get_test_pattern_pixel(IFramebuffer& fb, unsigned x, unsigned y) in get_test_pattern_pixel()
100 static void draw_test_pattern_part(IFramebuffer& fb, unsigned start_y, unsigned end_y, YUVType yuvt) in draw_test_pattern_part()
154 static void draw_test_pattern_impl(IFramebuffer& fb, YUVType yuvt) in draw_test_pattern_impl()
184 void draw_test_pattern(IFramebuffer &fb, YUVType yuvt) in draw_test_pattern()