Create a gem handle for an object
int drm_gem_handle_create(struct drm_file * file_priv, struct drm_gem_object * obj, u32 * handlep);
file_priv
drm file-private structure to register the handle for
obj
object to register
handlep
pionter to return the created handle to the caller
Create a handle for this object. This adds a handle reference to the object, which includes a regular reference count. Callers will likely want to dereference the object afterwards.
Jesse Barnes <[email protected]>
Intel Corporation,
Initial version
Laurent Pinchart <[email protected]>
Ideas on board SPRL,
Driver internals
Daniel Vetter <[email protected]>
Intel Corporation,
Contributions all over the place