OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IFramebuffer
(Results
1 - 7
of
7
) sorted by null
/external/libkmsxx/kms++util/inc/kms++util/
kms++util.h
18
class
IFramebuffer
;
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);
cpuframebuffer.h
8
class CPUFramebuffer : public
IFramebuffer
{
extcpuframebuffer.h
8
class ExtCPUFramebuffer : public
IFramebuffer
/external/libkmsxx/kms++/inc/kms++/
framebuffer.h
8
class
IFramebuffer
{
10
virtual ~
IFramebuffer
() { }
25
class Framebuffer : public DrmObject, public
IFramebuffer
/external/libkmsxx/kms++util/src/
colorbar.cpp
38
static void drm_draw_color_bar_rgb888(
IFramebuffer
& buf, int old_xpos, int xpos, int width)
54
static void drm_draw_color_bar_rgb565(
IFramebuffer
& buf, int old_xpos, int xpos, int width)
72
static void drm_draw_color_bar_semiplanar_yuv(
IFramebuffer
& buf, int old_xpos, int xpos, int width)
100
void draw_color_bar(
IFramebuffer
& buf, int old_xpos, int xpos, int width)
drawing.cpp
9
void draw_rgb_pixel(
IFramebuffer
& buf, unsigned x, unsigned y, RGB color)
62
void draw_yuv422_macropixel(
IFramebuffer
& buf, unsigned x, unsigned y, YUV yuv1, YUV yuv2)
110
void draw_yuv420_macropixel(
IFramebuffer
& buf, unsigned x, unsigned y,
155
void draw_rect(
IFramebuffer
&fb, uint32_t x, uint32_t y, uint32_t w, uint32_t h, RGB color)
211
static void draw_char(
IFramebuffer
& buf, uint32_t xpos, uint32_t ypos, char c, RGB color)
269
void draw_text(
IFramebuffer
& buf, uint32_t x, uint32_t y, const string& str, RGB color)
testpat.cpp
16
static RGB get_test_pattern_pixel(
IFramebuffer
& fb, unsigned x, unsigned y)
100
static void draw_test_pattern_part(
IFramebuffer
& fb, unsigned start_y, unsigned end_y, YUVType yuvt)
154
static void draw_test_pattern_impl(
IFramebuffer
& fb, YUVType yuvt)
184
void draw_test_pattern(
IFramebuffer
&fb, YUVType yuvt)
Completed in 266 milliseconds