Lines Matching refs:framebuffer
42 * struct drm_framebuffer_funcs - framebuffer hooks
48 * Clean up framebuffer resources, specifically also unreference the
50 * framebuffer successfully created by calling
53 * framebuffer.
55 void (*destroy)(struct drm_framebuffer *framebuffer);
84 * framebuffer has changed and should be flushed to the display
99 int (*dirty)(struct drm_framebuffer *framebuffer,
121 * @dev: DRM device this framebuffer belongs to
141 * @format: framebuffer format information
145 * @funcs: framebuffer vfunc table
160 * actual pixel data for this framebuffer plane starts at an offset,
179 * @width: Logical width of the visible area of the framebuffer, in
184 * @height: Logical height of the visible area of the framebuffer, in
189 * @flags: Framebuffer flags like DRM_MODE_FB_INTERLACED or
210 * @obj: GEM objects backing the framebuffer, one per plane (optional).
212 * This is used by the GEM framebuffer helpers, see e.g.
231 * drm_framebuffer_get - acquire a framebuffer reference
232 * @fb: DRM framebuffer
234 * This function increments the framebuffer's reference count.
242 * drm_framebuffer_put - release a framebuffer reference
243 * @fb: DRM framebuffer
245 * This function decrements the framebuffer's reference count and frees the
246 * framebuffer if the reference count drops to zero.
254 * drm_framebuffer_read_refcount - read the framebuffer reference count.
255 * @fb: framebuffer
257 * This functions returns the framebuffer's reference count.
266 * @p: location to store framebuffer
267 * @fb: new framebuffer (maybe NULL)
269 * This functions sets the location to store a reference to the framebuffer,
270 * unreferencing the framebuffer that was previously stored in that location.