Home
last modified time | relevance | path

Searched refs:IFramebuffer (Results 1 – 8 of 8) 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_yuv444_pixel(IFramebuffer& buf, unsigned x, unsigned y, YUV yuv);
22 void draw_yuv422_macropixel(IFramebuffer& buf, unsigned x, unsigned y, YUV yuv1, YUV yuv2);
23 void draw_yuv420_macropixel(IFramebuffer& buf, unsigned x, unsigned y,
25 void draw_rect(IFramebuffer& fb, uint32_t x, uint32_t y, uint32_t w, uint32_t h, RGB color);
26 void draw_circle(IFramebuffer& fb, int32_t xCenter, int32_t yCenter, int32_t radius, RGB color);
27 void draw_text(IFramebuffer& buf, uint32_t x, uint32_t y, const std::string& str, RGB color);
29 void draw_color_bar(IFramebuffer& buf, int old_xpos, int xpos, int width);
31 void draw_test_pattern(IFramebuffer& fb, YUVType yuvt = YUVType::BT601_Lim);
Dcpuframebuffer.h7 class CPUFramebuffer : public IFramebuffer
Dextcpuframebuffer.h7 class ExtCPUFramebuffer : public IFramebuffer
/external/libkmsxx/kms++util/src/
Ddrawing.cpp12 void draw_rgb_pixel(IFramebuffer& buf, unsigned x, unsigned y, RGB color) in draw_rgb_pixel()
112 void draw_yuv444_pixel(IFramebuffer& buf, unsigned x, unsigned y, YUV yuv) in draw_yuv444_pixel()
139 static void draw_yuv422_packed_macropixel(IFramebuffer& buf, unsigned x, unsigned y, in draw_yuv422_packed_macropixel()
183 static void draw_y2xx_packed_macropixel(IFramebuffer& buf, unsigned x, unsigned y, in draw_y2xx_packed_macropixel()
239 static void draw_yuv422_semiplanar_macropixel(IFramebuffer& buf, unsigned x, unsigned y, in draw_yuv422_semiplanar_macropixel()
270 static void draw_yuv422_planar_macropixel(IFramebuffer& buf, unsigned x, unsigned y, in draw_yuv422_planar_macropixel()
302 void draw_yuv422_macropixel(IFramebuffer& buf, unsigned x, unsigned y, YUV yuv1, YUV yuv2) in draw_yuv422_macropixel()
338 static void draw_yuv420_semiplanar_macropixel(IFramebuffer& buf, unsigned x, unsigned y, in draw_yuv420_semiplanar_macropixel()
377 static void draw_yuv420_planar_macropixel(IFramebuffer& buf, unsigned x, unsigned y, in draw_yuv420_planar_macropixel()
417 void draw_yuv420_macropixel(IFramebuffer& buf, unsigned x, unsigned y, in draw_yuv420_macropixel()
[all …]
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()
Dtestpat.cpp18 static RGB get_test_pattern_pixel(IFramebuffer& fb, unsigned x, unsigned y) in get_test_pattern_pixel()
102 static void draw_test_pattern_part(IFramebuffer& fb, unsigned start_y, unsigned end_y, YUVType yuvt) in draw_test_pattern_part()
166 static void draw_test_pattern_impl(IFramebuffer& fb, YUVType yuvt) in draw_test_pattern_impl()
200 void draw_test_pattern(IFramebuffer& fb, YUVType yuvt) in draw_test_pattern()
/external/libkmsxx/kms++/inc/kms++/
Dframebuffer.h14 class IFramebuffer
17 virtual ~IFramebuffer() {} in ~IFramebuffer()
35 class Framebuffer : public DrmObject, public IFramebuffer
/external/libkmsxx/utils/
Dkmstest.cpp704 static string fb_crc(IFramebuffer* fb) in fb_crc()