Lines Matching full:framebuffer
40 * struct drm_framebuffer_funcs - framebuffer hooks
46 * Clean up framebuffer resources, specifically also unreference the
48 * framebuffer successfully created by calling
51 * framebuffer.
53 void (*destroy)(struct drm_framebuffer *framebuffer);
82 * framebuffer has changed and should be flushed to the display
97 int (*dirty)(struct drm_framebuffer *framebuffer,
119 * @dev: DRM device this framebuffer belongs to
139 * @format: framebuffer format information
143 * @funcs: framebuffer vfunc table
158 * the actual pixel data for this framebuffer plane starts at an offset,
177 * @width: Logical width of the visible area of the framebuffer, in
182 * @height: Logical height of the visible area of the framebuffer, in
187 * @flags: Framebuffer flags like DRM_MODE_FB_INTERLACED or
196 * @obj: GEM objects backing the framebuffer, one per plane (optional).
198 * This is used by the GEM framebuffer helpers, see e.g.
217 * drm_framebuffer_get - acquire a framebuffer reference
218 * @fb: DRM framebuffer
220 * This function increments the framebuffer's reference count.
228 * drm_framebuffer_put - release a framebuffer reference
229 * @fb: DRM framebuffer
231 * This function decrements the framebuffer's reference count and frees the
232 * framebuffer if the reference count drops to zero.
240 * drm_framebuffer_read_refcount - read the framebuffer reference count.
241 * @fb: framebuffer
243 * This functions returns the framebuffer's reference count.
252 * @p: location to store framebuffer
253 * @fb: new framebuffer (maybe NULL)
255 * This functions sets the location to store a reference to the framebuffer,
256 * unreferencing the framebuffer that was previously stored in that location.
290 * @base: base framebuffer structure.