| nouveau_crtc.h | 1 /* $NetBSD: nouveau_crtc.h,v 1.3 2021/12/18 23:45:32 riastradh Exp $ */ 36 struct nouveau_crtc { struct 60 void (*set_offset)(struct nouveau_crtc *, uint32_t offset); 61 void (*set_pos)(struct nouveau_crtc *, int x, int y); 62 void (*hide)(struct nouveau_crtc *, bool update); 63 void (*show)(struct nouveau_crtc *, bool update); 74 static inline struct nouveau_crtc *nouveau_crtc(struct drm_crtc *crtc) function in typeref:struct:nouveau_crtc * 76 return crtc ? container_of(crtc, struct nouveau_crtc, base) : NULL; 79 static inline struct drm_crtc *to_drm_crtc(struct nouveau_crtc *crtc [all...] |