Lines Matching +full:can +full:- +full:primary
4 * Copyright (c) 2009-2010, Code Aurora Forum.
62 * struct drm_minor - DRM device minor structure
67 * &struct drm_device, which is also where driver-private data and resources can
84 * struct drm_pending_event - Event queued up for userspace to read
86 * This represents a DRM event. Drivers can use this as a generic completion
87 * mechanism, which supports kernel-internal &struct completion, &struct dma_fence
88 * and also the DRM-specific &struct drm_event delivery mechanism.
113 * read using drm_read(). Can be optional, since nowadays events are
138 * Double-linked list to keep track of this event. Can be used by the
140 * this list entry is owned by the core for its own book-keeping.
155 * struct drm_file - DRM file private data
166 * See also the :ref:`section on primary nodes and authentication
181 * True if client understands CRTC primary planes and cursor planes
192 * True, if client can handle picture aspect ratios, and has requested
221 * See also the :ref:`section on primary nodes and authentication
243 * primary nodes and authentication <drm_primary_node>`.
289 * Optional pointer for driver private data. Can be allocated in
311 * User-created blob properties; this retains a reference on the
357 * Per-file buffer caches used by the PRIME buffer sharing code.
368 * drm_is_primary_client - is this an open file of the primary node
371 * Returns true if this is an open file of the primary node, i.e.
372 * &drm_file.minor of @file_priv is a primary minor.
374 * See also the :ref:`section on primary nodes and authentication
379 return file_priv->minor->type == DRM_MINOR_PRIMARY; in drm_is_primary_client()
383 * drm_is_render_client - is this an open file of the render node
393 return file_priv->minor->type == DRM_MINOR_RENDER; in drm_is_render_client()