Home
last modified time | relevance | path

Searched refs:fb_info (Results 1 – 9 of 9) sorted by relevance

/external/u-boot/drivers/video/
Dmxc_ipuv3_fb.c29 static int mxcfb_map_video_memory(struct fb_info *fbi);
30 static int mxcfb_unmap_video_memory(struct fb_info *fbi);
88 static struct fb_info *mxcfb_info[3];
91 static uint32_t bpp_to_pixfmt(struct fb_info *fbi) in bpp_to_pixfmt()
119 static int mxcfb_set_fix(struct fb_info *info) in mxcfb_set_fix()
135 static int setup_disp_channel1(struct fb_info *fbi) in setup_disp_channel1()
170 static int setup_disp_channel2(struct fb_info *fbi) in setup_disp_channel2()
210 static int mxcfb_set_par(struct fb_info *fbi) in mxcfb_set_par()
294 static int mxcfb_check_var(struct fb_var_screeninfo *var, struct fb_info *info) in mxcfb_check_var()
397 static int mxcfb_map_video_memory(struct fb_info *fbi) in mxcfb_map_video_memory()
[all …]
Dda8xx-fb.c152 static struct fb_info *da8xx_fb_info;
559 struct fb_info *info) in fb_setcolreg()
926 size = sizeof(struct fb_info) + sizeof(struct da8xx_fb_par); in video_hw_init()
936 da8xx_fb_info->par = p + sizeof(struct fb_info); in video_hw_init()
Dfsl_diu_fb.c188 static struct fb_info info;
Dfsl_dcu_fb.c221 static struct fb_info info;
/external/u-boot/include/linux/
Dfb.h267 struct fb_info;
406 struct fb_info *info;
443 void (*writeio)(struct fb_info *info, void *dst, void *src, unsigned int size);
444 void (*readio) (struct fb_info *info, void *dst, void *src, unsigned int size);
454 void (*deferred_io)(struct fb_info *info, struct list_head *pagelist);
494 struct fb_info { struct
593 extern int fb_set_cmap(struct fb_cmap *cmap, struct fb_info *fb_info);
594 extern int fb_set_user_cmap(struct fb_cmap_user *cmap, struct fb_info *fb_info);
/external/vulkan-validation-layers/tests/
Dvkrenderframework.cpp605 VkFramebufferCreateInfo fb_info = {}; in InitRenderTarget() local
606 fb_info.sType = VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO; in InitRenderTarget()
607 fb_info.pNext = NULL; in InitRenderTarget()
608 fb_info.renderPass = m_renderPass; in InitRenderTarget()
609 fb_info.attachmentCount = bindings.size(); in InitRenderTarget()
610 fb_info.pAttachments = bindings.data(); in InitRenderTarget()
611 fb_info.width = (uint32_t)m_width; in InitRenderTarget()
612 fb_info.height = (uint32_t)m_height; in InitRenderTarget()
613 fb_info.layers = 1; in InitRenderTarget()
615 vkCreateFramebuffer(device(), &fb_info, NULL, &m_framebuffer); in InitRenderTarget()
Dlayer_validation_tests.cpp7614 VkFramebufferCreateInfo fb_info = {}; in TEST_F() local
7615 fb_info.sType = VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO; in TEST_F()
7616 fb_info.pNext = NULL; in TEST_F()
7617 fb_info.renderPass = rp; in TEST_F()
7618 fb_info.attachmentCount = 1; in TEST_F()
7619 fb_info.pAttachments = depthView; in TEST_F()
7620 fb_info.width = 100; in TEST_F()
7621 fb_info.height = 100; in TEST_F()
7622 fb_info.layers = 1; in TEST_F()
7624 result = vkCreateFramebuffer(device(), &fb_info, NULL, &fb); in TEST_F()
[all …]
/external/u-boot/arch/arm/mach-exynos/include/mach/
Dmipi_dsim.h301 void (*trigger)(struct fb_info *info);
/external/vulkan-validation-layers/layers/
Dcore_validation.cpp9106 MT_FB_ATTACHMENT_INFO fb_info; in PostCallRecordCreateFramebuffer() local
9107 fb_info.view_state = view_state; in PostCallRecordCreateFramebuffer()
9108 fb_info.image = view_state->create_info.image; in PostCallRecordCreateFramebuffer()
9109 fb_state->attachments.push_back(fb_info); in PostCallRecordCreateFramebuffer()